Vector4d.Sub Method

Definition

Overloads

Sub(Vector4d, Vector4d, Vector4d)
Obsolete.

Subtract one Vector from another

Sub(Vector4d, Vector4d)
Obsolete.
Sub(Vector4d)
Obsolete.

Subtract the Vector passed as parameter from this instance.

Sub(Vector4d)
Obsolete.

Subtract the Vector passed as parameter from this instance.

Sub(Vector4d, Vector4d, Vector4d)

Caution

Use static Subtract() method instead.

Subtract one Vector from another

[System.Obsolete("Use static Subtract() method instead.")]
public static void Sub (ref OpenTK.Vector4d a, ref OpenTK.Vector4d b, out OpenTK.Vector4d result);
static member Sub :  *  *  -> unit

Parameters

a
Vector4d

First operand

b
Vector4d

Second operand

result
Vector4d

Result of subtraction

Attributes

Applies to

Sub(Vector4d, Vector4d)

Caution

Use static Subtract() method instead.

[System.Obsolete("Use static Subtract() method instead.")]
public static OpenTK.Vector4d Sub (OpenTK.Vector4d a, OpenTK.Vector4d b);
static member Sub : OpenTK.Vector4d * OpenTK.Vector4d -> OpenTK.Vector4d

Parameters

Returns

Attributes

Applies to

Sub(Vector4d)

Caution

Use static Subtract() method instead.

Subtract the Vector passed as parameter from this instance.

[System.Obsolete("Use static Subtract() method instead.")]
public void Sub (OpenTK.Vector4d right);
member this.Sub : OpenTK.Vector4d -> unit

Parameters

right
Vector4d

Right operand. This parameter is only read from.

Attributes

Applies to

Sub(Vector4d)

Caution

Use static Subtract() method instead.

Important

This API is not CLS-compliant.

Subtract the Vector passed as parameter from this instance.

[System.CLSCompliant(false)]
[System.Obsolete("Use static Subtract() method instead.")]
public void Sub (ref OpenTK.Vector4d right);
member this.Sub :  -> unit

Parameters

right
Vector4d

Right operand. This parameter is only read from.

Attributes

Applies to