Go to the source code of this file.
Functions | |
| vec | operator * (const mat &m, const vec &v) |
|
||||||||||||
|
mat*vec operator Definition at line 3 of file mat-vec.hpp. 00004 {
00005 return vec( m.xx*v.x +m.xy*v.y +m.xz*v.z,
00006 m.yx*v.x +m.yy*v.y +m.yz*v.z,
00007 m.zx*v.x +m.zy*v.y +m.zz*v.z );
00008 }
|
1.4.1