void HandlemakeStep(object sender, CNCEventArgs e) { /*switch(e.axis) { case "x": if (e.avanzar) Draw(z, x+1, y); else Draw(z, x-1, y); break; case "y": if (e.avanzar) Draw(z, x, y+1); else Draw(z, x, y-1); break; case "z": if (e.avanzar) Draw(z + 1, x, y); else Draw(z - 1, x, y); break; }*/ }
void HandlemakeStep(object sender, CNCEventArgs e) { Console.WriteLine("Se hizo un paso"); }