fromScale

fun fromScale(scale: Cartesian3, result: Matrix4? = definedExternally): Matrix4(source)

Computes a Matrix4 instance representing a non-uniform scale.

// Creates
// [7.0, 0.0, 0.0, 0.0]
// [0.0, 8.0, 0.0, 0.0]
// [0.0, 0.0, 9.0, 0.0]
// [0.0, 0.0, 0.0, 1.0]
const m = Matrix4.fromScale(new Cartesian3(7.0, 8.0, 9.0));

Return

The modified result parameter, or a new Matrix4 instance if one was not provided.

Parameters

scale

The x, y, and z scale factors.

result

The object in which the result will be stored, if undefined a new instance will be created.

See also