From 11b41d02f3c206c77bbc09e2fb766fb2d83a4d9c Mon Sep 17 00:00:00 2001 From: ganovelli Date: Mon, 11 Oct 2004 17:46:11 +0000 Subject: [PATCH] added definition of vector product (not implemented) --- vcg/space/point4.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/vcg/space/point4.h b/vcg/space/point4.h index 6a4e0604..42ab2828 100644 --- a/vcg/space/point4.h +++ b/vcg/space/point4.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.6 2004/05/10 11:16:19 ganovelli +include assert.h added + Revision 1.5 2004/03/31 10:09:58 cignoni missing return value in zero() @@ -183,6 +186,11 @@ public: { return Point4( -_v[0], -_v[1], -_v[2], -_v[3] ); } + inline Point4 operator ^ ( const Point4 t ) const + { + assert(0); + return Point4(); + } //@} //@{