added definition of vector product (not implemented)
This commit is contained in:
parent
f10b76771b
commit
11b41d02f3
|
@ -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();
|
||||
}
|
||||
//@}
|
||||
|
||||
//@{
|
||||
|
|
Loading…
Reference in New Issue