Accueil CeeBot Blupi BuzzingCars CoLoBoT
Français
English
 
 
 
 
 
Introduction
Produits
CeeBot-Teen
CeeBot-A
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);
  }
}