Click or drag to resize

PlaneFromPoints(Vector3, Vector3, Vector3) Method

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

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

Parameters

point0  Vector3
The first point defining the plane.
point1  Vector3
The second point defining the plane.
point2  Vector3
The third point defining the plane.

Return Value

Plane
The resulting plane.
See Also