Vec3F

Description

struct Tinman.Core.Math.Vectors.Vec3F

A three-dimensional vector with 32-bit floating-point precision.

/     \
|  X  |
|  Y  |
|  Z  |
\     /

Public / Constants

Undefined


public static readonly attribute Undefined → (Vec3F)

A vector with undefined value.

Zero


public static readonly attribute Zero → (Vec3F)

The zero vector.

Public / Constructors

Vec3​F


public constructor Vec3F → (3)

in : float32

X-coordinate of vector.

in : float32

Y-coordinate of vector.

in : float32

Z-coordinate of vector.

Creates a new instance of Vec3F.

Public / Methods

Add

2 overloads


[Pure]
public method Add1 → (1)

in : Vec3F

The vector.

returns → Vec3F

The resulting vector.

Adds this vector and the given one.


[Pure]
public method Add2 → (3)

in : float32

X-component of vector.

in : float32

Y-component of vector.

in : float32

Z-component of vector.

returns → Vec3F

The resulting vector.

Adds this vector and the given one.

Ceiling


[Pure]
public method Ceiling → ()

returns → Vec3F

The resulting vector.

Computes the component-wise ceiling of this vector.

Choose


[Pure]
public method Choose → (2)

idx in : int32

The zero-based component index.

opt : float32 = 0

The value to return if idx in is out of range.

returns → float32

The resulting vector.

Chooses a component of this vector.

Cross

2 overloads


[Pure]
public method Cross1 → (1)

in : Vec3F

The vector.

returns → Vec3F

The resulting vector.

Computes the cross product between this vector and the given one.


[Pure]
public method Cross2 → (3)

in : float32

X-component of vector.

in : float32

Y-component of vector.

in : float32

Z-component of vector.

returns → Vec3F

The resulting vector.

Computes the cross product between this vector and the given one.

Div


[Pure]
public method Div → (1)

in : float32

The scalar value.

returns → Vec3F

The resulting vector.

Divides this vector by the given scalar value.

Dot

2 overloads


[Pure]
public method Dot1 → (1)

in : Vec3F

The vector.

returns → float32

The resulting vector.

Computes the dot product between this vector and the given one.


[Pure]
public method Dot2 → (3)

in : float32

X-component of vector.

in : float32

Y-component of vector.

in : float32

Z-component of vector.

returns → float32

The resulting vector.

Computes the dot product between this vector and the given one.

Equals

2 overloads


[Pure]
public method Equals2 → (3)

in : float32

X-component of vector.

in : float32

Y-component of vector.

in : float32

Z-component of vector.

returns → bool

true if both vectors are equal, false if they are not.

Checks if this vector and the given one are equal.

Equals​Almost

2 overloads


[Pure]
public method EqualsAlmost1 → (1)

in : Vec3F

The vector.

returns → bool

true if both vectors are similar, false if they are not.

Checks if this vector and the given one are similar but necessarily equal.

See also

Maths.Similar1


[Pure]
public method EqualsAlmost2 → (3)

in : float32

X-component of vector.

in : float32

Y-component of vector.

in : float32

Z-component of vector.

returns → bool

true if both vectors are similar, false if they are not.

Checks if this vector and the given one are similar but necessarily equal.

See also

Maths.Similar1

Floor


[Pure]
public method Floor → ()

returns → Vec3F

The resulting vector.

Computes the component-wise floor of this vector.

Max

2 overloads


[Pure]
public method Max1 → (1)

in : Vec3F

The vector.

returns → Vec3F

The resulting vector.

Computes the component-wise maximum of this vector and the given one.


[Pure]
public method Max2 → (3)

in : float32

X-component of vector.

in : float32

Y-component of vector.

in : float32

Z-component of vector.

returns → Vec3F

The resulting vector.

Computes the component-wise maximum of this vector and the given one.

Min

2 overloads


[Pure]
public method Min1 → (1)

in : Vec3F

The vector.

returns → Vec3F

The resulting vector.

Computes the component-wise minimum of this vector and the given one.


[Pure]
public method Min2 → (3)

in : float32

X-component of vector.

in : float32

Y-component of vector.

in : float32

Z-component of vector.

returns → Vec3F

The resulting vector.

Computes the component-wise minimum of this vector and the given one.

Mul

3 overloads


[Pure]
public method Mul1 → (1)

in : Vec3F

The vector.

returns → Vec3F

The resulting vector.

Multiplies this vector with the given one.


[Pure]
public method Mul2 → (3)

in : float32

X-component of vector.

in : float32

Y-component of vector.

in : float32

Z-component of vector.

returns → Vec3F

The resulting vector.

Multiplies this vector with the given one.


[Pure]
public method Mul3 → (1)

in : float32

The scalar value.

returns → Vec3F

The resulting vector.

Multiplies this vector with the given scalar value.

Neg


[Pure]
public method Neg → ()

returns → Vec3F

The resulting vector.

Negates this vector.

Norm


[Pure]
public method Norm → ()

returns → Vec3F

The resulting vector.

Normalizes this vector to unit length.

Sub

2 overloads


[Pure]
public method Sub1 → (1)

in : Vec3F

The vector.

returns → Vec3F

The resulting vector.

Subtracts the given vector from this one.


[Pure]
public method Sub2 → (3)

in : float32

X-component of vector.

in : float32

Y-component of vector.

in : float32

Z-component of vector.

returns → Vec3F

The resulting vector.

Subtracts the given vector from this one.

Public / Attributes

Is​Undefined


public attribute IsUndefined → (get)

value : bool

true if this vector has an undefined value, false if not.

Checks if this vector has an undefined value.

A vector is undefined if at least one component is NaN (not-a-number).

Length


public attribute Length → (get)

value : float64

[>=0]
The vector length.

Returns the length of this vector.

Length​Sqr


public attribute LengthSqr → (get)

value : float64

[>=0]
The squared vector length.

Returns the squared length of this vector.

X


public readonly attribute X → (float32)

X-coordinate of vector.

Y


public readonly attribute Y → (float32)

Y-coordinate of vector.

Z


public readonly attribute Z → (float32)

Z-coordinate of vector.

Serialization

Serializer


public static readonly attribute Serializer → (ITypeSerializerEx<Vec3F>)

The serialization helper object for values of Vec3F.