FVector3Offset Method

Return a new instance the caller's vector, translated by the specified offset.

Definition

Namespace: Geometry
Assembly: Geometry (in Geometry.dll) Version: 25.2613.4238
C#
public static FVector3 Offset(
	FVector3 vector,
	float dx,
	float dy,
	float dz
)

Parameters

vector  FVector3
Reference to the vector to be offset.
dx  Single
X distance from the original vector.
dy  Single
Y distance from the original vector.
dz  Single
Z distance from the original vector.

Return Value

FVector3
Reference to a new vector at the specified offset from the original.

See Also