diff options
-rw-r--r-- | entries/themaskedtaquito/fib.js | 26 | ||||
-rw-r--r-- | people.json | 12 |
2 files changed, 38 insertions, 0 deletions
diff --git a/entries/themaskedtaquito/fib.js b/entries/themaskedtaquito/fib.js new file mode 100644 index 0000000..6708630 --- /dev/null +++ b/entries/themaskedtaquito/fib.js @@ -0,0 +1,26 @@ +//p5.js
+
+let fib1 = 0;
+let fib2 = 1;
+let loopNumber = 1;
+function setup() {
+ createCanvas(600, 600);
+ frameRate(3);
+}
+
+function draw() {
+ background(220);
+ fill('#'+str(hex(fib2)));
+ noStroke();
+ rect(50,70,500,500);
+ textSize(20);
+ text('#'+str(hex(fib2)),53,57);
+ fill(0);
+ text('Fibonacci ' +str(loopNumber) + ': '+ str(fib2),200,57);
+ fib2 = fib1 + fib2;
+ fib1 = fib2 - fib1;
+ loopNumber +=1;
+ if(fib2>420196140727489660){
+ noLoop();
+ }
+}
\ No newline at end of file diff --git a/people.json b/people.json index fdfd52d..f1b99d4 100644 --- a/people.json +++ b/people.json @@ -676,6 +676,18 @@ ] }, { + + "github": "themaskedtaquito", + "name": "Mari Allison", + "title": "MASLIS, UBC", + "entries": [ + { + "name": "color", + "link": "./entries/themaskedtaquito/fib.js" + } + ] + }, + { "github": "skairunner", "name": "Skye Im", "title": "Software Engineer", |