“Too many f*cking pink cars” by Guillermo
https://openprocessing.org/sketch/502905
License CreativeCommons Attribution ShareAlike
https://creativecommons.org/licenses/by-sa/3.0
{{filePath}}
{{width}} x {{height}}
Report Sketch
Oh, that naughty sketch! Please let us know what the issue is below.
Apply Template
Applying this template will reset your sketch and remove all your changes. Are you sure you would like to continue?
Report Sketch
Report Comment
Please confirm that you would like to report the comment below.
We will review your submission and take any actions necessary per our Community Guidelines. In addition to reporting this comment, you can also block the user to prevent any future interactions.
Please report comments only when necessary. Unnecessary or abusive use of this tool may result in your own account being suspended.
Are you sure you want to delete your sketch?
Any files uploaded will be deleted as well.
Delete Comment?
This will also delete all the replies to this comment.
Delete this tab? Any code in it will be deleted as well.
Select a collection to submit your sketch
We Need Your Support
Since 2008, OpenProcessing has provided tools for creative coders to learn, create, and share over a million open source projects in a friendly environment.
Niche websites like ours need your continued support for future development and maintenance, while keeping it an ad-free platform that respects your data and privacy!
Please consider subscribing below to show your support with a "Plus" badge on your profile and get access to many other features!
A fork of Many cars by Francisco Perez
CC Attribution ShareAlike
Too many f*cking pink cars
xxxxxxxxxx
var cars = [];
var A
function setup(){ createCanvas(400,200);
// make 25 cars
for(var i = 0; i < A; i++) { cars[i] = new Car(); }}
A=100
function draw(){
//The A variable changes
A=A+1
// clear background
background(255);
// loop through each car
for(var i = 0; i < cars.length; i++) { cars[i].drive(); cars[i].display(); } }
// car constructor
function Car(ypos, speed){
this.xpos = random(width); this.ypos = random(height); this.speed = random(20); this.c = color(255,20, random(133,193)); // drive method
this.drive = function() { if(this.xpos > width) {
this.xpos = -200; // start offscreen
this.ypos = random(height); } this.xpos = this.xpos + this.speed; } // display method
this.display = function() { // body of the car
fill(this.c); rectMode(CORNER); rect(this.xpos, this.ypos, 100, 50); // wheels
fill(0); ellipse(this.xpos + 20, this.ypos + 45, 40, 40); ellipse(this.xpos + 80, this.ypos + 45, 40, 40); }}
See More Shortcuts