We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62fcc75 commit 0cf4d4bCopy full SHA for 0cf4d4b
2 files changed
BaseBot.groovy
@@ -393,8 +393,11 @@ File botSTL = new File(dir.getAbsolutePath()+"/CaseBottom.stl")
393
if(!topSTL.exists()||!botSTL.exists()) {
394
println "Producing Case STL part"
395
def parts = new BoardMaker().makeCase()
396
+
397
for(CSG part:parts) {
- FileUtil.write(Paths.get(dir.getAbsolutePath()+"/"+part.getName()+".stl"),
398
+ def filename=dir.getAbsolutePath()+"/"+part.getName()+".stl"
399
+ println "Writing STL cache "+filename
400
+ FileUtil.write(Paths.get(filename),
401
part.toStlString());
402
}
403
}else {
printbed.json
@@ -40,8 +40,8 @@
40
41
},
42
"CaseTop": {
43
- "x": 73.18341010787285,
44
- "y": 90.98000445653607,
+ "x": 75.09534412852791,
+ "y": 90.80999755859375,
45
"z": 0.0,
46
"rotation": {
47
"storage": {
0 commit comments