FVector4GetLineAngle Method

Return the ray angles between two points.

Definition

Namespace: Geometry
Assembly: Geometry (in Geometry.dll) Version: 25.2414.4032
C#
public static FVector4 GetLineAngle(
	FVector4 pointA,
	FVector4 pointB
)

Parameters

pointA  FVector4
Coordinates of the first point.
pointB  FVector4
Coordinates of the second point.

Return Value

FVector4
The X-axis (azimuth) and Z-axis (zenith) angles of the ray from point A to point B.

Remarks

This version transfers the value of W from the caller's pointA source to the result, then solves for X, Y, Z.

See Also