mirror of
https://github.com/processing/processing4.git
synced 2026-02-04 06:09:17 +01:00
11 lines
136 B
Plaintext
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;
|
|
}
|
|
}
|
|
|