예제 #1
0
 public NAngleByPointsFigure()
 {
     Points = new List <Point>();
     Drawer = new AnglePointsDrawer(N);
 }
예제 #2
0
 public NAngleByPointsFigure(int n)
 {
     N      = n;
     Points = new List <Point>();
     Drawer = new AnglePointsDrawer(N);
 }