scale property

Vector2 get scale

Implementation

Vector2 get scale => _scale;
set scale (Vector2 next)

Implementation

set scale(Vector2 next) {
  _scale = next.clone();
  _matrixCached = false;
}