Question: Please show work in java Below, in CoordinatePoint.java, is the CoordinatePoint class that we've been working on. Add the following four methods to the class:
Please show work in java
Below, in CoordinatePoint.java, is the CoordinatePoint class that we've been working on. Add the following four methods to the class: - public double distanceto (Coordinatepoint p): returns the distance from this point to the specified point. Try to accom plish this in just one short statement; see if there's another method in CoordinatePoint that can do most of the work for you. - public void translate(int dx, int dy ): moves this point from location (x,y) to location (x+dx,y+dy). - public CoordinatePoint yReflection(): returns a new CoordinatePoint that is a copy of this CoordinatePoint, but refl ected across the y axis. - public CoordinatePoint originReflection(): returns a new CoordinatePoint that is a copy of this CoordinatePoint, but reflected across the origin. The testing code, in TestCoordinatePoint.java, has been provided to you. You may need to click "Reset" in order to see it. Additional Notes: Regarding your code's standard output, CodeLab will ignore case errors and will ignore whitespace (tabs, spaces, newlines) altogether
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
