mirror of
https://github.com/processing/processing4.git
synced 2026-04-07 13:10:26 +02: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;
|
|
}
|
|
}
|
|
|