sketch = function( p ) {
const gArrayFibonacci = [ 0, 1, 1, 2 ];
p.setup = function() {
p.createCanvas(800, 800);
p.frameRate(2);
p.colorMode(p.HSB, 100);
showLatestFibonacciValue();
}
p.draw = function() {
p.translate(p.width/2, p.height/2);
getNextFibonacci( true );
drawRect( p.width);
showLatestFibonacciValue();
}
function drawRect(w) {
let xPos = 0;
let yPos = 0;
const scalar = w / ( 2 * getLatestFibonacciNum() );
p.background(0);
const targetArray = gArrayFibonacci;
targetArray.forEach( ( element, index ) => {
if( ( index > 0 ) && ( index < targetArray.length - 1 ) ) {
const previousIndex = index - 1;
const nextIndex = index + 1;
p.fill( ( 10 * index ) % 100, 40, 100 );
p.rect( scalar * xPos, scalar * yPos,
scalar * getSign( nextIndex ) * targetArray[ previousIndex ],
scalar * getSign( index ) * element );
if( isOdd( index ) ){
xPos += getSign( index ) * ( element + targetArray[ previousIndex ] );
} else {
yPos += getSign( index ) * ( element + targetArray[ nextIndex ] );
}
}
});
}
const getSign = (index) => {
const signArray = [ -1, 1, 1, -1 ];
return signArray[ index % 4 ];
}
const getNextFibonacci = (isRegister) => {
const targetArray = gArrayFibonacci;
const latestIndex = targetArray.length - 1;
const nextFibonacciNum = targetArray[ latestIndex - 1 ] + targetArray[ latestIndex ];
if( isRegister ){
targetArray.push( nextFibonacciNum );
}
return nextFibonacciNum;
}
const getLatestFibonacciNum = () => {
return gArrayFibonacci[ gArrayFibonacci.length - 1 ];
}
const isOdd = ( number ) => {
return ( number % 2 === 1 );
}
const showLatestFibonacciValue = () => {
const targetArray = gArrayFibonacci;
const latestIndex = targetArray.length - 1;
let text = 'Fibonacci: ' + targetArray[ latestIndex ];
if( targetArray.length > 2 ){
text += ', f(' + ( latestIndex ) + ')/f(' + ( latestIndex - 1 ) + '): ' +
( targetArray[ latestIndex ] / targetArray[ latestIndex - 1 ] ).toFixed( 10 );
}
console.log( text );
}
}