pcb

Comment 7 for bug 1022076

Revision history for this message
Traumflug (mah-jump-ing) wrote :

Hmm. While watching out for the next bug, I find this in global.h:

/* This is the extents of a Pin or Via, depending on whether it's a
   hole or not. */
#define PIN_SIZE(pinptr) (TEST_FLAG(HOLEFLAG, (pinptr)) \
                          ? (pinptr)->DrillingHole \
                          : (pinptr)->Thickness)

Reads like a nice fit for this case.