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