Skip to content

Commit

Permalink
correcting the file extension for the freecad files
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Harrington committed Oct 15, 2024
1 parent 8264098 commit 653a5a7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public ArrayList<File> generateManufacturingParts(List<CSG> totalAssembly , File
return allCadStl;
}
private File makeFreecad(String nameBase,List<CSG> current ) throws IOException{
File blend = new File(nameBase + ".blend");
File blend = new File(nameBase + ".FCStd");
System.out.println("Writing "+blend.getAbsolutePath());
for(CSG tmp:current)
FreecadLoader.addCSGToFreeCAD( blend,tmp);
Expand Down

0 comments on commit 653a5a7

Please sign in to comment.