scaled method

Vector3 scaled (double arg)

Create a copy of this and scale it by arg.

Implementation

Vector3 scaled(double arg) => clone()..scale(arg);