|
||
SS_COEF |
||||||||
Structure |
A data type used to represent a plane equation of the form: AX + BY + CZ + D = 0.
struct SS_COEF { SS_XYZ abc; double d; } ;
|
|||||||
Members |
|
|||||||
Remarks |
Given a point 'p' and a plane equation 'plane', here is how you can decide if the point is on the plane, on the + side, or on the - side. Note: There is a function which performs this calculation in the SilverScreen API called point_vs_plane and the code below is for informational purposes.
|
|
||||||
See Also |
|
|||||||
Header |
ssdef.h |
|||||||