FPoint3Rotate(Single, Single, Single, Single, Single, Single) Method

Rotate the caller's point around the origin.

Definition

Namespace: Geometry
Assembly: Geometry (in Geometry.dll) Version: 25.2613.4238
C#
public static FPoint3 Rotate(
	float x,
	float y,
	float z,
	float thetaX,
	float thetaY,
	float thetaZ
)

Parameters

x  Single
The X value to be rotated.
y  Single
The Y value to be rotated.
z  Single
The Z value to be rotated.
thetaX  Single
The angle at which to rotate the point around the X axis, in radians.
thetaY  Single
The angle at which to rotate the point around the Y axis, in radians.
thetaZ  Single
The angle at which to rotate the point around the Z axis, in radians.

Return Value

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

See Also