class HT_Plane 
Data members
float a, b, c, d
Coefficients of the equation of plane ax+by+cz+d=0
Constructor
HT_Plane
Creates an HT_Plane object.
 
See Also  
HT_Plane::HT_Plane

Purpose

Creates an HT_Plane object. Synopsis
HT_Plane ()
HT_Plane (HT_Vector const & vec, float distance)
HT_Plane (HT_Vector const & vec, HT_Point const & point)
Details The first form initializes the plane to indeterminate values.

The second initializes the plane to (vec.x, vec.y, vec.z, distance).

The third form is similar to the second form, however it depicts the distance based on the point (vec.x, vec.y, vec.z, point).


HT_Plane::a,b,c,d

Purpose

Parameters of the plane object. Synopsis
float a,b,c,d
Details These parameters specify the plane according to the equation ax+by+cz+d=0