Click or drag to resize

PlaneFromVectors(Vector3, Vector3, Vector3, Plane) 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 void FromVectors(
	ref Vector3 dir1,
	ref Vector3 dir2,
	ref Vector3 p,
	out Plane result
)

Parameters

dir1  Vector3
The first direction vector.
dir2  Vector3
The second direction vector.
p  Vector3
The point that is the start of direction vectors.
result  Plane
When the method completes, contains the resulting plane.
See Also