kicad-developers team mailing list archive
-
kicad-developers team
-
Mailing list archive
-
Message #01298
Re: Reducing number of drills - new utility.
-
To:
kicad-devel@xxxxxxxxxxxxxxx
-
From:
Dick Hollenbeck <dick@...>
-
Date:
Tue, 25 Mar 2008 11:38:44 -0500
-
In-reply-to:
<9d2084740803250902x5de7578vcfbbe288111f0c7@...>
-
User-agent:
Thunderbird 2.0.0.12 (X11/20080227)
Tim Hanson wrote:
Also concerning drills, kicad should store pairs of via pad & via
drills for the case of multiple via sizes. Right now I must use a
script to convert via pad to via drill size. The alternate via drill
should, i think, be depreciated in favor of pad-drill pairs.
thoughts?
Tim
class TRACK : public BOARD_ITEM
{
public:
int m_Width; // 0 = line, > 0 = tracks, bus ...
wxPoint m_Start; // Line start point
wxPoint m_End; // Line end point
int m_Shape; // vias: shape and type, Track = shape..
protected:
int m_Drill; // for vias: via drill (- 1 for
default value)
:
}
Each VIA instance does store a hole size and copper width, m_Drill and
m_Width, respectively above from class_track.h
So I assume you are referring to the "pick list" during via insertion.
Yes, for that I agree. See my discussion about net classes from 2-3
days ago.
Dick
References