Compare commits
2 Commits
b63643b153
...
cbf1d1b275
Author | SHA1 | Date | |
---|---|---|---|
cbf1d1b275 | |||
46698319f6 |
@ -99,7 +99,7 @@ class AHB_ExportPartsList:
|
||||
mass_str = str(int(part.mass + 0.5))
|
||||
elif part.mass >= 0:
|
||||
mass_str = str(int(part.mass*10 + 0.5) / 10.0)
|
||||
f.write(part.document + ", " + part.reference + "," + part.material + "," + str(int(part.size[0]+0.5)) + "," + str(int(part.size[1]+0.5)) + "," + str(int(part.size[2]+0.5)) + "," + str(int(part.volume/100+0.5)/10.0) + "," + mass_str + ", " + str(part.count) + "\n")
|
||||
f.write(part.document + "," + part.reference + "," + part.material + "," + str(int(part.size[0]+0.5)) + "," + str(int(part.size[1]+0.5)) + "," + str(int(part.size[2]+0.5)) + "," + str(int(part.volume/100+0.5)/10.0) + "," + mass_str + ", " + str(part.count) + "\n")
|
||||
print("Part list exported to " + file_name)
|
||||
|
||||
from ahb_command import AHB_CommandWrapper
|
||||
|
@ -264,6 +264,9 @@ class RasterView:
|
||||
tmp_doc_view.fitAll()
|
||||
tmp_doc.removeObject(viewVolumeLink.Name)
|
||||
sceneGroup.ViewObject.Visibility = True
|
||||
print_verbose("Near=" + str(cam.nearDistance.getValue()) + ", far="+str(cam.farDistance.getValue()))
|
||||
cam.nearDistance.setValue(cam.nearDistance.getValue() - 1000)
|
||||
cam.farDistance.setValue(cam.farDistance.getValue() + 1000)
|
||||
|
||||
viewVolume = cam.getViewVolume(0.0)
|
||||
self.image_view.Assembly_handbook_ViewVolumeWidth = viewVolume.getWidth()
|
||||
|
Loading…
Reference in New Issue
Block a user