Add a new method to the Point class we developed in this chapter: public double distance(Point other)

Question:

Add a new method to the Point class we developed in this chapter:

public double distance(Point other)

Returns the distance between the current Point object and the given other Point object. The distance between two points is equal to the square root of the sum of the squares of the differences of their x- and y-coordinates In other words, the distance between two points (x1, y1) and (x2, y2) can be expressed as the square root of (x2 − x1)2 and (y2 − y1)2. Two points with the same (x, y) coordinates should return a distance of 0.0.

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  book-img-for-question
Question Posted: