xxxxxxxxxx
106
const xOffset = 30;
function setup() {
createCanvas(600, 400);
background(220);
text('CAR CONSUMER - TROUBLE INDEX', 100, 20);
// line(50, 50, 50, 300);
// line(50, 300, 300, 300);
text('Ranking', 10, 40)
text('Year', 300, 350)
text('None at all', xOffset, 250)
text('Some', xOffset, 200)
text('Average', xOffset, 150)
text('More', xOffset, 100)
text('Most Trouble', xOffset, 50)
text('76', 50, 320)
text('77', 100, 320)
text('78', 150, 320)
text('79', 200, 320)
text('80', 250, 320)
text('81', 300, 320)
stroke('blue');
strokeWeight(2);
// chevy malibu
circle(50, 150, 5);
line(50, 150, 100, 150);
circle(100, 150, 5);
line(100, 150, 150, 200);
circle(150, 200, 5);
line(150, 200, 200, 200);
circle(200, 200, 5);
line(200, 200, 250, 200);
circle(250, 200, 5);
line(250, 200, 300, 200);
circle(300, 200, 5);
stroke('red')
// chevy monza
circle(50, 250, 5);
line(50, 250, 100, 250);
circle(100, 250, 5);
line(100, 250, 150, 250);
circle(150, 250, 5);
line(150, 250, 200, 250);
circle(200, 250, 5);
line(200, 250, 250, 150);
circle(250, 150, 5);
line(250, 150, 300, 250);
circle(300, 250, 5);
stroke('green')
// datsun
circle(50, 150, 5);
line(50, 150, 100, 50);
circle(100, 50, 5);
line(100, 50, 150, 50);
circle(150, 50, 5);
line(150, 50, 200, 50);
circle(200, 50, 5);
line(200, 50, 250, 50);
circle(250, 50, 5);
line(250, 50, 300, 50);
circle(300, 50, 5);
stroke('purple')
// ford granada
circle(50, 150, 5);
line(50, 150, 100, 150);
circle(100, 150, 5);
line(100, 150, 150, 150);
circle(150, 150, 5);
line(150, 150, 200, 200);
circle(200, 200, 5);
line(200, 200, 250, 150);
circle(250, 150, 5);
line(250, 150, 300, 150);
circle(300, 150, 5);
stroke('orange')
// ford pickup truck 6
circle(50, 150, 5);
line(50, 150, 100, 50);
circle(100, 50, 5);
line(100, 50, 150, 50);
circle(150, 50, 5);
line(150, 50, 200, 50);
circle(200, 50, 5);
line(200, 50, 250, 50);
circle(250, 50, 5);
line(250, 50, 300, 50);
circle(300, 50, 5);
}
function draw() {
}