You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, this is a very nice module and a great addition to pcb-tools.
At the moment we try to create a panel for several PCBs, which are placed in arrays like 2x5, and it takes quite a lot of time as the Gerber data has to be loaded over and over from the disk for the placement, as offset() moves the whole data. Tried to do deepcopy() but this fails with a message about dict_values.
One workaround i can think of is to offset the data back, but this could probably lead to problems and slight offsets
Is there a way to create a copy of Gerber data and reuse it? Would speed up the process a lot.
The text was updated successfully, but these errors were encountered:
Thank you for using this library and your comment.
Unfortunately, There is no way to deprecate gerber object that can be merged individually at this moment.
I agree with you, parsing a gerber file should be only once each file.
I try to modify code.
Please wait a while until this modification is done.
Back to this topic after a while, as we're creating new panels and loading takes a lot of time, but with following workaround it seems to allow to clone the data:
Hi, this is a very nice module and a great addition to pcb-tools.
At the moment we try to create a panel for several PCBs, which are placed in arrays like 2x5, and it takes quite a lot of time as the Gerber data has to be loaded over and over from the disk for the placement, as offset() moves the whole data. Tried to do deepcopy() but this fails with a message about dict_values.
One workaround i can think of is to offset the data back, but this could probably lead to problems and slight offsets
Is there a way to create a copy of Gerber data and reuse it? Would speed up the process a lot.
The text was updated successfully, but these errors were encountered: