Files
processing4/java/examples/3D/Form/Icosahedra/Dimension3D.pde
T
benfry eb64b2d4fc
2011-01-26 19:22:19 +00:00

11 lines
136 B
Plaintext
Executable File

class Dimension3D{
float w, h, d;
Dimension3D(float w, float h, float d){
this.w=w;
this.h=h;
this.d=d;
}
}