Files
processing4/android/examples/Topics/Geometry/Icosahedra/Dimension3D.pde
2012-09-05 23:50:25 +00:00

11 lines
136 B
Plaintext

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