Skip to content

Instantly share code, notes, and snippets.

@claytical
Created January 27, 2016 14:59
Show Gist options
  • Save claytical/5c03d2e40b3ac07b43a0 to your computer and use it in GitHub Desktop.
Save claytical/5c03d2e40b3ac07b43a0 to your computer and use it in GitHub Desktop.
Circle Remap Values
function setup() {
createCanvas(windowWidth, windowHeight);
}
function draw() {
background(255);
var x = width/2;
var y = height/2;
var circleWidth = map(mouseX, 0, width, 0, 100);
var circleHeight = map(mouseX, 0, width, 0, 100);
fill(255,0,0);
ellipse(x, y, circleWidth, circleHeight);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment