kopia lustrzana https://github.com/villares/sketch-a-day
url fix & turn off frame saving
rodzic
db689454f8
commit
6aa0dcb224
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
Hi! I'm [Alexandre Villares](https://abav.lugaralgum.com), let's see if I can make one small program (*sketch*) a day.
|
||||
|
||||

|
||||

|
||||
|
||||
#### 007: [s180107](https://github.com/villares/sketch-a-day/tree/master/s180107) [[Processing Java](https://www.processing.org)] Colorful grid of Platonic Solids in Java Mode [GIF](s180107/s180107.gif)
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,337 @@
|
|||
class PlatonicSolid {
|
||||
color c = color(255);
|
||||
void create() {
|
||||
fill(this.c);
|
||||
//implemented by each solid
|
||||
}
|
||||
}
|
||||
|
||||
PlatonicSolid PlatonicFactory(int type, color c) {
|
||||
PlatonicSolid s = new PlatonicSolid();
|
||||
switch(type) {
|
||||
case 0:
|
||||
s = new Tetrahedron(18);
|
||||
break;
|
||||
case 1:
|
||||
s = new Hexahedron(14);
|
||||
break;
|
||||
case 2:
|
||||
s = new Octahedron(22);
|
||||
break;
|
||||
case 3:
|
||||
s = new Dodecahedron(18);
|
||||
break;
|
||||
case 4:
|
||||
s = new Icosahedron(18);
|
||||
break;
|
||||
}
|
||||
s.c = c; // sets color attribute
|
||||
return s;
|
||||
}
|
||||
class Icosahedron extends PlatonicSolid {
|
||||
// icosahedron
|
||||
float x, y, z;
|
||||
float radius;
|
||||
PVector topPoint;
|
||||
PVector[] topPent = new PVector[5];
|
||||
PVector bottomPoint;
|
||||
PVector[] bottomPent = new PVector[5];
|
||||
float angle = 0;
|
||||
float triDist;
|
||||
float triHt;
|
||||
float a, b, c;
|
||||
|
||||
// constructor
|
||||
Icosahedron(float radius) {
|
||||
this.radius = radius;
|
||||
|
||||
c = dist(cos(0)*radius, sin(0)*radius, cos(radians(72))*radius, sin(radians(72))*radius);
|
||||
b = radius;
|
||||
a = (float)(Math.sqrt(((c*c)-(b*b))));
|
||||
|
||||
triHt = (float)(Math.sqrt((c*c)-((c/2)*(c/2))));
|
||||
|
||||
for (int i=0; i<topPent.length; i++) {
|
||||
topPent[i] = new PVector(cos(angle)*radius, sin(angle)*radius, triHt/2.0f);
|
||||
angle+=radians(72);
|
||||
}
|
||||
topPoint = new PVector(0, 0, triHt/2.0f+a);
|
||||
angle = 72.0f/2.0f;
|
||||
for (int i=0; i<topPent.length; i++) {
|
||||
bottomPent[i] = new PVector(cos(angle)*radius, sin(angle)*radius, -triHt/2.0f);
|
||||
angle+=radians(72);
|
||||
}
|
||||
bottomPoint = new PVector(0, 0, -(triHt/2.0f+a));
|
||||
}
|
||||
|
||||
// draws icosahedron
|
||||
void create() {
|
||||
super.create();
|
||||
for (int i=0; i<topPent.length; i++) {
|
||||
// icosahedron top
|
||||
beginShape();
|
||||
if (i<topPent.length-1) {
|
||||
vertex(x+topPent[i].x, y+topPent[i].y, z+topPent[i].z);
|
||||
vertex(x+topPoint.x, y+topPoint.y, z+topPoint.z);
|
||||
vertex(x+topPent[i+1].x, y+topPent[i+1].y, z+topPent[i+1].z);
|
||||
} else {
|
||||
vertex(x+topPent[i].x, y+topPent[i].y, z+topPent[i].z);
|
||||
vertex(x+topPoint.x, y+topPoint.y, z+topPoint.z);
|
||||
vertex(x+topPent[0].x, y+topPent[0].y, z+topPent[0].z);
|
||||
}
|
||||
endShape(CLOSE);
|
||||
|
||||
// icosahedron bottom
|
||||
beginShape();
|
||||
if (i<bottomPent.length-1) {
|
||||
vertex(x+bottomPent[i].x, y+bottomPent[i].y, z+bottomPent[i].z);
|
||||
vertex(x+bottomPoint.x, y+bottomPoint.y, z+bottomPoint.z);
|
||||
vertex(x+bottomPent[i+1].x, y+bottomPent[i+1].y, z+bottomPent[i+1].z);
|
||||
} else {
|
||||
vertex(x+bottomPent[i].x, y+bottomPent[i].y, z+bottomPent[i].z);
|
||||
vertex(x+bottomPoint.x, y+bottomPoint.y, z+bottomPoint.z);
|
||||
vertex(x+bottomPent[0].x, y+bottomPent[0].y, z+bottomPent[0].z);
|
||||
}
|
||||
endShape(CLOSE);
|
||||
}
|
||||
|
||||
// icosahedron body
|
||||
for (int i=0; i<topPent.length; i++) {
|
||||
if (i<topPent.length-2) {
|
||||
beginShape();
|
||||
vertex(x+topPent[i].x, y+topPent[i].y, z+topPent[i].z);
|
||||
vertex(x+bottomPent[i+1].x, y+bottomPent[i+1].y, z+bottomPent[i+1].z);
|
||||
vertex(x+bottomPent[i+2].x, y+bottomPent[i+2].y, z+bottomPent[i+2].z);
|
||||
endShape(CLOSE);
|
||||
|
||||
beginShape();
|
||||
vertex(x+bottomPent[i+2].x, y+bottomPent[i+2].y, z+bottomPent[i+2].z);
|
||||
vertex(x+topPent[i].x, y+topPent[i].y, z+topPent[i].z);
|
||||
vertex(x+topPent[i+1].x, y+topPent[i+1].y, z+topPent[i+1].z);
|
||||
endShape(CLOSE);
|
||||
} else if (i==topPent.length-2) {
|
||||
beginShape();
|
||||
vertex(x+topPent[i].x, y+topPent[i].y, z+topPent[i].z);
|
||||
vertex(x+bottomPent[i+1].x, y+bottomPent[i+1].y, z+bottomPent[i+1].z);
|
||||
vertex(x+bottomPent[0].x, y+bottomPent[0].y, z+bottomPent[0].z);
|
||||
endShape(CLOSE);
|
||||
|
||||
beginShape();
|
||||
vertex(x+bottomPent[0].x, y+bottomPent[0].y, z+bottomPent[0].z);
|
||||
vertex(x+topPent[i].x, y+topPent[i].y, z+topPent[i].z);
|
||||
vertex(x+topPent[i+1].x, y+topPent[i+1].y, z+topPent[i+1].z);
|
||||
endShape(CLOSE);
|
||||
} else if (i==topPent.length-1) {
|
||||
beginShape();
|
||||
vertex(x+topPent[i].x, y+topPent[i].y, z+topPent[i].z);
|
||||
vertex(x+bottomPent[0].x, y+bottomPent[0].y, z+bottomPent[0].z);
|
||||
vertex(x+bottomPent[1].x, y+bottomPent[1].y, z+bottomPent[1].z);
|
||||
endShape(CLOSE);
|
||||
|
||||
beginShape();
|
||||
vertex(x+bottomPent[1].x, y+bottomPent[1].y, z+bottomPent[1].z);
|
||||
vertex(x+topPent[i].x, y+topPent[i].y, z+topPent[i].z);
|
||||
vertex(x+topPent[0].x, y+topPent[0].y, z+topPent[0].z);
|
||||
endShape(CLOSE);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
class Tetrahedron extends PlatonicSolid {
|
||||
|
||||
// Tetrahedron
|
||||
float x, y, z;
|
||||
float radius;
|
||||
float a;
|
||||
PVector[] vert = new PVector[4];
|
||||
int[][] faces;
|
||||
|
||||
// constructor
|
||||
Tetrahedron(float radius) {
|
||||
this.radius = radius;
|
||||
a = radius*0.6666;
|
||||
vert[0] = new PVector( a, a, a ); // vertex 1
|
||||
vert[1] = new PVector(-a, -a, a ); // vertex 2
|
||||
vert[2] = new PVector(-a, a, -a ); // vertex 3
|
||||
vert[3] = new PVector( a, -a, -a ); // vertex 4
|
||||
}
|
||||
|
||||
// draws tetrahedron
|
||||
void create() {
|
||||
super.create();
|
||||
beginShape(TRIANGLE_STRIP);
|
||||
vertex(vert[0].x, vert[0].y, vert[0].z); // vertex 1
|
||||
vertex(vert[1].x, vert[1].y, vert[1].z); // vertex 2
|
||||
vertex(vert[2].x, vert[2].y, vert[2].z); // vertex 3
|
||||
vertex(vert[3].x, vert[3].y, vert[3].z); // vertex 4
|
||||
vertex(vert[0].x, vert[0].y, vert[0].z); // vertex 1
|
||||
vertex(vert[1].x, vert[1].y, vert[1].z); // vertex 2
|
||||
vertex(vert[3].x, vert[3].y, vert[3].z); // vertex 4
|
||||
vertex(vert[2].x, vert[2].y, vert[2].z); // vertex 3
|
||||
vertex(vert[1].x, vert[1].y, vert[1].z); // vertex 2
|
||||
endShape(CLOSE);
|
||||
}
|
||||
}
|
||||
|
||||
class Hexahedron extends PlatonicSolid {
|
||||
|
||||
// Tetrahedron
|
||||
float x, y, z;
|
||||
float radius;
|
||||
float a;
|
||||
PVector[] vert = new PVector[8];
|
||||
int[][] faces;
|
||||
|
||||
// constructor
|
||||
Hexahedron(float radius) {
|
||||
this.radius = radius;
|
||||
|
||||
a = radius/1.1414;
|
||||
faces = new int[6][4];
|
||||
vert[0] = new PVector( a, a, a );
|
||||
vert[1] = new PVector( a, a, -a );
|
||||
vert[2] = new PVector( a, -a, -a );
|
||||
vert[3] = new PVector( a, -a, a );
|
||||
vert[4] = new PVector( -a, -a, a );
|
||||
vert[5] = new PVector( -a, a, a );
|
||||
vert[6] = new PVector( -a, a, -a );
|
||||
vert[7] = new PVector( -a, -a, -a );
|
||||
|
||||
faces[0] = new int[] {0, 1, 2, 3};
|
||||
faces[1] = new int[] {4, 5, 6, 7};
|
||||
faces[2] = new int[] {0, 3, 4, 5};
|
||||
faces[3] = new int[] {1, 2, 7, 6};
|
||||
faces[4] = new int[] {2, 3, 4, 7};
|
||||
faces[5] = new int[] {0, 5, 6, 1};
|
||||
}
|
||||
|
||||
// draws hexahedron
|
||||
void create() {
|
||||
super.create();
|
||||
for (int i=0; i<6; i++)
|
||||
{
|
||||
beginShape();
|
||||
for (int j=0; j<4; j++)
|
||||
{
|
||||
vertex(vert[faces[i][j]].x, vert[faces[i][j]].y, vert[faces[i][j]].z);
|
||||
}
|
||||
endShape();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class Octahedron extends PlatonicSolid {
|
||||
|
||||
// Octahedron
|
||||
float x, y, z;
|
||||
float radius;
|
||||
|
||||
float a;
|
||||
PVector[] vert = new PVector[6];
|
||||
int[][] faces;
|
||||
|
||||
// constructor
|
||||
Octahedron(float radius) {
|
||||
this.radius = radius;
|
||||
a = radius;
|
||||
vert[0] = new PVector( a, 0, 0 );
|
||||
vert[1] = new PVector( 0, a, 0 );
|
||||
vert[2] = new PVector( 0, 0, a );
|
||||
vert[3] = new PVector( -a, 0, 0 );
|
||||
vert[4] = new PVector( 0, -a, 0 );
|
||||
vert[5] = new PVector( 0, 0, -a );
|
||||
}
|
||||
|
||||
// draws octahedron
|
||||
void create() {
|
||||
super.create();
|
||||
beginShape(TRIANGLE_FAN);
|
||||
vertex(vert[4].x, vert[4].y, vert[4].z);
|
||||
vertex(vert[0].x, vert[0].y, vert[0].z);
|
||||
vertex(vert[2].x, vert[2].y, vert[2].z);
|
||||
vertex(vert[3].x, vert[3].y, vert[3].z);
|
||||
vertex(vert[5].x, vert[5].y, vert[5].z);
|
||||
vertex(vert[0].x, vert[0].y, vert[0].z);
|
||||
endShape();
|
||||
|
||||
beginShape(TRIANGLE_FAN);
|
||||
vertex(vert[1].x, vert[1].y, vert[1].z);
|
||||
vertex(vert[0].x, vert[0].y, vert[0].z);
|
||||
vertex(vert[2].x, vert[2].y, vert[2].z);
|
||||
vertex(vert[3].x, vert[3].y, vert[3].z);
|
||||
vertex(vert[5].x, vert[5].y, vert[5].z);
|
||||
vertex(vert[0].x, vert[0].y, vert[0].z);
|
||||
endShape();
|
||||
}
|
||||
}
|
||||
|
||||
class Dodecahedron extends PlatonicSolid {
|
||||
|
||||
// Dodecahedron
|
||||
float x, y, z;
|
||||
float radius;
|
||||
|
||||
float a, b, c;
|
||||
PVector[] vert;
|
||||
int[][] faces;
|
||||
|
||||
// constructor
|
||||
Dodecahedron(float radius) {
|
||||
this.radius = radius;
|
||||
|
||||
a = radius/1.618033989;
|
||||
b = radius;
|
||||
c = 0.618033989*a;
|
||||
faces = new int[12][5];
|
||||
vert = new PVector[20];
|
||||
vert[ 0] = new PVector(a, a, a);
|
||||
vert[ 1] = new PVector(a, a, -a);
|
||||
vert[ 2] = new PVector(a, -a, a);
|
||||
vert[ 3] = new PVector(a, -a, -a);
|
||||
vert[ 4] = new PVector(-a, a, a);
|
||||
vert[ 5] = new PVector(-a, a, -a);
|
||||
vert[ 6] = new PVector(-a, -a, a);
|
||||
vert[ 7] = new PVector(-a, -a, -a);
|
||||
vert[ 8] = new PVector(0, c, b);
|
||||
vert[ 9] = new PVector(0, c, -b);
|
||||
vert[10] = new PVector(0, -c, b);
|
||||
vert[11] = new PVector(0, -c, -b);
|
||||
vert[12] = new PVector(c, b, 0);
|
||||
vert[13] = new PVector(c, -b, 0);
|
||||
vert[14] = new PVector(-c, b, 0);
|
||||
vert[15] = new PVector(-c, -b, 0);
|
||||
vert[16] = new PVector(b, 0, c);
|
||||
vert[17] = new PVector(b, 0, -c);
|
||||
vert[18] = new PVector(-b, 0, c);
|
||||
vert[19] = new PVector(-b, 0, -c);
|
||||
|
||||
faces[ 0] = new int[] {0, 16, 2, 10, 8};
|
||||
faces[ 1] = new int[] {0, 8, 4, 14, 12};
|
||||
faces[ 2] = new int[] {16, 17, 1, 12, 0};
|
||||
faces[ 3] = new int[] {1, 9, 11, 3, 17};
|
||||
faces[ 4] = new int[] {1, 12, 14, 5, 9};
|
||||
faces[ 5] = new int[] {2, 13, 15, 6, 10};
|
||||
faces[ 6] = new int[] {13, 3, 17, 16, 2};
|
||||
faces[ 7] = new int[] {3, 11, 7, 15, 13};
|
||||
faces[ 8] = new int[] {4, 8, 10, 6, 18};
|
||||
faces[ 9] = new int[] {14, 5, 19, 18, 4};
|
||||
faces[10] = new int[] {5, 19, 7, 11, 9};
|
||||
faces[11] = new int[] {15, 7, 19, 18, 6};
|
||||
}
|
||||
|
||||
// draws dodecahedron
|
||||
void create() {
|
||||
super.create();
|
||||
for (int i=0; i<12; i++)
|
||||
{
|
||||
beginShape();
|
||||
for (int j=0; j<5; j++)
|
||||
{
|
||||
vertex(vert[faces[i][j]].x, vert[faces[i][j]].y, vert[faces[i][j]].z);
|
||||
}
|
||||
endShape();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,63 @@
|
|||
/*
|
||||
s180107 Platonic Solids
|
||||
(c)2018 Alexandre B A Villares
|
||||
https://abav.lugaralgum.com/sketch-a-day
|
||||
*/
|
||||
|
||||
PlatonicSolid[] solids;
|
||||
float r_x = 0;
|
||||
float r_y = 0;
|
||||
|
||||
void setup() {
|
||||
size(500, 500, P3D);
|
||||
//strokeCap(ROUND);
|
||||
smooth();
|
||||
noStroke();
|
||||
fill(127);
|
||||
colorMode(HSB);
|
||||
//strokeWeight(3);
|
||||
//stroke(200, 0, 0);
|
||||
solids = new PlatonicSolid[100];
|
||||
for (int i = 0; i<100; i++) {
|
||||
solids[i] = PlatonicFactory((int)random(5), color(random(256),255,255));
|
||||
}
|
||||
}
|
||||
|
||||
void draw() {
|
||||
r_x += 0.02;
|
||||
r_y += 0.01;
|
||||
background(0);
|
||||
lights();
|
||||
for (int i = 0; i<100; i++) {
|
||||
int x = x_from_i(i, 10);
|
||||
int y = y_from_i(i, 10, 10);
|
||||
pushMatrix();
|
||||
{
|
||||
translate(25 + x *50, 25 + y *50);
|
||||
pushMatrix();
|
||||
{
|
||||
pushStyle();
|
||||
if (dist(mouseX, mouseY, 25 + x *50, 25 + y *50)<25) {
|
||||
scale(2);
|
||||
translate(0, 0, 30);
|
||||
stroke(255);
|
||||
}
|
||||
rotateX(r_y);
|
||||
rotateY(r_x);
|
||||
solids[i].create();
|
||||
popStyle();
|
||||
}
|
||||
popMatrix();
|
||||
}
|
||||
popMatrix();
|
||||
}
|
||||
// if (frameCount < 200){ saveFrame("###.tga");}
|
||||
}
|
||||
|
||||
int x_from_i(int idx, int max_x) {
|
||||
return idx % max_x;
|
||||
}
|
||||
|
||||
int y_from_i(int idx, int max_x, int max_y) {
|
||||
return (idx / max_x) % max_y;
|
||||
}
|
||||
Ładowanie…
Reference in New Issue