Click or drag to resize

PlaneFromPoints Method (Vector3, Vector3, Vector3)

Creates an instance of Plane that contains the three given points.

Namespace:  NeoAxis
Assembly:  NeoAxis.Core (in NeoAxis.Core.dll) Version: 2023.1.2.0 (2023.1.2.0)
Syntax
C#
public static Plane FromPoints(
	Vector3 point0,
	Vector3 point1,
	Vector3 point2
)

Parameters

point0
Type: NeoAxisVector3
The first point defining the plane.
point1
Type: NeoAxisVector3
The second point defining the plane.
point2
Type: NeoAxisVector3
The third point defining the plane.

Return Value

Type: Plane
The resulting plane.
See Also