Click or drag to resize

PlaneFromVectors(Vector3, Vector3, Vector3) Method

Creates an instance of Plane with point and two direction vectors.

Namespace: NeoAxis
Assembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
public static Plane FromVectors(
	Vector3 dir1,
	Vector3 dir2,
	Vector3 p
)

Parameters

dir1  Vector3
The first direction vector.
dir2  Vector3
The second direction vector.
p  Vector3
The point that is the start of direction vectors.

Return Value

Plane
The resulting plane.
See Also