Legacy Documentation: Version 2018.1 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Matrix4x4.Scale

public static Matrix4x4 Scale(Vector3 vector);

Description

Creates a scaling matrix.

Returned matrix is such that scales along coordinate axes by a vector v. The matrix looks like this:

 v.x 0   0   0
    0   v.y 0   0
    0   0   v.z 0
    0   0   0   1

See Also: TRS, Rotate, Translate, SetTRS functions.

Did you find this page useful? Please give it a rating: