void | Normalize() |
renormalize a,b,c to unit
generic constructors from the four scalar values describing the plane according to the equation ax + by + cz + d = 0 \param a scalar value \param b scalar value \param c scalar value \param d sxcalar value
compiler-generated copy ctor and dtor are fine. ------ assignment ------ Assignment operator from other Plane3D class
Return the a coefficient of the plane equation \f$ a*x + b*y + c*z + d = 0 \f$. It is also the x-component of the vector perpendicular to the plane.
{ return fA; }
Return the b coefficient of the plane equation \f$ a*x + b*y + c*z + d = 0 \f$. It is also the y-component of the vector perpendicular to the plane
{ return fB; }
Return the c coefficient of the plane equation \f$ a*x + b*y + c*z + d = 0 \f$. It is also the z-component of the vector perpendicular to the plane
{ return fC; }
Return the Hesse Distance (distance from the origin) of the plane or the d coefficient expressed in normalize form
------------------- Equality ----------------- Exact equality