Advertisement
valiamaximova1

Car

Mar 31st, 2019
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.33 KB | None | 0 0
  1.   yellow = #FFC30B;
  2.   grey = #808080;
  3.   blue = #1000FF;
  4.   black = #000000;
  5.   pink = #F5C3C2;
  6. }
  7.  
  8. void draw(){
  9.   myCar(2, pink); // << Tuk smenqte cveta
  10. }
  11.  
  12. void myCar(int size, color c){
  13.   fill(c);
  14.   rect(100,60,100,50);
  15.   ellipse(100,100,20*size, 20*size);
  16.   ellipse(200,100,20*size, 20*size);
  17.   rect(140, 70, 30, 20);
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement