added definition of vector product (not implemented)

This commit is contained in:
ganovelli 2004-10-11 17:46:11 +00:00
parent f10b76771b
commit 11b41d02f3
1 changed files with 8 additions and 0 deletions

View File

@ -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();
}
//@}
//@{