Home
last modified time | relevance | path

Searched refs:copperLayerCount (Results 1 – 6 of 6) sorted by relevance

/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/pcbnew/specctra_import_export/
H A Dspecctra_import.cpp189 int copperLayerCount = m_sessionBoard->GetCopperLayerCount(); in makeVIA() local
240 else if( shapeCount == copperLayerCount ) in makeVIA()
298 || (topLayerNdx==copperLayerCount-2 && botLayerNdx==copperLayerCount-1)) in makeVIA()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/pcbnew/board_stackup_manager/
H A Dboard_stackup.cpp503 int copperLayerCount = aSettings ? aSettings->GetCopperLayerCount() : B_Cu+1; in BuildDefaultStackupList() local
508 int activeCuLayerCount = copperLayerCount; in BuildDefaultStackupList()
550 for( int ii = 0; ii < copperLayerCount; ii++ ) in BuildDefaultStackupList()
557 if( ii == copperLayerCount-1 ) in BuildDefaultStackupList()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/pcbnew/
H A Dpcb_track.cpp293 int copperLayerCount = GetBoard()->GetCopperLayerCount(); in Flip() local
294 SetLayer( FlipLayer( GetLayer(), copperLayerCount ) ); in Flip()
313 int copperLayerCount = GetBoard()->GetCopperLayerCount(); in Flip() local
314 SetLayer( FlipLayer( GetLayer(), copperLayerCount ) ); in Flip()
333 int copperLayerCount = GetBoard()->GetCopperLayerCount(); in Flip() local
337 top_layer = FlipLayer( top_layer, copperLayerCount ); in Flip()
338 bottom_layer = FlipLayer( bottom_layer, copperLayerCount ); in Flip()
H A Dzone.cpp750 int copperLayerCount = GetBoard()->GetCopperLayerCount(); in Flip() local
753 SetLayerSet( FlipLayerMask( GetLayerSet(), copperLayerCount ) ); in Flip()
755 SetLayer( FlipLayer( GetLayer(), copperLayerCount ) ); in Flip()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/pcbnew/tools/
H A Dpcb_control.cpp1147 int copperLayerCount = brd->GetCopperLayerCount(); in AppendBoard() local
1149 if( copperLayerCount > initialCopperLayerCount ) in AppendBoard()
1150 brd->SetCopperLayerCount( copperLayerCount ); in AppendBoard()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/pcbnew/plugins/kicad/
H A Dpcb_parser.cpp1593 int copperLayerCount = 0; in parseLayers() local
1646 copperLayerCount = cu.size(); in parseLayers()
1699 if( copperLayerCount < 2 || (copperLayerCount % 2) != 0 ) in parseLayers()
1701 wxString err = wxString::Format( _( "%d is not a valid layer count" ), copperLayerCount ); in parseLayers()
1706 m_board->SetCopperLayerCount( copperLayerCount ); in parseLayers()