Please, use the new Blupi.org website for downloading freely all games.
Home CeeBot Blupi BuzzingCars CoLoBoT
English
Français
Deutsch
 
 
 
 
 
Drawing Back
extern void object::Drawing( )
{
  int left = 90;
  int right = -90;

  pendown(Red);
  repeat(3)
  {
    move(16);
    turn(left);
    move(12);
    turn(left);
    move(8);
    turn(left);
    move(4);
    turn(left);
    move(4);
    turn(right);
    move(4);
    turn(right);
    move(8);
    turn(right);
    move(12);
    turn(right);
    move(16);
    turn(right);
    move(16);
    turn(left);
  }
}