Vector3.Scale Method

Definition

Overloads

Scale(Vector3)
Obsolete.

Scales this instance by the given parameter.

Scale(Vector3)
Obsolete.

Scales this instance by the given parameter.

Scale(Single, Single, Single)
Obsolete.

Scales the current Vector3 by the given amounts.

Scale(Vector3)

Caution

Use static Multiply() method instead.

Scales this instance by the given parameter.

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

Parameters

scale
Vector3

The scaling of the individual components.

Attributes

Applies to

Scale(Vector3)

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.Vector3 scale);
member this.Scale :  -> unit

Parameters

scale
Vector3

The scaling of the individual components.

Attributes

Applies to

Scale(Single, Single, Single)

Caution

Use static Multiply() method instead.

Scales the current Vector3 by the given amounts.

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

Parameters

sx
Single

The scale of the X component.

sy
Single

The scale of the Y component.

sz
Single

The scale of the Z component.

Attributes

Applies to