Exemplo n.º 1
0
 public Forward(Expression param, Turtle turtle) : base(param)
 {
 }
Exemplo n.º 2
0
 public Left(Expression param, Turtle turtle) : base(param)
 {
 }
Exemplo n.º 3
0
 public Right(Expression param, Turtle turtle) : base(param)
 {
 }
Exemplo n.º 4
0
 private void Form1_Load(object sender, EventArgs e)
 {
     turtle         = new Turtle(drawingArea.Width / 2, drawingArea.Height / 2, graphics);
     syntaxAnalyser = new SyntaxAnalyser(turtle, this, textBox2);
 }