Browse Source
Pcbnew: fix Bug #1089120. Also change "Length Die" expression to "Length Pad To Die" in code
pull/1/head
Pcbnew: fix Bug #1089120. Also change "Length Die" expression to "Length Pad To Die" in code
pull/1/head
18 changed files with 70 additions and 88 deletions
-
1pcbnew/CMakeLists.txt
-
24pcbnew/class_board.cpp
-
8pcbnew/class_board.h
-
4pcbnew/class_module.cpp
-
10pcbnew/class_netinfo_item.cpp
-
10pcbnew/class_pad.cpp
-
6pcbnew/class_pad.h
-
14pcbnew/class_track.cpp
-
10pcbnew/dialogs/dialog_pad_properties.cpp
-
6pcbnew/dialogs/dialog_pad_properties_base.cpp
-
6pcbnew/dialogs/dialog_pad_properties_base.fbp
-
2pcbnew/dialogs/dialog_pad_properties_base.h
-
10pcbnew/editrack.cpp
-
4pcbnew/kicad_plugin.cpp
-
6pcbnew/legacy_plugin.cpp
-
2pcbnew/pcb_parser.cpp
-
10pcbnew/tr_modif.cpp
-
25pcbnew/trpiste.cpp
@ -1,25 +0,0 @@ |
|||
/**
|
|||
* @file trpiste.cpp |
|||
* @brief Routine for plotting traces. |
|||
*/ |
|||
|
|||
#include <fctsys.h>
|
|||
#include <gr_basic.h>
|
|||
#include <common.h>
|
|||
#include <trigo.h>
|
|||
|
|||
#include <class_track.h>
|
|||
|
|||
#include <pcbnew.h>
|
|||
#include <protos.h>
|
|||
|
|||
|
|||
void DrawTraces( EDA_DRAW_PANEL* panel, wxDC* DC, TRACK* aTrackList, int nbsegment, |
|||
GR_DRAWMODE draw_mode ) |
|||
{ |
|||
// preserve the start of the list for debugging.
|
|||
for( TRACK* track = aTrackList; nbsegment > 0 && track; nbsegment--, track = track->Next() ) |
|||
{ |
|||
track->Draw( panel, DC, draw_mode ); |
|||
} |
|||
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue