|
Closest Point
Find the Closest Point on a mesh
|
00001 #pragma once 00002 00003 #include <iostream> 00004 #include "Vector.h" 00005 using namespace math; 00006 00007 class Face{ 00008 00009 public: 00010 Face(){} 00011 ~Face(){} 00012 00013 unsigned char nverts; /*Vertex count in a face*/ 00014 Vec3f v1,v2,v3; /*Vertices which make the face*/ 00015 int *vid; /*Vertex Index which form the face*/ 00016 int id; /*Face ID*/ 00017 };
1.7.6.1