Skip to content

Commit

Permalink
Tweaking RPi shelf assembly view settings
Browse files Browse the repository at this point in the history
  • Loading branch information
jmwright committed Sep 24, 2024
1 parent cb6f83b commit c6af2e7
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions nimble_build_system/cad/shelf.py
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,7 @@ def __init__(self,

self._device_depth_axis = "Y"
self._device_offset = (11.5, 42.5, 6.2)
self._device_explode_translation = (0.0, 0.0, 15.0)
self._device_explode_translation = (0.0, 0.0, 25.0)
# Gather all the mounting screw locations
self.hole_locations = [
(self.offset_x, self.dist_to_front),
Expand All @@ -778,36 +778,36 @@ def __init__(self,
self._fasteners = [
Screw(name=None,
position=self.hole_locations[0] + (7.0,),
explode_translation=(0.0, 0.0, 35.0),
explode_translation=(0.0, 0.0, 45.0),
size="M3-0.5",
fastener_type="iso7380_1",
axis="-Z",
length=6),
Screw(name=None,
position=self.hole_locations[1] + (7.0,),
explode_translation=(0.0, 0.0, 35.0),
explode_translation=(0.0, 0.0, 45.0),
size="M3-0.5",
fastener_type="iso7380_1",
axis="-Z",
length=6),
Screw(name=None,
position=self.hole_locations[2] + (7.0,),
explode_translation=(0.0, 0.0, 35.0),
explode_translation=(0.0, 0.0, 45.0),
size="M3-0.5",
fastener_type="iso7380_1",
axis="-Z",
length=6),
Screw(name=None,
position=self.hole_locations[3] + (7.0,),
explode_translation=(0.0, 0.0, 35.0),
explode_translation=(0.0, 0.0, 45.0),
size="M3-0.5",
fastener_type="iso7380_1",
axis="-Z",
length=6)
]
self.render_options = {
"view": "back-top-left",
"zoom": 1.25,
"view": "back-top-right",
"zoom": 1.5,
}

super().__init__(device,
Expand Down

0 comments on commit c6af2e7

Please sign in to comment.