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