Skip to content
This repository was archived by the owner on Dec 13, 2025. It is now read-only.

VRageMath.Matrix3x3.Rescale

Malware edited this page Dec 24, 2018 · 17 revisions

IndexMatrix3x3

void Rescale(ref Matrix3x3 matrix, float scale)

Summary

Same result as Matrix3x3.CreateScale(scale) * matrix, but much faster

void Rescale(ref Matrix3x3 matrix, ref Vector3 scale)

Summary

Same result as Matrix3x3.CreateScale(scale) * matrix, but much faster

Matrix3x3 Rescale(Matrix3x3 matrix, float scale)

Matrix3x3 Rescale(Matrix3x3 matrix, Vector3 scale)

Clone this wiki locally