Scale
Multiplies two vectors component-wise.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Method
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
Scale(Vector2, Vector2)
Multiplies two vectors component-wise.
public static Vector2 Scale(Vector2 a, Vector2 b)
Parameters
Returns
Type | Description |
|---|---|
| Vector2 | A component of |
Remarks
Every component in the result is a component of multiplied by the same component of .
abExamples
using UnityEngine;public class Example : MonoBehaviour{ void Start() { // prints (2.0,6.0) print(Vector2.Scale(new Vector2(1, 2), new Vector2(2, 3))); }}
Scale(Vector2, Vector2)
Multiplies two vectors component-wise.
public static Vector2 Scale(in Vector2 a, in Vector2 b)
Parameters
Returns
Type | Description |
|---|---|
| Vector2 | A component of |
Remarks
Every component in the result is a component of multiplied by the same component of .
abExamples
using UnityEngine;public class Example : MonoBehaviour{ void Start() { // prints (2.0,6.0) print(Vector2.Scale(new Vector2(1, 2), new Vector2(2, 3))); }}
Scale(Vector2)
Multiplies every component of this vector by the same component of .
scalepublic void Scale(Vector2 scale)
Parameters
The vector to multiply this vector by, component by component.
Scale(Vector2)
Multiplies every component of this vector by the same component of .
scalepublic void Scale(in Vector2 scale)
Parameters
The vector to multiply this vector by, component by component.