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); }
public ControlPoint() { this.currentState = MoveState.GetInstance(); this.pen = new Pen(Color.Black); }