Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rotation correction bottom assembly #395

Merged
merged 1 commit into from
Jan 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 8 additions & 18 deletions fabrication.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,24 +91,14 @@ def fix_rotation(self, footprint):

def rotate(self, footprint, rotation, correction):
"""Calculate the actual correction."""
if footprint.GetLayer() == 0:
rotation = (rotation + int(correction)) % 360
self.logger.info(
"Fixed rotation of %s (%s / %s) on Top Layer by %d degrees",
footprint.GetReference(),
footprint.GetValue(),
footprint.GetFPID().GetLibItemName(),
correction,
)
else:
rotation = (rotation - int(correction)) % 360
self.logger.info(
"Fixed rotation of %s (%s / %s) on Bottom Layer by %d degrees",
footprint.GetReference(),
footprint.GetValue(),
footprint.GetFPID().GetLibItemName(),
correction,
)
rotation = (rotation + int(correction)) % 360
self.logger.info(
"Fixed rotation of %s (%s / %s) on Top Layer by %d degrees",
footprint.GetReference(),
footprint.GetValue(),
footprint.GetFPID().GetLibItemName(),
correction,
)
return rotation

def get_position(self, footprint):
Expand Down