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

VRageMath.MatrixD.Rescale

Malware edited this page Dec 24, 2018 · 17 revisions

IndexMatrixD

void Rescale(ref MatrixD matrix, double scale)

Summary

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

void Rescale(ref MatrixD matrix, float scale)

Summary

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

void Rescale(ref MatrixD matrix, ref Vector3D scale)

Summary

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

MatrixD Rescale(MatrixD matrix, double scale)

MatrixD Rescale(MatrixD matrix, Vector3D scale)

Clone this wiki locally