at method

Vector3 at(
  1. double t
)

Returns the position on this with a distance of t from origin.

Implementation

Vector3 at(double t) => _direction.scaled(t)..add(_origin);