You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011
  1. import figures.Line;
  2. import figures.Point;
  3. public class Main {
  4. public static void main(String[] args) {
  5. Point p1 = new Point(10, 100);
  6. Point p2 = new Point(20, 200);
  7. Line l1 = new Line(p1, p2);
  8. }
  9. }