Lev Lev
unread,Oct 10, 2022, 3:04:45 PM10/10/22Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to KiCad Developers
Dear developers,
I'm trying to port my plotting python script to v6. I'm missing the
GetAuxOrigin() method from the board class.
Do you know how to get this?
I need a wxpoint type for offset to the
drlwriter.SetOptions( mirror, minimalHeader, offset, mergeNPTH )
call.
offset = bord.GetPosition()
does something, but this is not what I wanted; the drill files will have
some offset I don't want.
I can set the offset manually by issuing
offset = wxPointMM(100,100)
but I want this to be automatically detected.
Moreover, I want my XY data to be relative to the aux_axis_origin.
Any help are welcome.
Thanks,
Lev