subtractPoints

public static Point subtractPoints(Point one, Point two)

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

Return

returns the difference of the two Points.

Parameters

one

the first Point.

two

the second Point.