Esempio n. 1
0
 public ControlPoint(int x, int y)
 {
     this.start.X      = x - 5;
     this.start.Y      = y - 5;
     this.end.X        = x + 5;
     this.end.Y        = y + 5;
     this.currentState = MoveState.GetInstance();
     this.pen          = new Pen(Color.Black);
 }
Esempio n. 2
0
 public ControlPoint()
 {
     this.currentState = MoveState.GetInstance();
     this.pen          = new Pen(Color.Black);
 }