scaledByDouble method
Create a copy of this scaled by x
, y
, z
, and t
.
Implementation
@pragma('wasm:prefer-inline')
@pragma('vm:prefer-inline')
@pragma('dart2js:prefer-inline')
Matrix4 scaledByDouble(double x, double y, double z, double t) =>
clone()..scaleByDouble(x, y, z, t);