FRotation3 Class

Note: This API is now obsolete.
Single precision 3D point.

Definition

Namespace: Geometry
Assembly: Geometry (in Geometry.dll) Version: 25.2820.4317
C#
[ObsoleteAttribute("FRotation3 is obsolete. Please use FVector3.")]
public class FRotation3
Inheritance
Object    FRotation3

Remarks

This class exists to take advantage of first-class object behavior during operation. It is is accessible by reference wherever it is used. As a result, once the item is assigned in a helper function, its members continue to carry exactly the same information as the root instance until they are changed.

Constructors

FRotation3 Create a new Instance of the FRotation3 Item.
FRotation3(FRotation3) Create a new Instance of the FRotation3 Item.
FRotation3(FVector3) Create a new Instance of the FRotation3 Item.
FRotation3(Single, Single, Single) Create a new Instance of the FRotation3 Item.

Properties

Color Get/Set a reference to the color of this line.
ReadOnly Get/Set a value indicating whether this item is read-only.
X Get/Set the x coordinate.
Y Get/Set the y coordinate.
Z Get/Set the y coordinate.

Methods

Assign(FRotation3, FRotation3) Set the base values of the target rotation from the source.
Assign(FRotation3, Single) Set the value of the rotation.
Assign(FRotation3, Single, Single, Single) Set the value of the rotation.
Clone(FRotation3) Return a memberwise clone of the provided rotation.
Clone(FVector3) Return a memberwise clone of the provided rotation.
Delta Return the coordinate difference between two rotations.
Equals Return a value indicating whether this item's members are equal to the members of the caller's item.
(Overrides ObjectEquals(Object))
Finalize
(Inherited from Object)
GetHashCode Return the unique hash code for this instance.
(Overrides ObjectGetHashCode)
GetType
(Inherited from Object)
Invert Invert the values of the caller's rotation.
MemberwiseClone
(Inherited from Object)
MiddleRotation Return the middle coordinate between two rotations.
Negate Negate the values of the caller's coordinate.
Offset Return a new instance the caller's rotation, translated by the specified offset.
OnRotationChanged Raise the RotationChanged event whenever coordinates have changed.
Parse Parse a coordinate string and return its FRotation3 representation.
Scale Scale the caller's rotation by a uniform factor.
ToString
(Inherited from Object)

Events

RotationChanged Fired when a rotation has changed.

Operators

Addition(FRotation3, FRotation3) Return the result of the values of two rotations added together.
Division(FRotation3, FRotation3) Return the result of one rotation divided by the other.
Equality(FRotation3, FRotation3) Return a value indicating whether values of two rotations are equal.
(FRotation3 to FVector3) Cast the FRotation3 instance to a FVector3.
(FVector3 to FRotation3) Cast the FVector3 instance to a FRotation3.
Inequality(FRotation3, FRotation3) Return a value indicating whether values of two rotations are not equal.
Multiply(FRotation3, Single) Return the result of a rotation multiplied by a scalar.
Multiply(Single, FRotation3) Return the result of a rotation multiplied by a scalar.
Subtraction(FRotation3, FRotation3) Return the result of one rotation subtracted from another.

See Also