Skip to content

Instantly share code, notes, and snippets.

@noeldelgado
Created March 10, 2013 15:06
Show Gist options
  • Save noeldelgado/5128920 to your computer and use it in GitHub Desktop.
Save noeldelgado/5128920 to your computer and use it in GitHub Desktop.
var golden_ratio = 1.6180339887498948482,
values = [];
var gr = function(min, max) {
while(min < max) {
min = Math.round( min * golden_ratio );
values.push( min );
}
return values;
};
console.log( gr(1, 100) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment