matrixScale property

Vector3 get matrixScale

Implementation

Vector3 get matrixScale {
  final scale = Vector3.zero();
  decompose(Vector3.zero(), Quaternion(0, 0, 0, 0), scale);
  return scale;
}