scaled method

Matrix3 scaled(
  1. double scale
)

Create a copy of this and scale it by scale.

Implementation

Matrix3 scaled(double scale) => clone()..scale(scale);