scale property

Vector3 scale

Determines the receiver's scale.

Implementation

Vector3 get scale => transform.matrixScale;
void scale=(Vector3 value)

Implementation

set scale(Vector3 value) {
  transform =
      Matrix4.compose(position, Quaternion.fromRotation(rotation), value);
}