Please, use the new Blupi.org website for downloading freely all games.
Accueil CeeBot Blupi BuzzingCars CoLoBoT
Français
English
Deutsch
 
 
 
 
 
Dessin Retour
extern void object::Dessin( )
{
  pendown(Red);  // dessine en rouge

  repeat ( 12 )  // répète 12x
  {
    Carré();   // dessine un carré
    turn(30);  // tourne de 30 degrés
  }
}

void object::Carré()
{
  repeat ( 4 )  // répète 4x
  {
    move(5);  // dessine un côté du carré
    turn(90);
  }
}