Vector3.Scale Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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