VRageMath.Matrix3x3.Rescale - bimbam2103/space_engineers GitHub Wiki
← Index ← Namespace Index ← Matrix3x3
public static void Rescale(ref Matrix3x3 matrix, float scale)
Same result as Matrix3x3.CreateScale(scale) * matrix, but much faster
public static void Rescale(ref Matrix3x3 matrix, ref Vector3 scale)
Same result as Matrix3x3.CreateScale(scale) * matrix, but much faster
public static Matrix3x3 Rescale(Matrix3x3 matrix, float scale)
public static Matrix3x3 Rescale(Matrix3x3 matrix, Vector3 scale)