Description
This page is generated from the Processing project folder at /2017/Lessons/Functions_within_variables_02/Functions_within_variables_02.pde.
Archive
No companion assets were found in this sketch folder.
/*
Visualizing functions with return values
02/21/2017
*/
void setup() {
size(600,400);
smooth();
frameRate(120);
background(#FFFFFF);
}
void draw() {
float f = calculateY(mouseX);
strokeWeight(5);
point(mouseX,f);
}
float calculateY(float x) {
return (1/(x-width/2))*500+200;
}
This page is generated from the Processing project folder at /2017/Lessons/Functions_within_variables_02/Functions_within_variables_02.pde.
No companion assets were found in this sketch folder.