scaled method

Vector3 scaled(
  1. double arg
)
inherited

Create a copy of this and scale it by arg.

Implementation

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