50 results for "FVector"
A 3D vector with double-precision (UE 5.
Returns the cross product of two vectors.
Returns the Euclidean distance between two vectors.
Computes the dot product of two vectors: `A.
Returns a normalised copy of the vector, or ResultIfZero if the vector is too short to safely normalise.
Returns true if all three components are within Tolerance of zero.
Returns true if all three components are exactly zero.
Returns this vector rotated around the given axis by AngleDeg degrees, using Rodrigues' rotation formula.
Like WeightedMovingAverage_FVector, but the blend weight scales with the distance between CurrentSample and PreviousSample, letting small positional jitter be smoothed heavily while large movements are tracked more responsively.
Blends a new vector sample with the previous smoothed value to produce the next value in a weighted moving average series.
Returns the component-wise sum of two 2D vectors (A + B).
Returns the component-wise sum of two FVector4 values (A + B).
Adds two vectors component-wise, returning a new FVector.
Decomposes an FVector into its three individual double components.
Decomposes an FVector2D into its individual X and Y double components via output parameters.
Decomposes an FVector4 into its four individual double-precision components via output parameters.
Splits an FVector_NetQuantize into its X, Y, and Z double components.
Splits an FVector_NetQuantize10 into its X, Y, and Z double components.
Splits an FVector_NetQuantize100 into its X, Y, and Z double components.
Splits an FVector_NetQuantizeNormal into its X, Y, and Z double components.
Builds a new string in the form AppendTo+Prefix+InVector+Suffix, formatting the vector with the standard FVector::ToString conversion between the given prefix and suffix.
Builds a new string in the form AppendTo+Prefix+InVector2d+Suffix, formatting an FVector2D with the standard ToString conversion between the given prefix and suffix.
Converts a 2D Cartesian coordinate pair to polar form (radius and angle).
Broadcasts a single double to all three components of an FVector, producing (InDouble, InDouble, InDouble).
Broadcasts a single double to both components of an FVector2D, producing (InDouble, InDouble).
Converts an FIntPoint to an FVector2D by casting its integer X and Y components to double.
Broadcasts a single integer to all three components of an FVector, producing (InInt, InInt, InInt) as doubles.
Converts an FIntVector2 (two int32 components) to an FVector2D (two doubles) component-wise.
Converts an FIntVector (three int32 components) to an FVector (three doubles) component-wise.
Converts a FLinearColor to a FVector by mapping R→X, G→Y, B→Z and discarding the alpha channel.
Parses a string in the 'X= Y= Z=' format produced by Conv_VectorToString back into an FVector, reporting whether parsing succeeded via OutIsValid.
Parses a string in the 'X= Y=' format back into an FVector2D, reporting whether parsing succeeded via OutIsValid.
Parses a string in the 'X= Y= Z=' format back into a single-precision FVector3f, reporting whether parsing succeeded via OutIsValid.
Converts an FVector2D to a string in the form 'X= Y='.
Converts an FVector3f (single-precision vector) to a string in the form 'X= Y= Z='.
Converts a FVector4 direction into a FQuat orientation that points in that direction with no roll.
Converts a Vector4 to a 3-component FVector by dropping the W element.
Converts an FVector to a string in the form 'X= Y= Z='.
Extracts the X and Y components of a 3D vector into an FVector2D, discarding the Z component entirely.
Returns the element-wise division of two FVector4 values: {A.
Returns the world-space scale of the actor's RootComponent as an FVector.
Returns the actor's world-space scale as an FVector with X, Y, and Z scale factors.
Returns the world-space unit vector pointing in the forward (X+) direction for the given rotation.
Returns the current value of a vector-type input axis key as an FVector.
Returns the world-space unit vector pointing in the right (Y+) direction for the given rotation.
Returns the simple collision cylinder as an FVector(Radius, Radius, HalfHeight), convenient for axis-aligned extent comparisons and box overlap approximations.
Returns the world-space unit vector pointing in the up (Z+) direction for the given rotation.
Returns the FVector stored under the given blackboard key.
Constructs an FVector from three individual double components.
Constructs an FVector2D from explicit X and Y double values.