|
Plane Constructor (Single, Single, Single, Single)
|
Initializes a new instance of the
Plane class.
Namespace:
Accord.Math
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public Plane(
float a,
float b,
float c,
float offset
)
Public Sub New (
a As Single,
b As Single,
c As Single,
offset As Single
)
Request Example
View SourceParameters
- a
- Type: SystemSingle
The first component of the plane's normal vector. - b
- Type: SystemSingle
The second component of the plane's normal vector. - c
- Type: SystemSingle
The third component of the plane's normal vector. - offset
- Type: SystemSingle
The distance from the plane to the origin.
See Also