pending files commited

don't really knwon what i am doing here, commit pending code ...

Signed-off-by: philippe lhardy <philippe.lhardy@astrolabe.coop>
This commit is contained in:
2025-11-01 14:09:35 +01:00
parent 70744610cc
commit 65cc0f4c62
31 changed files with 313 additions and 12 deletions

View File

@@ -31,13 +31,13 @@ public class Maze3dSettings
void createSettingsGui() {
if (params != null) {
IntegerField xl = new IntegerField("width",params.getXl());
xl = new IntegerField("width",params.getXl());
addField(xl);
IntegerField zl = new IntegerField("height",params.getZl());
zl = new IntegerField("height",params.getZl());
addField(zl);
IntegerField yl = new IntegerField("depth",params.getYl());
yl = new IntegerField("depth",params.getYl());
addField(yl);
reverse = new JCheckBox("reverse",params.isReverse());
@@ -52,6 +52,9 @@ public class Maze3dSettings
hg = new IntegerField(params.getHg());
addField(hg);
}
else {
System.err.println("params null");
}
}
Maze3dParams createParams()