CADSTAR PCB: DrillXoffset and DrillYoffset are zero when not specified
Fixes an issue that resulted in pads being loaded 100nm off from the original CADSTAR position.
This commit is contained in:
parent
6eb2e2a6e3
commit
ad2043eda6
|
@ -305,8 +305,8 @@ public:
|
||||||
long DrillOversize = UNDEFINED_VALUE;
|
long DrillOversize = UNDEFINED_VALUE;
|
||||||
long SlotLength = UNDEFINED_VALUE;
|
long SlotLength = UNDEFINED_VALUE;
|
||||||
long SlotOrientation = 0;
|
long SlotOrientation = 0;
|
||||||
long DrillXoffset = UNDEFINED_VALUE;
|
long DrillXoffset = 0;
|
||||||
long DrillYoffset = UNDEFINED_VALUE;
|
long DrillYoffset = 0;
|
||||||
|
|
||||||
std::map<LAYER_ID, PAD_SHAPE> Reassigns;
|
std::map<LAYER_ID, PAD_SHAPE> Reassigns;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue