예제 #1
0
 public RectangleFigure()
 {
     drawing = new DrawByPoligon();
     solves  = new RectangleSolve();
     Mover   = new MoveByPoligon();
 }
예제 #2
0
 public LineFigure()
 {
     drawing = new DrawByPoligon();
     solves  = new LineSolve();
     Mover   = new MoveByPoligon();
 }
예제 #3
0
 public SquareFigure()
 {
     drawing = new DrawByPoligon();
     solves  = new SquareSolves();
     Mover   = new MoveByPoligon();
 }
예제 #4
0
 public IsoscelesTraingleFigure()
 {
     drawing = new DrawByPoligon();
     solves  = new IsoscelesTraingleSolve();
     Mover   = new MoveByPoligon();
 }
예제 #5
0
 public RightTraingle()
 {
     drawing = new DrawByPoligon();
     solves  = new RightTraingleSolve();
     Mover   = new MoveByPoligon();
 }