Skip to content

Commit 0cf4d4b

Browse files
committed
adding print
1 parent 62fcc75 commit 0cf4d4b

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

BaseBot.groovy

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,8 +393,11 @@ File botSTL = new File(dir.getAbsolutePath()+"/CaseBottom.stl")
393393
if(!topSTL.exists()||!botSTL.exists()) {
394394
println "Producing Case STL part"
395395
def parts = new BoardMaker().makeCase()
396+
396397
for(CSG part:parts) {
397-
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),
398401
part.toStlString());
399402
}
400403
}else {

printbed.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@
4040
}
4141
},
4242
"CaseTop": {
43-
"x": 73.18341010787285,
44-
"y": 90.98000445653607,
43+
"x": 75.09534412852791,
44+
"y": 90.80999755859375,
4545
"z": 0.0,
4646
"rotation": {
4747
"storage": {

0 commit comments

Comments
 (0)