Click or drag to resize

PlaneFromVectors Method (Vector3, Vector3, Vector3)

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

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

Parameters

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

Return Value

Type: Plane
The resulting plane.
See Also