Department of Computer Science | Institute of Theoretical Computer Science | CADMO

Theory of Combinatorial Algorithms

Prof. Emo Welzl and Prof. Bernd Gärtner

// ----------------------------------------------------------------- // file: turtle // Version: $Revision: 1.1 $ from $Date: 1998/11/23 13:22:34 $ // ----------------------------------------------------------------- // provides a simple function-based turtle-graphic interface #include namespace IFM_NAMESPACE { void forward(unsigned int n_steps = 1); // POST: turtle has moved n_steps steps in its current direction. void left(int deg = 1); // POST: turtle has turned left by deg degrees. void right(int deg = 1); // POST: turtle has turned right by deg degrees. } // namespace IFM_NAMESPACE // EOF