This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Rounded Trapezoid | |
*/ | |
span { | |
display: block; | |
z-index: 1; | |
position: relative; | |
/* set trapezoid size */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Color Calculator | |
*/ | |
.center { | |
top:50%; | |
left:50%; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* tic tac toe | |
*/ | |
.new { | |
font:30px helvetica,sans-serif; | |
color: white; | |
width: 308px; | |
height: 100px; | |
border-width: 1px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Project Euler Problem 1 | |
*/ | |
h1 { | |
padding: 50px; | |
font:30px helvetica,sans-serif; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Project Euler Problem 2 | |
*/ | |
h1 { | |
padding: 50px; | |
font:30px helvetica,sans-serif; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<iframe style="border: 0; width: 100%; height: 120px;" src="http://bandcamp.com/EmbeddedPlayer/album=1743812063/size=medium/bgcol=ffffff/linkcol=e86243/transparent=true/" seamless><a href="http://meau.bandcamp.com/album/good-kopp-bad-kopp">Good Kopp Bad Kopp by Koppen</a></iframe> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int radius = 50; | |
void setup() { | |
size(700, 300); | |
} | |
void pattern() { | |
noStroke(); | |
fill(148, 140, 68, 230); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int count = 0; | |
SquareSpin[] square = new SquareSpin[300]; | |
void setup() { | |
size(662, 300); | |
for (int a = -320; a <= 320; a = a + 40) { | |
for (int b = -320; b <= 320; b = b + 40) { | |
square[count] = new SquareSpin(a, b); | |
count++; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
float bbycircle; | |
float bbycircle2; | |
float radius; | |
float gray; | |
void setup() { | |
size(662, 300); | |
} | |
void draw() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
float bbycircle; | |
float bbycircle2; | |
float speed = 6; | |
float speed2 = 12; | |
void setup() { | |
size(662, 304); | |
background(255); | |
} |
OlderNewer