top of page
Search
  • elissa1810

Assignment #2 (part1)



Doing this assignment was very fun actually. Just messing round with the different shapes to create something you did not think that you could create. Being that I have not coded in about a year I thought that I would struggle a little but I did not. Once my memory was refreshed it came so easily to me.


function setup() {

createCanvas(800, 600);

}

function draw() {

background(230, 285, 250);

//green grass

fill('green');

rect(-0, 300, 650, 400);

//house

fill('yellow');

rect(300,150,200,200);

// left window

noStroke()

fill('grey')

rect(310,205,50,40);

//right window

noStroke()

fill('grey')

rect(430,205,50,40);

//Door

fill('black')

rect(378,286,35,65);

//roof

fill('black');

triangle(400,90,190,190,600,190);

}

6 views0 comments

Recent Posts

See All

Final Project

https://editor.p5js.org/elissae18/present/Vp1d6Z6ng My project is supposed to relax the user who is viewing it. by focusing on the different shapes moving it will cause the users mind to wander.

Assignment 9

for my final I am going towards an interactive piece. I have been looking at different types of meditation course to give me an idea. The idea I came up with was influenced my several mediation videos

Assignment 8

https://www.tinkercad.com/things/7sMU97eWDH0-funky-amberis/editel?sharecode=X_NpkCI3GYV-A5FyM9PP-cjufP5nG38Izi3bWrtV4QM My circuit is just a simple LED light being lit up, I was trying to have multipl

Post: Blog2_Post
bottom of page