-
Notifications
You must be signed in to change notification settings - Fork 9
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
Why is subtraction used in _XACTUAL calculation #1
Comments
oh, I think i got it. and i found that the die lines in the output result map is different with another [software's.].
after i edit the line Line 77 in 8364577
and Line 91 in 8364577
to die_x_lines = -self.center_location[0] + (i * self.die_pitch[0]) die_y_lines = -self.center_location[1] + (i * self.die_pitch[1]) ,then they are exactly the same. so maybe there shoud be a minus in die lines calculation? |
Issue Number: #1 Found issue with scribe lines not aligning with third party software Resolved by adding negative to both `die_x_lines` and `die_y_lines` Thank you, orangeccc for the opening this bug report.
Nice find! |
hi,
Good work!
I got a question about your code.
Why is subtraction used in _XACTUAL at
klarfkit/klarfkit/klarfkit.py
Lines 58 to 59 in 8364577
I think maybe it should be
df['_XACTUAL'] = (df['XINDEX'] * self.die_pitch[0]) + df['XREL'] + self.center_location[0]
df['_YACTUAL'] = (df['YINDEX'] * self.die_pitch[1]) + df['YREL'] + self.center_location[1]
?The text was updated successfully, but these errors were encountered: