Struct FVector3

FVector3 structure

A float vector with three components.

public struct FVector3

Constructors

NameDescription
FVector3(Vector3)Initializes a new instance of the FVector3.
FVector3(Vector4)Initializes a new instance of the FVector4.
FVector3(float, float, float)Initializes a new instance of the FVector3.

Properties

NameDescription
static One { get; }The unit scale vector with all components are all 1
static Zero { get; }The Zero vector.

Methods

NameDescription
Cross(FVector3)Cross product of two vectors
Normalize()Normalizes this instance.
override ToString()Returns a string that represents the FVector3
operator ++ Operator overloading
explicit operator
operator ** Operator overloading
operator -- Operator overloading (2 operators)

Fields

NameDescription
XThe x component.
YThe y component.
ZThe y component.

See Also