| Plane Constructor (Vector3F, Single) |
Initializes a new instance of
Plane from normal vector and distance to the
origin.
Namespace: DigitalRune.Geometry.ShapesAssembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax public Plane(
Vector3F normal,
float distanceFromOrigin
)
Public Sub New (
normal As Vector3F,
distanceFromOrigin As Single
)
public:
Plane(
Vector3F normal,
float distanceFromOrigin
)
new :
normal : Vector3F *
distanceFromOrigin : float32 -> Plane
Parameters
- normal
- Type: DigitalRune.Mathematics.AlgebraVector3F
The normalized, outward pointing normal vector of the plane.
- distanceFromOrigin
- Type: SystemSingle
The distance from the origin.
See Also