This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Point2D | |
{ | |
private double xCoord; | |
private double yCoord; | |
public Point2D(double x, double y) | |
{ | |
xCoord = x; | |
yCoord = y; | |
} |