#define SetRay( pr1, pr2 ) { SetPoint( (pr1)->o, (pr2)->o ), \ SetPoint( (pr1)->n, (pr2)->n ); }
vectlib.h
copies the value of a ray into another ray
RAY ray; RAY ray2; // set ray to ray2 SetRay( ray, ray2 );
Macros