Files Classes Functions Hierarchy
#include <mathlib.h>
Public Member Functions | |
| void | operator() (T &u, T &v, T &temp, T const &w) const |
Definition at line 197 of file mathlib.h.
| void surfaceplane< T >::operator() | ( | T & | u, | |
| T & | v, | |||
| T & | temp, | |||
| T const & | w | |||
| ) | const [inline] |
Definition at line 850 of file mathlib.h.
References crossproduct::eval().
00851 { 00852 // Right shift. 00853 temp[1] = w[0]; 00854 temp[2] = w[1]; 00855 temp[0] = w[2]; 00856 00857 crossproduct::eval(u,w,temp); 00858 crossproduct::eval(v,u,w); 00859 00860 //crossprod<T>()(u,w,temp); 00861 //crossprod<T>()(v,u,w); 00862 }
1.5.8