You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, STL files are exported with names set to the corresponding part name. This will result in error under the following circumstance:
Assembly
|- Sub Assembly A
|- Part A
|- Part ...
|- Sub Assembly B
|- Part A
|- Part ...
|- Sub Assembly ...
Part A in Assembly A and B will be exported to be a same STL file. However, this will result in error in offset, since the assembly origin in Sub Assembly A and B are not necessarily the same. This will result in some meshes offseted by some distance from their correct location in the visual viewer.
To solve this, one possible solution is to allow the option to name the exported STL files in terms of SubAssemblyName_PartName.stl
e.g. instead of part_a.stl, we will have sub_assembly_a_part_a.stl and sub_assembly_b_part_a.stl.
The text was updated successfully, but these errors were encountered:
Currently, STL files are exported with names set to the corresponding part name. This will result in error under the following circumstance:
Part A in Assembly A and B will be exported to be a same STL file. However, this will result in error in offset, since the assembly origin in Sub Assembly A and B are not necessarily the same. This will result in some meshes offseted by some distance from their correct location in the visual viewer.
To solve this, one possible solution is to allow the option to name the exported STL files in terms of SubAssemblyName_PartName.stl
e.g. instead of
part_a.stl
, we will havesub_assembly_a_part_a.stl
andsub_assembly_b_part_a.stl
.The text was updated successfully, but these errors were encountered: