Table of Contents

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

x float
y float
z float

Fields

x

X component of the vector

public float x

Field Value

float

y

Y component of the vector

public float y

Field Value

float

z

Z component of the vector

public float z

Field Value

float

Operators

operator +(Vector3F, Vector3F)

Adds two Vector3F instances component-wise.

public static Vector3F operator +(Vector3F a, Vector3F b)

Parameters

a Vector3F

The first vector to add.

b Vector3F

The second vector to add.

Returns

Vector3F

A new Vector3F that is the sum of a and b.