Vector4d.Scale Method

Definition

Overloads

Scale(Vector4d)
Obsolete.

Scales this instance by the given parameter.

Scale(Vector4d)
Obsolete.

Scales this instance by the given parameter.

Scale(Double, Double, Double, Double)
Obsolete.

Scales the current Vector4d by the given amounts.

Scale(Vector4d)

Caution

Use static Multiply() method instead.

Scales this instance by the given parameter.

[System.Obsolete("Use static Multiply() method instead.")]
public void Scale (OpenTK.Vector4d scale);
member this.Scale : OpenTK.Vector4d -> unit

Parameters

scale
Vector4d

The scaling of the individual components.

Attributes

Applies to

Scale(Vector4d)

Caution

Use static Multiply() method instead.

Important

This API is not CLS-compliant.

Scales this instance by the given parameter.

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

Parameters

scale
Vector4d

The scaling of the individual components.

Attributes

Applies to

Scale(Double, Double, Double, Double)

Caution

Use static Multiply() method instead.

Scales the current Vector4d by the given amounts.

[System.Obsolete("Use static Multiply() method instead.")]
public void Scale (double sx, double sy, double sz, double sw);
member this.Scale : double * double * double * double -> unit

Parameters

sx
Double

The scale of the X component.

sy
Double

The scale of the Y component.

sz
Double

The scale of the Z component.

sw
Double

The scale of the Z component.

Attributes

Applies to