delta method

Vector3 delta(
  1. Vector3 result
)

Computes the difference vector between the end and start point of this line segment and stores the result in the given vector.

Implementation

Vector3 delta(Vector3 result ) {
	return result.subVectors( to, from );
}