KiCad PCB EDA Suite
|
#include <iterator>
#include <algorithm>
#include <wx/log.h>
#include <drc/drc_rtree.h>
#include <board_design_settings.h>
#include <board_commit.h>
#include <board.h>
#include <core/arraydim.h>
#include <core/kicad_algo.h>
#include <connectivity/connectivity_data.h>
#include <convert_shape_list_to_polygon.h>
#include <footprint.h>
#include <font/outline_font.h>
#include <length_delay_calculation/length_delay_calculation.h>
#include <lset.h>
#include <pcb_base_frame.h>
#include <pcb_track.h>
#include <pcb_marker.h>
#include <pcb_group.h>
#include <pcb_generator.h>
#include <pcb_target.h>
#include <pcb_shape.h>
#include <pcb_text.h>
#include <pcb_textbox.h>
#include <pcb_table.h>
#include <pcb_dimension.h>
#include <pgm_base.h>
#include <pcbnew_settings.h>
#include <progress_reporter.h>
#include <project.h>
#include <project/component_class_settings.h>
#include <project/net_settings.h>
#include <project/project_file.h>
#include <project/project_local_settings.h>
#include <ratsnest/ratsnest_data.h>
#include <reporter.h>
#include <tool/tool_manager.h>
#include <tool/selection_conditions.h>
#include <string_utils.h>
#include <thread_pool.h>
#include <zone.h>
#include <mutex>
#include <pcb_board_outline.h>
Go to the source code of this file.
Functions | |
std::set< wxString >::iterator | FindByFirstNFields (std::set< wxString > &strSet, const wxString &searchStr, char delimiter, int n) |
bool | sortPadsByXthenYCoord (PAD *const &aLH, PAD *const &aRH) |
Used by #GetSortedPadListByXCoord to sort a pad list by X coordinate value. | |
std::set< wxString >::iterator FindByFirstNFields | ( | std::set< wxString > & | strSet, |
const wxString & | searchStr, | ||
char | delimiter, | ||
int | n | ||
) |
Definition at line 357 of file board.cpp.
Referenced by BOARD::ResolveDRCExclusions().
Used by #GetSortedPadListByXCoord to sort a pad list by X coordinate value.
This function is used to build ordered pads lists
Definition at line 2435 of file board.cpp.
References PAD::GetPosition(), VECTOR2< T >::x, and VECTOR2< T >::y.
Referenced by BOARD::GetSortedPadListByXthenYCoord().