|
||
void c_to_w ( SS_XYZ *p1, SS_XYZ *p2 )
SS_XYZ *p1; // a C-space point SS_XYZ *p2; // a W-space point
|
|||||
Synopsis |
#include "silver.h"
The c_to_w function converts a point from C-space to W-space coordinates.
|
||||
Parameters |
p1 is a pointer to a 3D point in construction-space (c-space) coordinates. p2 is a pointer to a 3D point in world-space (w-space) coordinates that is the c-space to w-space transformation of the input parameter p1.
|
||||
Return Value |
none; the result is stored into p2 .
|
||||
Comments |
w_to_c is the inverse of c_to_w .
|
||||
See Also |
|
||||
Example |
Note that the following
produces the yields the same result as:
|