From 73ee6a592f5327d2a0d4c4a640631450b6427da4 Mon Sep 17 00:00:00 2001 From: ganovelli Date: Fri, 23 Sep 2005 14:18:27 +0000 Subject: [PATCH] added constructor --- vcg/space/triangle3.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vcg/space/triangle3.h b/vcg/space/triangle3.h index 9cec5f81..c3446dda 100644 --- a/vcg/space/triangle3.h +++ b/vcg/space/triangle3.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.4 2005/04/14 11:35:09 ponchio +*** empty log message *** + Revision 1.3 2004/07/15 13:22:37 cignoni Added the standard P() access function instead of the shortcut P0() @@ -60,7 +63,7 @@ public: blah blah **/ - + Triangle3(const CoordType & c0,const CoordType & c1,const CoordType & c2){_v[0]=c0;_v[1]=c1;_v[2]=c2;} protected: /// Vector of vertex pointer incident in the face Point3 _v[3];