Created
January 23, 2017 11:28
-
-
Save mamachanko/c5717513cbdd7bb2b1a9c2ff4b611d9b to your computer and use it in GitHub Desktop.
Shape API
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"x": 100, "y": 100} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script src="//cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.6/p5.js"></script> | |
<script src="sketch.js"></script> | |
</head> | |
<body> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function setup() { | |
createCanvas(600, 400); | |
noStroke(); | |
loadJSON("data.json", drawThis); | |
} | |
function drawThis(data) { | |
console.log(data); | |
background(40, 90, 200); | |
fill(128); | |
ellipse(data.x, data.y, 30, 30); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment