示例#1
0
 public LineFigure()
 {
     drawing = new DrawByPoligon();
     solves  = new LineSolve();
     Mover   = new MoveByPoligon();
 }
示例#2
0
 public RectangleFigure()
 {
     drawing = new DrawByPoligon();
     solves  = new RectangleSolve();
     Mover   = new MoveByPoligon();
 }
示例#3
0
 public IsoscelesTraingleFigure()
 {
     drawing = new DrawByPoligon();
     solves  = new IsoscelesTraingleSolve();
     Mover   = new MoveByPoligon();
 }
示例#4
0
 public PolygonFigure()
 {
     drawing = new DrawByPoligon();
     solves  = new PolygonSolve();
 }
示例#5
0
 public SquareFigure()
 {
     drawing = new DrawByPoligon();
     solves  = new SquareSolves();
     Mover   = new MoveByPoligon();
 }
示例#6
0
 public CircleFigure()
 {
     drawing = new DrawByPoligon();
     solves  = new CircleSolves();
 }
示例#7
0
 public RightTraingle()
 {
     drawing = new DrawByPoligon();
     solves  = new RightTraingleSolve();
     Mover   = new MoveByPoligon();
 }