aboutsummaryrefslogtreecommitdiff
path: root/triangle.c
blob: 3fc0cc99ad83bfa0f117910da9974e3b7418f808 (plain)
1
2
3
4
5
6
7
8
9
#include <u.h>
#include <libc.h>
#include <geometry.h>

Point3
centroid(Triangle3 t)
{
	return divpt3(addpt3(t.p0, addpt3(t.p1, t.p2)), 3);
}