scaled method

Vector3 scaled(
  1. double arg
)

Create a copy of this and scale it by arg.

Implementation

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