Skip to content

Instantly share code, notes, and snippets.

View zootsuitproductions's full-sized avatar

zootsuitproductions

View GitHub Profile

Keybase proof

I hereby claim:

  • I am zootsuitproductions on github.
  • I am santanad (https://keybase.io/santanad) on keybase.
  • I have a public key whose fingerprint is 66B8 0C7D E0A6 0752 1AC1 7343 0756 1EE4 EF02 A01F

To claim this, I am signing this object:

var img;
var redSlider;
var imageArray;
//preload will load before setup runs
function preload() {
imageArray = ["sk8.jpg","legobrick.jpg","dad.jpg","legocas.jpg","danny.jpg","miniGolf.jpg","File_001.jpeg"]
img = loadImage(imageArray[Math.round(random(imageArray.length))])
}
@zootsuitproductions
zootsuitproductions / DannyExplorable11.11.js
Created November 11, 2017 23:31
DannyExplorable11/11/17
var webPages = {
tabsCount: 1,
currentTab: 0,
tabsArray: [[1000,500,100,100,100], [1000,500,200,0,0]],
loadTab: function() {
print(webPages.currentTab)
clear();
createCanvas(webPages.tabsArray[webPages.currentTab][0],webPages.tabsArray[webPages.currentTab][1])
background(webPages.tabsArray[webPages.currentTab][2],webPages.tabsArray[webPages.currentTab][3],webPages.tabsArray[webPages.currentTab][4])
if (webPages.currentTab == webPages.tabsCount) {
@zootsuitproductions
zootsuitproductions / DannyClickAndKnowMore.js
Created November 5, 2017 09:13
Danny Santana Computing Click and Know More
var button;
var button1;
var counter = 0
var counter1 = 0
var car;
var xPosition = 100
function setup() {
angleMode(DEGREES);
let h2 = createElement('h2','The Ethics of Self-Driving Cars')
@zootsuitproductions
zootsuitproductions / DanielSantanaTextile.js
Last active October 12, 2017 14:41
Daniel Santana Computing 1 Final Textile
/*
Title: Was this your card?
Imagined, Designed, and Programmed by: Daniel Santana
Date: October 12, 2017
Description: A pettern that recreates fans of cards, in which a specific card is face up.
Sources of ideas and inspiration (title, author, URL):
*Archangels Playing Cards, Theory11, www.bicyclecards.com/product/bicycle-archangels-playing-cards/
*Art Nouveau, Encyclopaedia Britanica, https://www.britannica.com/art/Art-Nouveau
*History of Encaustic Cement Tile, Villa Lagoon Tile, https://www.villalagoontile.com/history-of-encaustic-tiles.html
@zootsuitproductions
zootsuitproductions / DannySantanaPatternplayingCard.js
Last active October 10, 2017 04:34
Danny Playing Card Pattern
let canvasX = 3000
let canvasY = 3000
var increasingRotation = 2
//Will be increased and used to rotate the cancas when creating the wing shape
var lastPoint = [0,0]
var y = -116;
var negative = false
var transX = 0
var transY= 200
var iteration = 0
@zootsuitproductions
zootsuitproductions / danielSantanaTextileProject.js
Last active October 6, 2017 18:16
Daniel Santana Computing Textile Leaf pattern
let canvasX = 2500
let canvasY = 2500
function setup() {
createCanvas(canvasX,canvasY);
translate(canvasX/2,canvasY/2);
//makes origin in the center of the canvas
angleMode(DEGREES)
noFill();
makePlant(-800,0,400);
}