Please, use the new Blupi.org website for downloading freely all games.
Home CeeBot Blupi BuzzingCars CoLoBoT
Deutsch
English
Français
 
 
 
 
 
Zeichnen Zurück
extern void object::Zeichnen( )
{
  int links = 90;
  int rechts = -90;

  pendown(Red);
  repeat(3)
  {
    move(16);
    turn(links);
    move(12);
    turn(links);
    move(8);
    turn(links);
    move(4);
    turn(links);
    move(4);
    turn(rechts);
    move(4);
    turn(rechts);
    move(8);
    turn(rechts);
    move(12);
    turn(rechts);
    move(16);
    turn(rechts);
    move(16);
    turn(links);
  }
}