Skip to content

Instantly share code, notes, and snippets.

Created February 15, 2015 21:49
Show Gist options
  • Save anonymous/b4c281cf6fc2ec72ea8a to your computer and use it in GitHub Desktop.
Save anonymous/b4c281cf6fc2ec72ea8a to your computer and use it in GitHub Desktop.
bounciy_2015_02_15_22-48
function inputs(){
var obj = {};
obj.r = {min: 1.0, max:100.0, default: 5.0, step: 0.1};
obj.g = 14;
obj.b = 21;
return obj
}
function jazz(r, g, b){
var x = r * 20,
y = g * 40,
z = b * 60;
return [[x,y,z],['raner']];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment