示例#1
0
 public poligon(centerPoint c, point rad, int number)
 {
     center = c;
     radius = rad;
     polis  = number;
 }
示例#2
0
 public point(centerPoint p)
 {
     x = p.x;
     y = p.y;
 }
示例#3
0
 public circle(centerPoint c, float rad)
 {
     center = c;
     radius = rad;
 }