Table of Contents

Struct TuringVector3

Namespace
Turing.Core.Interop
Assembly
Turing.Core.dll
public struct TuringVector3
Inherited Members
Extension Methods

Constructors

TuringVector3(float, float, float)

public TuringVector3(float x, float y, float z)

Parameters

x float
y float
z float

TuringVector3(Vector3)

public TuringVector3(Vector3 v)

Parameters

v Vector3

Fields

x

public float x

Field Value

float

y

public float y

Field Value

float

z

public float z

Field Value

float

Methods

ToVector3(bool)

Converts the TuringVector3 struct to Unity's corresponding Vector3 struct.

public Vector3 ToVector3(bool flipHandedness = true)

Parameters

flipHandedness bool

Flag to specify whether to flip the resultant Vector3's handedness (e.g. from left to right or vice-versa).

Returns

Vector3

Vector3 initialized based on the current state of the TuringVector3.