FPoint3Rotate(FPoint3, Single, Single, Single) Method

Rotate the caller's point around the origin.

Definition

Namespace: Geometry
Assembly: Geometry (in Geometry.dll) Version: 25.2414.4032
C#
public static FPoint3 Rotate(
	FPoint3 point,
	float thetaX,
	float thetaY,
	float thetaZ
)

Parameters

point  FPoint3
Reference to the point to be rotated.
thetaX  Single
The angle at which to rotate the point on the X axis, in radians.
thetaY  Single
The angle at which to rotate the point on the Y axis, in radians.
thetaZ  Single
The angle at which to rotate the point on the Z axis, in radians.

Return Value

FPoint3
Reference to a representation of the caller's point after being rotated by the specified angle around the origin.

See Also