subtractVectors

public static Vector subtractVectors(Vector one, Vector two)

This subtracts the second Vector from the first Vector and returns the result as a Vector. Do note that order matters here.

Return

returns the second Vector subtracted from the first Vector.

Parameters

one

the first Vector.

two

the second Vector.