delta method

Vector3 delta(
  1. Vector3 target
)

target — the result will be copied into this Vector3.

Returns the delta vector of the line segment ( end vector minus the start vector).

Implementation

Vector3 delta(Vector3 target) {
  return target.sub2(end, start);
}