Skip to content

Instantly share code, notes, and snippets.

@aurelianonava
Last active October 25, 2017 17:02
Show Gist options
  • Save aurelianonava/23b14a98f340ab4a8408b6247e5226e3 to your computer and use it in GitHub Desktop.
Save aurelianonava/23b14a98f340ab4a8408b6247e5226e3 to your computer and use it in GitHub Desktop.
FINAL Course Project Gist:
<!DOCTYPE html>
<html>
<head>
<title>Multiple Mini-Project on one canvas.</title>
<meta name="description" content="[add your bin description]">
<script data-require="p5.js@*" data-semver="0.5.7" src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.7/p5.min.js"></script>
</head>
<body>
<h4>Multiple Mini-Project on one canvas.</h4>
<script src="script.js" type="text/javascript"></script>
</body>
</html>
// mhs master repository project
var nava_x = 15;
var nava_y = 15;
var nava_xspeed = 1;
var nava_yspeed = 1.5;
//Jose Orozco Variables
var JOx = 17;
var JOy = 300;
var JOspeed = 4;
var JOradius = 15;
var JOangle = 0;
//speed should remain constant for all projects
var xspeed = 1, xspeed2 = 1.2;
var yspeed = 2, yspeed2 = 2.3;
function setup() {
createCanvas(800, 400);
}
function draw() {
background(150);
strokeWeight(1);
// Rectangles overlapping canvas
//1. Mr.Nava's rectangle
// fill(125, 170, 220);
// rect(0,0,200,200);
//2. Juan Guzman rect
fill(150);
rect(200,0,200, 200);
//3. John Gonzalez rect
fill(130, 180, 60);
rect(400,0,200,200);
//4. Jose Orozco rect
fill(255,120,120);
rect(0,200,200,200);
//5. Angel Gomez rect
fill(150);
rect(200,200,200,200);
//6. Michael Esparaza rect
fill(150);
rect(400,200,200,200);
//7. Daniel Alberto Ayala Lopez
fill(150);
rect(600,0,200,200);
//8. New Student
fill(150);
rect(400,200,200,200);
//START Mr. Nava's Project
//Nava Variables
// fill(125, 170, 220);
// rect(0,0,200,200);
if (nava_x > 100) {
fill(90, 150, 10);
ellipse(nava_x, nava_y, 25, 25); // Mr.Nava ellipse
}
if (nava_x < 100) {
fill(125, 170, 220);
rect(0,0,200,200);
fill(225, 70, 20);
ellipse(nava_x, nava_y, 25, 25); // Mr.Nava ellipse
}
nava_x = nava_x + nava_xspeed;
nava_y = nava_y + nava_yspeed;
if (nava_x > (width / 4) - 12.5 || nava_x < 12.5) {
nava_xspeed = -nava_xspeed;
fill(125, 170, 220);
}
if (nava_y > (height / 2)-12.5 || nava_y < 12.5) {
nava_yspeed = -nava_yspeed;
fill(225, 70, 120);
}
//End of Mr. Nava
//START Jose Orozco Project
strokeWeight(2);
ellipse(JOx, JOy, JOradius * 2, JOradius * 2);
fill(255);
strokeWeight(10);
point(JOx + JOradius * sin(JOangle), JOy - JOradius * cos(JOangle));
JOangle = JOangle + JOspeed * 0.08;
JOx = JOx + JOspeed;
if (JOx > 184) {
JOspeed = -4;
} else if (JOx < 17) {
JOspeed = 4;
}
//END Jose Orozco Project
//START Juan Guzman
//END Juan Guzman
//START John Gonzalez
//END John Gonzalez
//START Angel Gomez
//END Angel Gomez
//START Michael Esparza
// END Michael Esparza
//START Daniel Ayala
// END Daniel Ayala
//START Monica Jaimes
// END Monica Jaimes
// text() function
n = "Mr. Nava";
jdg = "Juan Guzman";
jg = "John Gonzalez";
jo = "Jose Orozco";
ag = "Angel Gomez";
me = "Michael Esparza";
da = "Daniel Ayala";
mj = "Monica Jaimes";
//
fill(50);
text(n, 10, 10, 70, 80); // Text wraps within text box
text(jdg, 210, 10, 70, 80);
text(jg, 410, 10, 100, 80);
text(jo, 10, 210, 100, 80);
text(ag, 210, 210, 70, 80);
text(me, 410, 210, 70, 80);
text(da, 610, 10, 70, 80);
text(mj, 610, 210, 70, 80);
}
@aurelianonava
Copy link
Author

Notice on lines 34-38 the use of the text(); function to insert text into canvas. Refer to the online documentation on p5.js for more information on its use.

What will you need code in order to insert your object into your 200 x 200 rectable in the mhs canvas?

@aurelianonava
Copy link
Author

Inserted mhs canvas project member names to 200 x 200 areas.

@aurelianonava
Copy link
Author

Added all remaining student names their canvas 200 x 200 rectangles.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment