Click or drag to resize

Vector3CalculateAngle(Vector3, Vector3) Method

Calculates the angle (in radians) between two vectors.

Namespace: Internal.Net3dBool
Assembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
public static double CalculateAngle(
	Vector3 first,
	Vector3 second
)

Parameters

first  Vector3
The first vector.
second  Vector3
The second vector.

Return Value

Double
Angle (in radians) between the vectors.
Remarks
Note that the returned angle is never bigger than the constant Pi.
See Also