Click or drag to resize

PlaneFromPointAndNormal(Vector3, Vector3, Plane) Method

Creates an instance of Plane with the normal and the point.

Namespace: NeoAxis
Assembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
public static void FromPointAndNormal(
	ref Vector3 point,
	ref Vector3 normal,
	out Plane plane
)

Parameters

point  Vector3
Any point that lies along the plane.
normal  Vector3
The normal vector to the plane.
plane  Plane
When the method completes, contains the resulting plane.
See Also