Struct Vector3F
- Namespace
- RetroEditor.Plugins
- Assembly
- RetroEditor.dll
Represents a 3D vector with float components
public struct Vector3F
- Inherited Members
Constructors
Vector3F(float, float, float)
Initializes a new instance of the Vector3F struct with the specified X, Y, and Z values
public Vector3F(float x, float y, float z)
Parameters
Fields
x
X component of the vector
public float x
Field Value
y
Y component of the vector
public float y
Field Value
z
Z component of the vector
public float z
Field Value
Operators
operator +(Vector3F, Vector3F)
Adds two Vector3F instances component-wise.
public static Vector3F operator +(Vector3F a, Vector3F b)