Click or drag to resize

Plane Properties

The Plane type exposes the following members.

Properties
  NameDescription
Public propertyCenter
The center of the plane, the point where the normal line intersects the plane.
Public propertyD
The distance from the origin to the plane (in the direction of Normal). This value is typically non-negative. In the scalar equation of the plane `ax + by + cz = d`, this is `d`, while the `(a, b, c)` coordinates are represented by the Normal property.
Public propertyNormal
The normal of the plane, which must be normalized. In the scalar equation of the plane `ax + by + cz = d`, this is the vector `(a, b, c)`, where `d` is the D property.
Public propertyStatic memberPlaneXY
A plane that extends in the X and Y axes (normal vector points +Z).
Public propertyStatic memberPlaneXZ
A plane that extends in the X and Z axes (normal vector points +Y).
Public propertyStatic memberPlaneYZ
A plane that extends in the Y and Z axes (normal vector points +X).
Public propertyx
The X component of the plane's normal vector.
Public propertyy
The Y component of the plane's normal vector.
Public propertyz
The Z component of the plane's normal vector.
Top
See Also