valiamaximova1

Tupa kola

Apr 11th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. void setup(){
  2.   size(800, 800);
  3. }
  4.  
  5. void draw(){
  6.   myCar("n");
  7. }
  8.  
  9. void myCar( String c){
  10.   fill(#E8FA00);
  11.   rect(100,60,100,50);
  12.   ellipse(100,110,20*2, 20*2);
  13.   ellipse(200,110,20*2, 20*2);
  14. }
Add Comment
Please, Sign In to add comment