Home
last modified time | relevance | path

Searched refs:aKeepout (Results 1 – 3 of 3) sorted by relevance

/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/pcbnew/router/
H A Dpns_item.cpp59 []( const ZONE* aKeepout, const BOARD_ITEM* aOther ) in collideSimple()
63 if( aKeepout->GetDoNotAllowTracks() && aOther->IsType( TRACK_TYPES ) ) in collideSimple()
66 if( aKeepout->GetDoNotAllowVias() && aOther->Type() == PCB_VIA_T ) in collideSimple()
69 if( aKeepout->GetDoNotAllowPads() && aOther->Type() == PCB_PAD_T ) in collideSimple()
73 if( aKeepout->GetDoNotAllowFootprints() && aOther->Type() == PCB_PAD_T ) in collideSimple()
75 return !aKeepout->GetParentFootprint() in collideSimple()
76 || aKeepout->GetParentFootprint() != aOther->GetParentFootprint(); in collideSimple()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/pcbnew/tools/
H A Dzone_create_helper.h91 std::unique_ptr<ZONE> createNewZone( bool aKeepout );
H A Dzone_create_helper.cpp57 std::unique_ptr<ZONE> ZONE_CREATE_HELPER::createNewZone( bool aKeepout ) in createNewZone() argument