|
KiCad PCB EDA Suite
|
A PADSTACK defines the characteristics of a single or multi-layer pad, in the IPC sense of the word. More...
#include <padstack.h>
Classes | |
| struct | COPPER_LAYER_PROPS |
| The features of a padstack that can vary between copper layers All parameters are optional; leaving them un-set means "use parent/rule defaults" Pad clearances, margins, etc. More... | |
| struct | DRILL_PROPS |
| ! The properties of a padstack drill. Drill position is always the pad position (origin). More... | |
| struct | MASK_LAYER_PROPS |
| ! More... | |
| struct | POST_MACHINING_PROPS |
| struct | SHAPE_PROPS |
| ! More... | |
Public Types | |
| enum class | TYPE { NORMAL , VIA , MOUNTING } |
| ! More... | |
| enum class | MODE { NORMAL , FRONT_INNER_BACK , CUSTOM } |
| ! Copper geometry mode: controls how many unique copper layer shapes this padstack has More... | |
Public Member Functions | |
| PADSTACK (BOARD_ITEM *aParent) | |
| virtual | ~PADSTACK ()=default |
| PADSTACK (const PADSTACK &aOther) | |
| PADSTACK & | operator= (const PADSTACK &aOther) |
| bool | operator== (const PADSTACK &aOther) const |
| bool | operator!= (const PADSTACK &aOther) const |
| void | Serialize (google::protobuf::Any &aContainer) const override |
| Serializes this object to the given Any message. | |
| bool | Deserialize (const google::protobuf::Any &aContainer) override |
| Deserializes the given protobuf message into this object. | |
| double | Similarity (const PADSTACK &aOther) const |
| Return a measure of how likely the other object is to represent the same object. | |
| const LSET & | LayerSet () const |
| LSET & | LayerSet () |
| void | SetLayerSet (const LSET &aSet) |
| void | FlipLayers (int aCopperLayerCount) |
| Flips the padstack layers in the case that the pad's parent footprint is flipped to the other side of the board. | |
| PCB_LAYER_ID | StartLayer () const |
| PCB_LAYER_ID | EndLayer () const |
| MODE | Mode () const |
| void | SetMode (MODE aMode) |
| wxString | Name () const |
| ! Returns the name of this padstack in IPC-7351 format | |
| EDA_ANGLE | GetOrientation () const |
| void | SetOrientation (EDA_ANGLE aAngle) |
| DRILL_PROPS & | Drill () |
| const DRILL_PROPS & | Drill () const |
| DRILL_PROPS & | SecondaryDrill () |
| const DRILL_PROPS & | SecondaryDrill () const |
| DRILL_PROPS & | TertiaryDrill () |
| const DRILL_PROPS & | TertiaryDrill () const |
| POST_MACHINING_PROPS & | FrontPostMachining () |
| const POST_MACHINING_PROPS & | FrontPostMachining () const |
| POST_MACHINING_PROPS & | BackPostMachining () |
| const POST_MACHINING_PROPS & | BackPostMachining () const |
| UNCONNECTED_LAYER_MODE | UnconnectedLayerMode () const |
| void | SetUnconnectedLayerMode (UNCONNECTED_LAYER_MODE aMode) |
| COPPER_LAYER_PROPS & | CopperLayer (PCB_LAYER_ID aLayer) |
| const COPPER_LAYER_PROPS & | CopperLayer (PCB_LAYER_ID aLayer) const |
| MASK_LAYER_PROPS & | FrontOuterLayers () |
| const MASK_LAYER_PROPS & | FrontOuterLayers () const |
| MASK_LAYER_PROPS & | BackOuterLayers () |
| const MASK_LAYER_PROPS & | BackOuterLayers () const |
| std::optional< bool > | IsTented (PCB_LAYER_ID aSide) const |
| Checks if this padstack is tented (covered in soldermask) on the given side. | |
| std::optional< bool > | IsCovered (PCB_LAYER_ID aSide) const |
| std::optional< bool > | IsPlugged (PCB_LAYER_ID aSide) const |
| std::optional< bool > | IsCapped () const |
| std::optional< bool > | IsFilled () const |
| CUSTOM_SHAPE_ZONE_MODE | CustomShapeInZoneMode () const |
| void | SetCustomShapeInZoneMode (CUSTOM_SHAPE_ZONE_MODE aM) |
| void | ForEachUniqueLayer (const std::function< void(PCB_LAYER_ID)> &aMethod) const |
| Runs the given callable for each active unique copper layer in this padstack, meaning F_Cu for MODE::NORMAL; F_Cu, PADSTACK::INNER_LAYERS, and B_Cu for top/inner/bottom, and an arbitrary set of layers for full-custom padstacks. | |
| std::vector< PCB_LAYER_ID > | UniqueLayers () const |
| PCB_LAYER_ID | EffectiveLayerFor (PCB_LAYER_ID aLayer) const |
| Determines which geometry layer should be used for the given input layer. | |
| LSET | RelevantShapeLayers (const PADSTACK &aOther) const |
| Returns the set of layers that must be considered if checking one padstack against another. | |
| PAD_SHAPE | Shape (PCB_LAYER_ID aLayer) const |
| void | SetShape (PAD_SHAPE aShape, PCB_LAYER_ID aLayer) |
| void | SetSize (const VECTOR2I &aSize, PCB_LAYER_ID aLayer) |
| const VECTOR2I & | Size (PCB_LAYER_ID aLayer) const |
| PAD_DRILL_SHAPE | DrillShape () const |
| void | SetDrillShape (PAD_DRILL_SHAPE aShape) |
| VECTOR2I & | Offset (PCB_LAYER_ID aLayer) |
| const VECTOR2I & | Offset (PCB_LAYER_ID aLayer) const |
| PAD_SHAPE | AnchorShape (PCB_LAYER_ID aLayer) const |
| void | SetAnchorShape (PAD_SHAPE aShape, PCB_LAYER_ID aLayer) |
| VECTOR2I & | TrapezoidDeltaSize (PCB_LAYER_ID aLayer) |
| const VECTOR2I & | TrapezoidDeltaSize (PCB_LAYER_ID aLayer) const |
| double | RoundRectRadiusRatio (PCB_LAYER_ID aLayer) const |
| void | SetRoundRectRadiusRatio (double aRatio, PCB_LAYER_ID aLayer) |
| int | RoundRectRadius (PCB_LAYER_ID aLayer) const |
| void | SetRoundRectRadius (double aRadius, PCB_LAYER_ID aLayer) |
| double | ChamferRatio (PCB_LAYER_ID aLayer) const |
| void | SetChamferRatio (double aRatio, PCB_LAYER_ID aLayer) |
| int & | ChamferPositions (PCB_LAYER_ID aLayer) |
| const int & | ChamferPositions (PCB_LAYER_ID aLayer) const |
| void | SetChamferPositions (int aPositions, PCB_LAYER_ID aLayer) |
| std::optional< int > & | Clearance (PCB_LAYER_ID aLayer=F_Cu) |
| const std::optional< int > & | Clearance (PCB_LAYER_ID aLayer=F_Cu) const |
| std::optional< int > & | SolderMaskMargin (PCB_LAYER_ID aLayer=F_Cu) |
| const std::optional< int > & | SolderMaskMargin (PCB_LAYER_ID aLayer=F_Cu) const |
| std::optional< int > & | SolderPasteMargin (PCB_LAYER_ID aLayer=F_Cu) |
| const std::optional< int > & | SolderPasteMargin (PCB_LAYER_ID aLayer=F_Cu) const |
| std::optional< double > & | SolderPasteMarginRatio (PCB_LAYER_ID aLayer=F_Cu) |
| const std::optional< double > & | SolderPasteMarginRatio (PCB_LAYER_ID aLayer=F_Cu) const |
| std::optional< ZONE_CONNECTION > & | ZoneConnection (PCB_LAYER_ID aLayer=F_Cu) |
| const std::optional< ZONE_CONNECTION > & | ZoneConnection (PCB_LAYER_ID aLayer=F_Cu) const |
| std::optional< int > & | ThermalSpokeWidth (PCB_LAYER_ID aLayer=F_Cu) |
| const std::optional< int > & | ThermalSpokeWidth (PCB_LAYER_ID aLayer=F_Cu) const |
| std::optional< int > & | ThermalGap (PCB_LAYER_ID aLayer=F_Cu) |
| const std::optional< int > & | ThermalGap (PCB_LAYER_ID aLayer=F_Cu) const |
| EDA_ANGLE | DefaultThermalSpokeAngleForShape (PCB_LAYER_ID aLayer=F_Cu) const |
| EDA_ANGLE | ThermalSpokeAngle (PCB_LAYER_ID aLayer=F_Cu) const |
| void | SetThermalSpokeAngle (EDA_ANGLE aAngle, PCB_LAYER_ID aLayer=F_Cu) |
| std::vector< std::shared_ptr< PCB_SHAPE > > & | Primitives (PCB_LAYER_ID aLayer) |
| const std::vector< std::shared_ptr< PCB_SHAPE > > & | Primitives (PCB_LAYER_ID aLayer) const |
| void | AddPrimitive (PCB_SHAPE *aShape, PCB_LAYER_ID aLayer) |
| Adds a custom shape primitive to the padstack. | |
| void | AppendPrimitives (const std::vector< std::shared_ptr< PCB_SHAPE > > &aPrimitivesList, PCB_LAYER_ID aLayer) |
| Appends a copy of each shape in the given list to this padstack's custom shape list. | |
| void | ReplacePrimitives (const std::vector< std::shared_ptr< PCB_SHAPE > > &aPrimitivesList, PCB_LAYER_ID aLayer) |
| Clears the existing primitive list (freeing the owned shapes) and adds copies of the given shapes to the padstack for the given layer. | |
| void | ClearPrimitives (PCB_LAYER_ID aLayer) |
| BACKDRILL_MODE | GetBackdrillMode () const |
| void | SetBackdrillMode (BACKDRILL_MODE aMode) |
| std::optional< int > | GetBackdrillSize (bool aTop) const |
| void | SetBackdrillSize (bool aTop, std::optional< int > aSize) |
| PCB_LAYER_ID | GetBackdrillEndLayer (bool aTop) const |
| void | SetBackdrillEndLayer (bool aTop, PCB_LAYER_ID aLayer) |
Static Public Member Functions | |
| static int | Compare (const PADSTACK *aPadstackRef, const PADSTACK *aPadstackCmp) |
| Compare two padstacks and return 0 if they are equal. | |
Static Public Attributes | |
| static constexpr PCB_LAYER_ID | ALL_LAYERS = F_Cu |
| ! Temporary layer identifier to identify code that is not padstack-aware | |
| static constexpr PCB_LAYER_ID | INNER_LAYERS = In1_Cu |
| ! The layer identifier to use for "inner layers" on top/inner/bottom padstacks | |
Private Member Functions | |
| void | packCopperLayer (PCB_LAYER_ID aLayer, kiapi::board::types::PadStack &aProto) const |
| bool | unpackCopperLayer (const kiapi::board::types::PadStackLayer &aProto) |
Private Attributes | |
| BOARD_ITEM * | m_parent |
| ! The BOARD_ITEM this PADSTACK belongs to; will be used as the parent for owned shapes | |
| MODE | m_mode |
| ! The copper layer variation mode this padstack is in | |
| LSET | m_layerSet |
| ! The board layers that this padstack is active on | |
| wxString | m_customName |
| ! An override for the IPC-7351 padstack name | |
| EDA_ANGLE | m_orientation |
| ! The rotation of the pad relative to an outer reference frame | |
| std::unordered_map< PCB_LAYER_ID, COPPER_LAYER_PROPS > | m_copperProps |
| ! The properties applied to copper layers if they aren't overridden | |
| MASK_LAYER_PROPS | m_frontMaskProps |
| ! The overrides applied to front outer technical layers | |
| MASK_LAYER_PROPS | m_backMaskProps |
| ! The overrides applied to back outer technical layers | |
| UNCONNECTED_LAYER_MODE | m_unconnectedLayerMode |
| CUSTOM_SHAPE_ZONE_MODE | m_customShapeInZoneMode |
| How to build the custom shape in zone, to create the clearance area: CUSTOM_SHAPE_ZONE_MODE::OUTLINE = use pad shape CUSTOM_SHAPE_ZONE_MODE::CONVEXHULL = use the convex hull of the pad shape. | |
| DRILL_PROPS | m_drill |
| ! | |
| DRILL_PROPS | m_secondaryDrill |
| ! Secondary drill, used to define back-drilling starting from the bottom side | |
| DRILL_PROPS | m_tertiaryDrill |
| ! Tertiary drill, used to define back-drilling starting from the top side | |
| POST_MACHINING_PROPS | m_frontPostMachining |
| POST_MACHINING_PROPS | m_backPostMachining |
A PADSTACK defines the characteristics of a single or multi-layer pad, in the IPC sense of the word.
This means that a PCB_PAD has a padstack, but also a PCB_VIA. The padstack for a pad defines its geometry on copper, soldermask, and paste layers, as well as any drilling or milling associated with the pad (round or slot hole, back-drilling, etc). Padstacks also define thermal relief settings for all copper layers, clearance overrides for all copper layers, and potentially other properties in the future. In other words, the padstack defines most of the geometric features of a pad on all layers. It does not define electrical properties or other metadata.
For padstacks that do not vary between layers, F_Cu is used as the copper layer to store all padstack properties.
Definition at line 156 of file padstack.h.
|
strong |
! Copper geometry mode: controls how many unique copper layer shapes this padstack has
| Enumerator | |
|---|---|
| NORMAL | Shape is the same on all layers. |
| FRONT_INNER_BACK | Up to three shapes can be defined (F_Cu, inner copper layers, B_Cu) |
| CUSTOM | Shapes can be defined on arbitrary layers. |
Definition at line 169 of file padstack.h.
|
strong |
!
Padstack type, mostly for IPC-7351 naming and attributes Note that TYPE::MOUNTING is probably not currently supported by KiCad
| Enumerator | |
|---|---|
| NORMAL | Padstack for a footprint pad. |
| VIA | Padstack for a via. |
| MOUNTING | A mounting hole (plated or unplated, not associated with a footprint) |
Definition at line 161 of file padstack.h.
| PADSTACK::PADSTACK | ( | BOARD_ITEM * | aParent | ) |
Definition at line 40 of file padstack.cpp.
References ALL_LAYERS, ANGLE_0, ANGLE_45, B_Cu, CIRCLE, F_Cu, INHERITED, KEEP_ALL, m_copperProps, m_customShapeInZoneMode, m_drill, m_mode, m_orientation, m_parent, m_secondaryDrill, m_tertiaryDrill, m_unconnectedLayerMode, NORMAL, OUTLINE, UNDEFINED, and UNDEFINED_LAYER.
Referenced by Compare(), operator!=(), operator=(), operator==(), PADSTACK(), RelevantShapeLayers(), Similarity(), and ~PADSTACK().
|
virtualdefault |
References PADSTACK().
| PADSTACK::PADSTACK | ( | const PADSTACK & | aOther | ) |
Definition at line 67 of file padstack.cpp.
References CopperLayer(), ForEachUniqueLayer(), m_parent, and PADSTACK().
| void PADSTACK::AddPrimitive | ( | PCB_SHAPE * | aShape, |
| PCB_LAYER_ID | aLayer ) |
Adds a custom shape primitive to the padstack.
| aShape | is a shape to add as a custom primitive. Ownership is passed to this PADSTACK. |
| aLayer | is the padstack layer to add to. |
Definition at line 1150 of file padstack.cpp.
References CopperLayer(), and PADSTACK::COPPER_LAYER_PROPS::custom_shapes.
Referenced by PCB_IO_KICAD_SEXPR_PARSER::parsePadstack(), and unpackCopperLayer().
| PAD_SHAPE PADSTACK::AnchorShape | ( | PCB_LAYER_ID | aLayer | ) | const |
Definition at line 914 of file padstack.cpp.
References PADSTACK::SHAPE_PROPS::anchor_shape, CopperLayer(), and PADSTACK::COPPER_LAYER_PROPS::shape.
| void PADSTACK::AppendPrimitives | ( | const std::vector< std::shared_ptr< PCB_SHAPE > > & | aPrimitivesList, |
| PCB_LAYER_ID | aLayer ) |
Appends a copy of each shape in the given list to this padstack's custom shape list.
| aPrimitivesList | is a list of shapes to add copies of to this PADSTACK |
| aLayer | is the padstack layer to add to. |
Definition at line 1156 of file padstack.cpp.
References CopperLayer(), PADSTACK::COPPER_LAYER_PROPS::custom_shapes, m_parent, and EDA_ITEM::SetParent().
Referenced by ReplacePrimitives().
|
inline |
Definition at line 359 of file padstack.h.
References m_backMaskProps.
Referenced by Deserialize(), PCB_IO_KICAD_SEXPR::format(), PCB_IO_KICAD_SEXPR::format(), VIA_PROTECTION_UI_MIXIN::getViaConfiguration(), IsCovered(), IsPlugged(), IsTented(), PCB_IO_KICAD_SEXPR_PARSER::parsePadstack(), Serialize(), VIA_PROTECTION_UI_MIXIN::setViaConfiguration(), SolderMaskMargin(), SolderMaskMargin(), SolderPasteMargin(), SolderPasteMargin(), SolderPasteMarginRatio(), and SolderPasteMarginRatio().
|
inline |
Definition at line 360 of file padstack.h.
References m_backMaskProps.
|
inline |
Definition at line 347 of file padstack.h.
References m_backPostMachining.
Referenced by EXPORTER_STEP::buildFootprint3DShapes(), EXPORTER_STEP::buildTrack3DShape(), Deserialize(), PCB_IO_IPC2581::ensureBackdrillSpecs(), PCB_IO_KICAD_SEXPR::format(), PAD::GetEffectiveShape(), RENDER_3D_RAYTRACE_BASE::insertHole(), DIALOG_PAD_PROPERTIES::transferDataToPad(), and DIALOG_TRACK_VIA_PROPERTIES::TransferDataToWindow().
|
inline |
Definition at line 348 of file padstack.h.
References m_backPostMachining.
| int & PADSTACK::ChamferPositions | ( | PCB_LAYER_ID | aLayer | ) |
Definition at line 979 of file padstack.cpp.
References PADSTACK::SHAPE_PROPS::chamfered_rect_positions, CopperLayer(), and PADSTACK::COPPER_LAYER_PROPS::shape.
| const int & PADSTACK::ChamferPositions | ( | PCB_LAYER_ID | aLayer | ) | const |
Definition at line 985 of file padstack.cpp.
References PADSTACK::SHAPE_PROPS::chamfered_rect_positions, CopperLayer(), and PADSTACK::COPPER_LAYER_PROPS::shape.
| double PADSTACK::ChamferRatio | ( | PCB_LAYER_ID | aLayer | ) | const |
Definition at line 967 of file padstack.cpp.
References PADSTACK::SHAPE_PROPS::chamfered_rect_ratio, CopperLayer(), and PADSTACK::COPPER_LAYER_PROPS::shape.
| std::optional< int > & PADSTACK::Clearance | ( | PCB_LAYER_ID | aLayer = F_Cu | ) |
Definition at line 997 of file padstack.cpp.
References PADSTACK::COPPER_LAYER_PROPS::clearance, and CopperLayer().
Referenced by PCB_IO_KICAD_SEXPR::format(), and PCB_IO_KICAD_SEXPR_PARSER::parsePadstack().
| const std::optional< int > & PADSTACK::Clearance | ( | PCB_LAYER_ID | aLayer = F_Cu | ) | const |
Definition at line 1003 of file padstack.cpp.
References PADSTACK::COPPER_LAYER_PROPS::clearance, and CopperLayer().
| void PADSTACK::ClearPrimitives | ( | PCB_LAYER_ID | aLayer | ) |
Definition at line 1178 of file padstack.cpp.
References CopperLayer(), and PADSTACK::COPPER_LAYER_PROPS::custom_shapes.
Referenced by operator=(), ReplacePrimitives(), and unpackCopperLayer().
Compare two padstacks and return 0 if they are equal.
Definition at line 1342 of file padstack.cpp.
References PADSTACK().
Referenced by PAD::Compare().
| PADSTACK::COPPER_LAYER_PROPS & PADSTACK::CopperLayer | ( | PCB_LAYER_ID | aLayer | ) |
Definition at line 1184 of file padstack.cpp.
References ALL_LAYERS, B_Cu, F_Cu, FRONT_INNER_BACK, INNER_LAYERS, IsBackLayer(), IsFrontLayer(), m_copperProps, m_mode, and NORMAL.
Referenced by AddPrimitive(), AnchorShape(), AppendPrimitives(), ChamferPositions(), ChamferPositions(), ChamferRatio(), Clearance(), Clearance(), ClearPrimitives(), Deserialize(), Offset(), Offset(), operator==(), PADSTACK(), Primitives(), Primitives(), RoundRectRadiusRatio(), Serialize(), SetAnchorShape(), SetChamferPositions(), SetChamferRatio(), SetRoundRectRadiusRatio(), SetShape(), SetSize(), SetThermalSpokeAngle(), Shape(), Size(), ThermalGap(), ThermalGap(), ThermalSpokeAngle(), ThermalSpokeWidth(), ThermalSpokeWidth(), TrapezoidDeltaSize(), TrapezoidDeltaSize(), unpackCopperLayer(), ZoneConnection(), and ZoneConnection().
| const PADSTACK::COPPER_LAYER_PROPS & PADSTACK::CopperLayer | ( | PCB_LAYER_ID | aLayer | ) | const |
Definition at line 1203 of file padstack.cpp.
References ALL_LAYERS, B_Cu, F_Cu, FRONT_INNER_BACK, INNER_LAYERS, IsBackLayer(), IsFrontLayer(), m_copperProps, m_mode, and NORMAL.
|
inline |
Definition at line 378 of file padstack.h.
References m_customShapeInZoneMode.
| EDA_ANGLE PADSTACK::DefaultThermalSpokeAngleForShape | ( | PCB_LAYER_ID | aLayer = F_Cu | ) | const |
Definition at line 1111 of file padstack.cpp.
References ANGLE_45, ANGLE_90, CHAMFERED_RECT, OVAL, RECTANGLE, ROUNDRECT, and Shape().
Referenced by Deserialize(), and ThermalSpokeAngle().
|
overridevirtual |
Deserializes the given protobuf message into this object.
| aContainer | is an Any which should have a concrete type matching this object |
Reimplemented from SERIALIZABLE.
Definition at line 233 of file padstack.cpp.
References ALL_LAYERS, BackOuterLayers(), BackPostMachining(), CopperLayer(), COUNTERBORE, COUNTERSINK, DefaultThermalSpokeAngleForShape(), DEGREES_T, Drill(), PADSTACK::DRILL_PROPS::end, F_Cu, FromProtoEnum(), FrontOuterLayers(), FrontPostMachining(), INHERITED, PADSTACK::DRILL_PROPS::is_capped, PADSTACK::DRILL_PROPS::is_filled, m_mode, m_orientation, NOT_POST_MACHINED, SecondaryDrill(), SetLayerSet(), SetThermalSpokeAngle(), SetUnconnectedLayerMode(), PADSTACK::DRILL_PROPS::shape, PADSTACK::DRILL_PROPS::size, PADSTACK::MASK_LAYER_PROPS::solder_mask_margin, PADSTACK::MASK_LAYER_PROPS::solder_paste_margin, PADSTACK::MASK_LAYER_PROPS::solder_paste_margin_ratio, PADSTACK::DRILL_PROPS::start, TertiaryDrill(), PADSTACK::COPPER_LAYER_PROPS::thermal_gap, PADSTACK::COPPER_LAYER_PROPS::thermal_spoke_angle, PADSTACK::COPPER_LAYER_PROPS::thermal_spoke_width, UNDEFINED, UNDEFINED_LAYER, unpackCopperLayer(), kiapi::board::UnpackLayerSet(), kiapi::common::UnpackVector2(), and PADSTACK::COPPER_LAYER_PROPS::zone_connection.
|
inline |
Definition at line 335 of file padstack.h.
References m_drill.
Referenced by PCB_VIA::BottomLayer(), Deserialize(), PCB_IO_IPC2581::ensureBackdrillSpecs(), ZONE_FILLER::Fill(), PCB_VIA::FlashLayer(), PCB_IO_KICAD_SEXPR::format(), PCB_VIA::GetLayer(), VIA_PROTECTION_UI_MIXIN::getViaConfiguration(), PCB_VIA::IsBlindVia(), PCB_VIA::IsBuriedVia(), PCB_VIA::IsOnLayer(), PCB_VIA::LayerPair(), PCB_VIA::PCB_VIA(), PCB_VIA::SanitizeLayers(), PCB_VIA::SetBottomLayer(), PCB_VIA::SetLayer(), PCB_VIA::SetLayerPair(), PCB_VIA::SetLayerSet(), PCB_VIA::SetTopLayer(), VIA_PROTECTION_UI_MIXIN::setViaConfiguration(), and PCB_VIA::TopLayer().
|
inline |
Definition at line 336 of file padstack.h.
References m_drill.
| PAD_DRILL_SHAPE PADSTACK::DrillShape | ( | ) | const |
Definition at line 890 of file padstack.cpp.
References m_drill.
| PCB_LAYER_ID PADSTACK::EffectiveLayerFor | ( | PCB_LAYER_ID | aLayer | ) | const |
Determines which geometry layer should be used for the given input layer.
For example, for MODE::NORMAL, this will always be F_Cu, and for MODE::FRONT_INNER_BACK, this will be one of F_Cu, PADSTACK::INNER_LAYERS, and B_Cu depending on the input layer.
| aLayer | is a valid board layer |
Definition at line 1255 of file padstack.cpp.
References ALL_LAYERS, B_Cu, F_Cu, FRONT_INNER_BACK, INNER_LAYERS, IsBackLayer(), IsFrontLayer(), m_copperProps, m_mode, and NORMAL.
Referenced by PAD::GetEffectivePolygon(), and PAD::GetEffectiveShape().
| PCB_LAYER_ID PADSTACK::EndLayer | ( | ) | const |
Definition at line 1371 of file padstack.cpp.
References m_drill.
Referenced by TUNING_PROFILE_PARAMETERS_USER_DEFINED::getPropagationDelay().
| void PADSTACK::FlipLayers | ( | int | aCopperLayerCount | ) |
Flips the padstack layers in the case that the pad's parent footprint is flipped to the other side of the board.
Definition at line 1359 of file padstack.cpp.
| void PADSTACK::ForEachUniqueLayer | ( | const std::function< void(PCB_LAYER_ID)> & | aMethod | ) | const |
Runs the given callable for each active unique copper layer in this padstack, meaning F_Cu for MODE::NORMAL; F_Cu, PADSTACK::INNER_LAYERS, and B_Cu for top/inner/bottom, and an arbitrary set of layers for full-custom padstacks.
| aMethod | will be called once for each independent copper layer in the padstack |
Definition at line 1225 of file padstack.cpp.
References ALL_LAYERS, B_Cu, F_Cu, FRONT_INNER_BACK, INNER_LAYERS, m_copperProps, m_mode, and NORMAL.
Referenced by PAD::BuildEffectivePolygon(), PAD::BuildEffectiveShapes(), PAD::CheckPad(), PAD::Clone(), DRAWING_TOOL::DrawVia(), PAD::Flip(), PAD::FlipPrimitives(), PCB_IO_KICAD_SEXPR::format(), PCB_VIA::GetBoundingBox(), PAD::HitTest(), PAD::HitTest(), PAD::HitTest(), PCB_VIA::HitTest(), PCB_VIA::HitTest(), PAD::ImportSettingsFrom(), PAD::IsOnCopperLayer(), FOOTPRINT::cmp_pads::operator()(), operator=(), operator==(), padNeedsUpdate(), PADSTACK(), RelevantShapeLayers(), Serialize(), PNS_KICAD_IFACE_BASE::syncPad(), PNS_KICAD_IFACE_BASE::syncVia(), UniqueLayers(), and PAD::ViewBBox().
|
inline |
Definition at line 356 of file padstack.h.
References m_frontMaskProps.
Referenced by Deserialize(), PCB_IO_KICAD_SEXPR::format(), PCB_IO_KICAD_SEXPR::format(), VIA_PROTECTION_UI_MIXIN::getViaConfiguration(), IsCovered(), IsPlugged(), IsTented(), PCB_IO_KICAD_SEXPR_PARSER::parsePadstack(), Serialize(), VIA_PROTECTION_UI_MIXIN::setViaConfiguration(), SolderMaskMargin(), SolderMaskMargin(), SolderPasteMargin(), SolderPasteMargin(), SolderPasteMarginRatio(), and SolderPasteMarginRatio().
|
inline |
Definition at line 357 of file padstack.h.
References m_frontMaskProps.
|
inline |
Definition at line 344 of file padstack.h.
References m_frontPostMachining.
Referenced by EXPORTER_STEP::buildFootprint3DShapes(), EXPORTER_STEP::buildTrack3DShape(), Deserialize(), PCB_IO_IPC2581::ensureBackdrillSpecs(), PCB_IO_KICAD_SEXPR::format(), PAD::GetEffectiveShape(), RENDER_3D_RAYTRACE_BASE::insertHole(), DIALOG_PAD_PROPERTIES::transferDataToPad(), and DIALOG_TRACK_VIA_PROPERTIES::TransferDataToWindow().
|
inline |
Definition at line 345 of file padstack.h.
References m_frontPostMachining.
| PCB_LAYER_ID PADSTACK::GetBackdrillEndLayer | ( | bool | aTop | ) | const |
Definition at line 594 of file padstack.cpp.
References B_Cu, F_Cu, m_secondaryDrill, m_tertiaryDrill, and UNDEFINED_LAYER.
| BACKDRILL_MODE PADSTACK::GetBackdrillMode | ( | ) | const |
Definition at line 462 of file padstack.cpp.
References B_Cu, BACKDRILL_BOTH, BACKDRILL_BOTTOM, BACKDRILL_TOP, F_Cu, m_secondaryDrill, m_tertiaryDrill, and NO_BACKDRILL.
| std::optional< int > PADSTACK::GetBackdrillSize | ( | bool | aTop | ) | const |
Definition at line 537 of file padstack.cpp.
References B_Cu, F_Cu, m_secondaryDrill, and m_tertiaryDrill.
|
inline |
Definition at line 328 of file padstack.h.
References m_orientation.
| std::optional< bool > PADSTACK::IsCapped | ( | ) | const |
Definition at line 1330 of file padstack.cpp.
References m_drill.
Referenced by PCB_IO_IPC2581::addPadStack().
| std::optional< bool > PADSTACK::IsCovered | ( | PCB_LAYER_ID | aSide | ) | const |
Definition at line 1308 of file padstack.cpp.
References BackOuterLayers(), FrontOuterLayers(), PADSTACK::MASK_LAYER_PROPS::has_covering, IsBackLayer(), and IsFrontLayer().
Referenced by PCB_IO_IPC2581::addPadStack().
| std::optional< bool > PADSTACK::IsFilled | ( | ) | const |
Definition at line 1336 of file padstack.cpp.
References m_drill.
Referenced by PCB_IO_IPC2581::addPadStack().
| std::optional< bool > PADSTACK::IsPlugged | ( | PCB_LAYER_ID | aSide | ) | const |
Definition at line 1319 of file padstack.cpp.
References BackOuterLayers(), FrontOuterLayers(), PADSTACK::MASK_LAYER_PROPS::has_plugging, IsBackLayer(), and IsFrontLayer().
Referenced by PCB_IO_IPC2581::addPadStack().
| std::optional< bool > PADSTACK::IsTented | ( | PCB_LAYER_ID | aSide | ) | const |
Checks if this padstack is tented (covered in soldermask) on the given side.
| aSide | is a front or back layer (any will do) |
Definition at line 1295 of file padstack.cpp.
References BackOuterLayers(), FrontOuterLayers(), PADSTACK::MASK_LAYER_PROPS::has_solder_mask, IsBackLayer(), and IsFrontLayer().
Referenced by PCB_IO_IPC2581::addPadStack().
|
inline |
Definition at line 310 of file padstack.h.
References m_layerSet.
|
inline |
Definition at line 309 of file padstack.h.
References m_layerSet.
Referenced by LENGTH_DELAY_CALCULATION::inferViaInPad(), and LENGTH_DELAY_CALCULATION::optimiseViaLayers().
|
inline |
Definition at line 322 of file padstack.h.
References m_mode.
Referenced by PCB_IO_KICAD_SEXPR::format(), PCB_IO_KICAD_SEXPR::format(), FOOTPRINT::cmp_pads::operator()(), PadstackUniqueLayerAppliesToLayer(), PCB_IO_KICAD_SEXPR_PARSER::parsePadstack(), PCB_IO_KICAD_SEXPR_PARSER::parseViastack(), PNS_KICAD_IFACE_BASE::syncPad(), and PNS_KICAD_IFACE_BASE::syncVia().
| wxString PADSTACK::Name | ( | ) | const |
! Returns the name of this padstack in IPC-7351 format
Definition at line 1377 of file padstack.cpp.
References m_customName.
| VECTOR2I & PADSTACK::Offset | ( | PCB_LAYER_ID | aLayer | ) |
Definition at line 902 of file padstack.cpp.
References CopperLayer(), PADSTACK::SHAPE_PROPS::offset, and PADSTACK::COPPER_LAYER_PROPS::shape.
Referenced by unpackCopperLayer().
| const VECTOR2I & PADSTACK::Offset | ( | PCB_LAYER_ID | aLayer | ) | const |
Definition at line 908 of file padstack.cpp.
References CopperLayer(), PADSTACK::SHAPE_PROPS::offset, and PADSTACK::COPPER_LAYER_PROPS::shape.
|
inline |
Definition at line 290 of file padstack.h.
References operator==(), and PADSTACK().
Definition at line 81 of file padstack.cpp.
References ClearPrimitives(), CUSTOM, ForEachUniqueLayer(), m_backMaskProps, m_backPostMachining, m_copperProps, m_customName, m_customShapeInZoneMode, m_drill, m_frontMaskProps, m_frontPostMachining, m_layerSet, m_mode, m_orientation, m_secondaryDrill, m_tertiaryDrill, m_unconnectedLayerMode, PADSTACK(), Primitives(), RECTANGLE, ReplacePrimitives(), ROUNDRECT, RoundRectRadiusRatio(), SetShape(), and Shape().
| bool PADSTACK::operator== | ( | const PADSTACK & | aOther | ) | const |
Definition at line 128 of file padstack.cpp.
References CopperLayer(), ForEachUniqueLayer(), m_backMaskProps, m_backPostMachining, m_customName, m_customShapeInZoneMode, m_drill, m_frontMaskProps, m_frontPostMachining, m_layerSet, m_mode, m_orientation, m_secondaryDrill, m_tertiaryDrill, m_unconnectedLayerMode, and PADSTACK().
Referenced by operator!=().
|
private |
| std::vector< std::shared_ptr< PCB_SHAPE > > & PADSTACK::Primitives | ( | PCB_LAYER_ID | aLayer | ) |
Definition at line 1138 of file padstack.cpp.
References CopperLayer(), and PADSTACK::COPPER_LAYER_PROPS::custom_shapes.
Referenced by PAD::Clone(), and operator=().
| const std::vector< std::shared_ptr< PCB_SHAPE > > & PADSTACK::Primitives | ( | PCB_LAYER_ID | aLayer | ) | const |
Definition at line 1144 of file padstack.cpp.
References CopperLayer(), and PADSTACK::COPPER_LAYER_PROPS::custom_shapes.
Returns the set of layers that must be considered if checking one padstack against another.
For example, two normal padstacks will just return a set with ALL_LAYERS, but if one of them is FRONT_INNER_BACK, there are three layers to check.
Definition at line 1277 of file padstack.cpp.
References ALL_LAYERS, ForEachUniqueLayer(), m_mode, NORMAL, PADSTACK(), and BASE_SET::set().
| void PADSTACK::ReplacePrimitives | ( | const std::vector< std::shared_ptr< PCB_SHAPE > > & | aPrimitivesList, |
| PCB_LAYER_ID | aLayer ) |
Clears the existing primitive list (freeing the owned shapes) and adds copies of the given shapes to the padstack for the given layer.
| aPrimitivesList | is a list of shapes to add copies of to this PADSTACK |
| aLayer | is the padstack layer to add to. |
Definition at line 1170 of file padstack.cpp.
References AppendPrimitives(), and ClearPrimitives().
Referenced by operator=().
| int PADSTACK::RoundRectRadius | ( | PCB_LAYER_ID | aLayer | ) | const |
Definition at line 950 of file padstack.cpp.
References KiROUND(), RoundRectRadiusRatio(), Size(), VECTOR2< T >::x, and VECTOR2< T >::y.
| double PADSTACK::RoundRectRadiusRatio | ( | PCB_LAYER_ID | aLayer | ) | const |
Definition at line 938 of file padstack.cpp.
References CopperLayer(), PADSTACK::SHAPE_PROPS::round_rect_radius_ratio, and PADSTACK::COPPER_LAYER_PROPS::shape.
Referenced by operator=(), and RoundRectRadius().
|
inline |
Definition at line 338 of file padstack.h.
References m_secondaryDrill.
Referenced by EXPORTER_STEP::buildFootprint3DShapes(), EXPORTER_STEP::buildTrack3DShape(), Deserialize(), PCB_IO_IPC2581::ensureBackdrillSpecs(), PCB_IO_KICAD_SEXPR::format(), PAD::GetEffectiveShape(), PCB_VIA::SanitizeLayers(), DIALOG_PAD_PROPERTIES::transferDataToPad(), and DIALOG_TRACK_VIA_PROPERTIES::TransferDataToWindow().
|
inline |
Definition at line 339 of file padstack.h.
References m_secondaryDrill.
|
overridevirtual |
Serializes this object to the given Any message.
The Any message's concrete type will be specific to the object in question.
| aContainer | will be filled with a message describing this object |
Reimplemented from SERIALIZABLE.
Definition at line 631 of file padstack.cpp.
References ALL_LAYERS, PADSTACK::SHAPE_PROPS::anchor_shape, PADSTACK::POST_MACHINING_PROPS::angle, BackOuterLayers(), PADSTACK::SHAPE_PROPS::chamfered_rect_positions, PADSTACK::SHAPE_PROPS::chamfered_rect_ratio, CopperLayer(), COUNTERBORE, COUNTERSINK, PADSTACK::COPPER_LAYER_PROPS::custom_shapes, PADSTACK::POST_MACHINING_PROPS::depth, ForEachUniqueLayer(), FrontOuterLayers(), m_backPostMachining, m_drill, m_frontPostMachining, m_layerSet, m_mode, m_orientation, m_secondaryDrill, m_tertiaryDrill, m_unconnectedLayerMode, PADSTACK::POST_MACHINING_PROPS::mode, NOT_POST_MACHINED, PADSTACK::SHAPE_PROPS::offset, kiapi::board::PackLayerSet(), kiapi::common::PackVector2(), RECT_CHAMFER_BOTTOM_LEFT, RECT_CHAMFER_BOTTOM_RIGHT, RECT_CHAMFER_TOP_LEFT, RECT_CHAMFER_TOP_RIGHT, PADSTACK::SHAPE_PROPS::round_rect_radius_ratio, PADSTACK::COPPER_LAYER_PROPS::shape, PADSTACK::SHAPE_PROPS::shape, PADSTACK::POST_MACHINING_PROPS::size, PADSTACK::SHAPE_PROPS::size, ToProtoEnum(), TRAPEZOID, and PADSTACK::SHAPE_PROPS::trapezoid_delta_size.
Referenced by PCB_VIA::Serialize().
| void PADSTACK::SetAnchorShape | ( | PAD_SHAPE | aShape, |
| PCB_LAYER_ID | aLayer ) |
Definition at line 920 of file padstack.cpp.
References PADSTACK::SHAPE_PROPS::anchor_shape, CopperLayer(), and PADSTACK::COPPER_LAYER_PROPS::shape.
Referenced by PCB_IO_KICAD_SEXPR_PARSER::parsePadstack(), and unpackCopperLayer().
| void PADSTACK::SetBackdrillEndLayer | ( | bool | aTop, |
| PCB_LAYER_ID | aLayer ) |
Definition at line 610 of file padstack.cpp.
References B_Cu, PADSTACK::DRILL_PROPS::end, F_Cu, m_secondaryDrill, and m_tertiaryDrill.
| void PADSTACK::SetBackdrillMode | ( | BACKDRILL_MODE | aMode | ) |
Definition at line 493 of file padstack.cpp.
References B_Cu, BACKDRILL_BOTH, BACKDRILL_BOTTOM, BACKDRILL_TOP, CIRCLE, PADSTACK::DRILL_PROPS::end, F_Cu, m_drill, m_secondaryDrill, m_tertiaryDrill, NO_BACKDRILL, PADSTACK::DRILL_PROPS::shape, PADSTACK::DRILL_PROPS::size, PADSTACK::DRILL_PROPS::start, and VECTOR2< T >::x.
| void PADSTACK::SetBackdrillSize | ( | bool | aTop, |
| std::optional< int > | aSize ) |
Definition at line 553 of file padstack.cpp.
References B_Cu, CIRCLE, PADSTACK::DRILL_PROPS::end, F_Cu, m_secondaryDrill, m_tertiaryDrill, PADSTACK::DRILL_PROPS::shape, PADSTACK::DRILL_PROPS::size, PADSTACK::DRILL_PROPS::start, and UNDEFINED_LAYER.
| void PADSTACK::SetChamferPositions | ( | int | aPositions, |
| PCB_LAYER_ID | aLayer ) |
Definition at line 991 of file padstack.cpp.
References PADSTACK::SHAPE_PROPS::chamfered_rect_positions, CopperLayer(), and PADSTACK::COPPER_LAYER_PROPS::shape.
Referenced by ALTIUM_PCB::ConvertPads6ToFootprintItemOnCopper().
| void PADSTACK::SetChamferRatio | ( | double | aRatio, |
| PCB_LAYER_ID | aLayer ) |
Definition at line 973 of file padstack.cpp.
References PADSTACK::SHAPE_PROPS::chamfered_rect_ratio, CopperLayer(), and PADSTACK::COPPER_LAYER_PROPS::shape.
Referenced by ALTIUM_PCB::ConvertPads6ToFootprintItemOnCopper().
|
inline |
Definition at line 379 of file padstack.h.
References m_customShapeInZoneMode.
| void PADSTACK::SetDrillShape | ( | PAD_DRILL_SHAPE | aShape | ) |
Definition at line 896 of file padstack.cpp.
References m_drill.
|
inline |
| void PADSTACK::SetMode | ( | MODE | aMode | ) |
Definition at line 1458 of file padstack.cpp.
References m_mode.
Referenced by ALTIUM_PCB::ConvertPads6ToFootprintItemOnCopper(), PCB_IO_KICAD_SEXPR_PARSER::parsePadstack(), PCB_IO_KICAD_SEXPR_PARSER::parseViastack(), and DIALOG_PAD_PROPERTIES::transferDataToPad().
|
inline |
Definition at line 329 of file padstack.h.
References m_orientation.
| void PADSTACK::SetRoundRectRadius | ( | double | aRadius, |
| PCB_LAYER_ID | aLayer ) |
Definition at line 957 of file padstack.cpp.
References SetRoundRectRadiusRatio(), Size(), VECTOR2< T >::x, and VECTOR2< T >::y.
| void PADSTACK::SetRoundRectRadiusRatio | ( | double | aRatio, |
| PCB_LAYER_ID | aLayer ) |
Definition at line 944 of file padstack.cpp.
References CopperLayer(), PADSTACK::SHAPE_PROPS::round_rect_radius_ratio, and PADSTACK::COPPER_LAYER_PROPS::shape.
Referenced by ALTIUM_PCB::ConvertPads6ToFootprintItemOnCopper(), and SetRoundRectRadius().
| void PADSTACK::SetShape | ( | PAD_SHAPE | aShape, |
| PCB_LAYER_ID | aLayer ) |
Definition at line 884 of file padstack.cpp.
References CopperLayer(), PADSTACK::COPPER_LAYER_PROPS::shape, and PADSTACK::SHAPE_PROPS::shape.
Referenced by ALTIUM_PCB::ConvertPads6ToFootprintItemOnCopper(), operator=(), and unpackCopperLayer().
| void PADSTACK::SetSize | ( | const VECTOR2I & | aSize, |
| PCB_LAYER_ID | aLayer ) |
Definition at line 858 of file padstack.cpp.
References CopperLayer(), PADSTACK::COPPER_LAYER_PROPS::shape, PADSTACK::SHAPE_PROPS::size, VECTOR2< T >::x, and VECTOR2< T >::y.
Referenced by ALTIUM_PCB::ConvertPads6ToFootprintItemOnCopper(), PCB_IO_KICAD_SEXPR_PARSER::parseViastack(), and unpackCopperLayer().
| void PADSTACK::SetThermalSpokeAngle | ( | EDA_ANGLE | aAngle, |
| PCB_LAYER_ID | aLayer = F_Cu ) |
Definition at line 1132 of file padstack.cpp.
References CopperLayer(), and PADSTACK::COPPER_LAYER_PROPS::thermal_spoke_angle.
Referenced by Deserialize(), and PCB_IO_KICAD_SEXPR_PARSER::parsePadstack().
|
inline |
Definition at line 351 of file padstack.h.
References m_unconnectedLayerMode.
Referenced by PNS_KICAD_IFACE::createBoardItem(), Deserialize(), PNS_KICAD_IFACE::modifyBoardItem(), DIALOG_GLOBAL_EDIT_TRACKS_AND_VIAS::processItem(), and DIALOG_PAD_PROPERTIES::transferDataToPad().
| PAD_SHAPE PADSTACK::Shape | ( | PCB_LAYER_ID | aLayer | ) | const |
Definition at line 878 of file padstack.cpp.
References CopperLayer(), PADSTACK::COPPER_LAYER_PROPS::shape, and PADSTACK::SHAPE_PROPS::shape.
Referenced by DefaultThermalSpokeAngleForShape(), operator=(), and unpackCopperLayer().
| double PADSTACK::Similarity | ( | const PADSTACK & | aOther | ) | const |
Return a measure of how likely the other object is to represent the same object.
The scale runs from 0.0 (definitely different objects) to 1.0 (same)
Definition at line 1352 of file padstack.cpp.
References PADSTACK().
Referenced by PAD::Similarity().
| const VECTOR2I & PADSTACK::Size | ( | PCB_LAYER_ID | aLayer | ) | const |
Definition at line 872 of file padstack.cpp.
References CopperLayer(), PADSTACK::COPPER_LAYER_PROPS::shape, and PADSTACK::SHAPE_PROPS::size.
Referenced by PCB_IO_KICAD_SEXPR::format(), RoundRectRadius(), and SetRoundRectRadius().
| std::optional< int > & PADSTACK::SolderMaskMargin | ( | PCB_LAYER_ID | aLayer = F_Cu | ) |
Definition at line 1009 of file padstack.cpp.
References BackOuterLayers(), FrontOuterLayers(), IsBackLayer(), IsFrontLayer(), and PADSTACK::MASK_LAYER_PROPS::solder_mask_margin.
| const std::optional< int > & PADSTACK::SolderMaskMargin | ( | PCB_LAYER_ID | aLayer = F_Cu | ) | const |
Definition at line 1020 of file padstack.cpp.
References BackOuterLayers(), FrontOuterLayers(), IsBackLayer(), IsFrontLayer(), and PADSTACK::MASK_LAYER_PROPS::solder_mask_margin.
| std::optional< int > & PADSTACK::SolderPasteMargin | ( | PCB_LAYER_ID | aLayer = F_Cu | ) |
Definition at line 1031 of file padstack.cpp.
References BackOuterLayers(), FrontOuterLayers(), IsBackLayer(), IsFrontLayer(), and PADSTACK::MASK_LAYER_PROPS::solder_paste_margin.
| const std::optional< int > & PADSTACK::SolderPasteMargin | ( | PCB_LAYER_ID | aLayer = F_Cu | ) | const |
Definition at line 1042 of file padstack.cpp.
References BackOuterLayers(), FrontOuterLayers(), IsBackLayer(), IsFrontLayer(), and PADSTACK::MASK_LAYER_PROPS::solder_paste_margin.
| std::optional< double > & PADSTACK::SolderPasteMarginRatio | ( | PCB_LAYER_ID | aLayer = F_Cu | ) |
Definition at line 1053 of file padstack.cpp.
References BackOuterLayers(), FrontOuterLayers(), IsBackLayer(), IsFrontLayer(), and PADSTACK::MASK_LAYER_PROPS::solder_paste_margin_ratio.
| const std::optional< double > & PADSTACK::SolderPasteMarginRatio | ( | PCB_LAYER_ID | aLayer = F_Cu | ) | const |
Definition at line 1064 of file padstack.cpp.
References BackOuterLayers(), FrontOuterLayers(), IsBackLayer(), IsFrontLayer(), and PADSTACK::MASK_LAYER_PROPS::solder_paste_margin_ratio.
| PCB_LAYER_ID PADSTACK::StartLayer | ( | ) | const |
Definition at line 1365 of file padstack.cpp.
References m_drill.
Referenced by TUNING_PROFILE_PARAMETERS_USER_DEFINED::getPropagationDelay().
|
inline |
Definition at line 341 of file padstack.h.
References m_tertiaryDrill.
Referenced by EXPORTER_STEP::buildFootprint3DShapes(), EXPORTER_STEP::buildTrack3DShape(), Deserialize(), PCB_IO_KICAD_SEXPR::format(), and DIALOG_PAD_PROPERTIES::transferDataToPad().
|
inline |
Definition at line 342 of file padstack.h.
References m_tertiaryDrill.
| std::optional< int > & PADSTACK::ThermalGap | ( | PCB_LAYER_ID | aLayer = F_Cu | ) |
Definition at line 1099 of file padstack.cpp.
References CopperLayer(), and PADSTACK::COPPER_LAYER_PROPS::thermal_gap.
Referenced by PCB_IO_KICAD_SEXPR::format(), and PCB_IO_KICAD_SEXPR_PARSER::parsePadstack().
| const std::optional< int > & PADSTACK::ThermalGap | ( | PCB_LAYER_ID | aLayer = F_Cu | ) | const |
Definition at line 1105 of file padstack.cpp.
References CopperLayer(), and PADSTACK::COPPER_LAYER_PROPS::thermal_gap.
| EDA_ANGLE PADSTACK::ThermalSpokeAngle | ( | PCB_LAYER_ID | aLayer = F_Cu | ) | const |
Definition at line 1123 of file padstack.cpp.
References CopperLayer(), DefaultThermalSpokeAngleForShape(), and PADSTACK::COPPER_LAYER_PROPS::thermal_spoke_angle.
Referenced by PCB_IO_KICAD_SEXPR::format().
| std::optional< int > & PADSTACK::ThermalSpokeWidth | ( | PCB_LAYER_ID | aLayer = F_Cu | ) |
Definition at line 1087 of file padstack.cpp.
References CopperLayer(), and PADSTACK::COPPER_LAYER_PROPS::thermal_spoke_width.
Referenced by PCB_IO_KICAD_SEXPR::format(), and PCB_IO_KICAD_SEXPR_PARSER::parsePadstack().
| const std::optional< int > & PADSTACK::ThermalSpokeWidth | ( | PCB_LAYER_ID | aLayer = F_Cu | ) | const |
Definition at line 1093 of file padstack.cpp.
References CopperLayer(), and PADSTACK::COPPER_LAYER_PROPS::thermal_spoke_width.
| VECTOR2I & PADSTACK::TrapezoidDeltaSize | ( | PCB_LAYER_ID | aLayer | ) |
Definition at line 926 of file padstack.cpp.
References CopperLayer(), PADSTACK::COPPER_LAYER_PROPS::shape, and PADSTACK::SHAPE_PROPS::trapezoid_delta_size.
Referenced by unpackCopperLayer().
| const VECTOR2I & PADSTACK::TrapezoidDeltaSize | ( | PCB_LAYER_ID | aLayer | ) | const |
Definition at line 932 of file padstack.cpp.
References CopperLayer(), PADSTACK::COPPER_LAYER_PROPS::shape, and PADSTACK::SHAPE_PROPS::trapezoid_delta_size.
|
inline |
Definition at line 350 of file padstack.h.
References m_unconnectedLayerMode.
Referenced by ZONE_FILLER::Fill(), CONNECTIVITY_DATA::IsConnectedOnLayer(), and PNS_KICAD_IFACE_BASE::syncVia().
| std::vector< PCB_LAYER_ID > PADSTACK::UniqueLayers | ( | ) | const |
Definition at line 1245 of file padstack.cpp.
References ForEachUniqueLayer().
Referenced by padNeedsUpdate().
|
private |
Definition at line 182 of file padstack.cpp.
References AddPrimitive(), ALL_LAYERS, B_Cu, PADSTACK::SHAPE_PROPS::chamfered_rect_positions, PADSTACK::SHAPE_PROPS::chamfered_rect_ratio, ClearPrimitives(), CopperLayer(), F_Cu, FromProtoEnum(), FRONT_INNER_BACK, INNER_LAYERS, m_mode, m_parent, NORMAL, Offset(), RECT_CHAMFER_BOTTOM_LEFT, RECT_CHAMFER_BOTTOM_RIGHT, RECT_CHAMFER_TOP_LEFT, RECT_CHAMFER_TOP_RIGHT, PADSTACK::SHAPE_PROPS::round_rect_radius_ratio, SetAnchorShape(), SetShape(), SetSize(), Shape(), PADSTACK::COPPER_LAYER_PROPS::shape, TRAPEZOID, TrapezoidDeltaSize(), and kiapi::common::UnpackVector2().
Referenced by Deserialize().
| std::optional< ZONE_CONNECTION > & PADSTACK::ZoneConnection | ( | PCB_LAYER_ID | aLayer = F_Cu | ) |
Definition at line 1075 of file padstack.cpp.
References CopperLayer(), and PADSTACK::COPPER_LAYER_PROPS::zone_connection.
Referenced by PCB_IO_KICAD_SEXPR::format(), and PCB_IO_KICAD_SEXPR_PARSER::parsePadstack().
| const std::optional< ZONE_CONNECTION > & PADSTACK::ZoneConnection | ( | PCB_LAYER_ID | aLayer = F_Cu | ) | const |
Definition at line 1081 of file padstack.cpp.
References CopperLayer(), and PADSTACK::COPPER_LAYER_PROPS::zone_connection.
|
staticconstexpr |
! Temporary layer identifier to identify code that is not padstack-aware
Definition at line 177 of file padstack.h.
Referenced by PCB_IO_IPC2581::addLocationNode(), PCB_IO_IPC2581::addPadStack(), EDA_DATA::PACKAGE::AddPin(), PCB_IO_IPC2581::addShape(), PCAD2KICAD::PCAD_PAD::AddToBoard(), PCAD2KICAD::PCAD_PAD::AddToFootprint(), FEATURES_MANAGER::AddViaDrillHole(), DIALOG_TRACK_VIA_PROPERTIES::afterPadstackModeChanged(), AR_MATRIX::AR_MATRIX(), BOARD_DESIGN_SETTINGS::BOARD_DESIGN_SETTINGS(), BOOST_AUTO_TEST_CASE(), BOOST_AUTO_TEST_CASE(), BOOST_FIXTURE_TEST_CASE(), BOOST_FIXTURE_TEST_CASE(), BOOST_FIXTURE_TEST_CASE(), build_via_testpoints(), EDIT_TOOL::ChangeTrackWidth(), KI_TEST::CheckFpPad(), ALTIUM_PCB::ConvertFills6ToFootprintItemOnLayer(), ALTIUM_PCB::ConvertPads6ToFootprintItemOnCopper(), ALTIUM_PCB::ConvertShapeBasedRegions6ToFootprintItemOnLayer(), ALTIUM_PCB::ConvertVias6ToFootprintItem(), CopperLayer(), CopperLayer(), BACKDRILL_TEST_FIXTURE::CreateBackdrilledVia(), MICROWAVE_TOOL::createBaseFootprint(), PNS_KICAD_IFACE::createBoardItem(), MICROWAVE_TOOL::createFootprint(), BACKDRILL_TEST_FIXTURE::CreateFootprintWithPad(), MICROWAVE_TOOL::createMicrowaveInductor(), PCB_IO_EASYEDAPRO_PARSER::createPAD(), GENCAD_EXPORTER::createPadsShapesSection(), BACKDRILL_TEST_FIXTURE::CreatePostMachinedVia(), Deserialize(), doPushPadProperties(), DRAWING_TOOL::DrawVia(), EffectiveLayerFor(), PAD_TOOL::explodePad(), ForEachUniqueLayer(), PCB_IO_KICAD_SEXPR::format(), PLACE_FILE_EXPORTER::GenReportData(), CADSTAR_PCB_ARCHIVE_LOADER::getKiCadPad(), PAD::GetMsgPanelInfo(), PCB_VIA::GetMsgPanelInfo(), PAD::GetSizeX(), PAD::GetSizeY(), PCB_VIA::GetWidth(), hash_fp_item(), HYPERLYNX_PAD_STACK::HYPERLYNX_PAD_STACK(), HYPERLYNX_PAD_STACK::HYPERLYNX_PAD_STACK(), FEATURES_MANAGER::InitFeatureList(), ODB_NET_LIST::InitPadNetPoints(), isCopper(), isNullAperture(), DSN::isRoundKeepout(), FABMASTER::loadFootprints(), CADSTAR_PCB_ARCHIVE_LOADER::loadLibraryCoppers(), CADSTAR_PCB_ARCHIVE_LOADER::loadNetVia(), PCB_IO_KICAD_LEGACY::loadPAD(), PCB_IO_KICAD_LEGACY::loadSETUP(), PCB_IO_EAGLE::loadSignals(), PCB_IO_KICAD_LEGACY::loadTrackList(), FABMASTER::loadVias(), DSN::SPECCTRA_DB::makePADSTACK(), PCB_POINT_EDITOR::makePoints(), DSN::SPECCTRA_DB::makeVIA(), mirrorPad(), PNS_KICAD_IFACE::modifyBoardItem(), DIALOG_FP_EDIT_PAD_TABLE::OnCellChanged(), DIALOG_TRACK_VIA_PROPERTIES::onEditLayerChanged(), PCB_IO_EAGLE::packageHole(), PCB_IO_EAGLE::packagePad(), PCB_IO_EAGLE::packageSMD(), PAD::PAD(), PAD_DESC::PAD_DESC(), PADSTACK(), PCB_IO_EASYEDAPRO_PARSER::ParseBoard(), GPCB_FPL_CACHE::parseFOOTPRINT(), PCB_IO_KICAD_SEXPR_PARSER::parsePAD(), PCB_IO_KICAD_SEXPR_PARSER::parsePAD_option(), PCB_IO_KICAD_SEXPR_PARSER::parsePCB_VIA(), PCB_IO_KICAD_SEXPR_PARSER::parseSetup(), PCB_IO_EASYEDA_PARSER::ParseToBoardItemContainer(), ALTIUM_PCB::ParseVias6Data(), PCB_VIA::PCB_VIA(), AR_MATRIX::PlacePad(), PAD_TOOL::PlacePad(), BRDITEMS_PLOTTER::PlotDrillMarks(), BRDITEMS_PLOTTER::PlotPad(), BRDITEMS_PLOTTER::PlotPadNumber(), OUTSET_ROUTINE::ProcessItem(), DIALOG_GLOBAL_EDIT_TEARDROPS::processItem(), RelevantShapeLayers(), DRC_TEST_PROVIDER_SOLDER_MASK::Run(), DRC_TEST_PROVIDER_VIA_DIAMETER::Run(), Serialize(), BOARD_DESIGN_SETTINGS::SetDefaultMasterPad(), PAD::SetSizeX(), PAD::SetSizeY(), PCB_VIA::SetWidth(), PNS_KICAD_IFACE_BASE::syncVia(), DRC_TEST_PROVIDER_SOLDER_MASK::testMaskBridges(), DIALOG_FP_EDIT_PAD_TABLE::TransferDataToWindow(), PCB_IO_EAGLE::transferPad(), unpackCopperLayer(), BOARD_EDITOR_CONTROL::ViaSizeDec(), BOARD_EDITOR_CONTROL::ViaSizeInc(), viaSort(), and DIALOG_GLOBAL_EDIT_TEARDROPS::visitItem().
|
staticconstexpr |
! The layer identifier to use for "inner layers" on top/inner/bottom padstacks
Definition at line 180 of file padstack.h.
Referenced by DIALOG_PAD_PROPERTIES::afterPadstackModeChanged(), DIALOG_TRACK_VIA_PROPERTIES::afterPadstackModeChanged(), ALTIUM_PCB::ConvertPads6ToFootprintItemOnCopper(), ALTIUM_PCB::ConvertVias6ToFootprintItem(), CopperLayer(), CopperLayer(), EffectiveLayerFor(), ForEachUniqueLayer(), PCB_IO_KICAD_SEXPR::format(), PCB_IO_KICAD_SEXPR::format(), DIALOG_PAD_PROPERTIES::OnEditLayerChanged(), DIALOG_TRACK_VIA_PROPERTIES::onEditLayerChanged(), PadstackUniqueLayerAppliesToLayer(), PCB_IO_KICAD_SEXPR_PARSER::parsePadstack(), ALTIUM_PCB::ParseVias6Data(), PCB_IO_KICAD_SEXPR_PARSER::parseViastack(), PNS_KICAD_IFACE_BASE::syncVia(), and unpackCopperLayer().
|
private |
! The overrides applied to back outer technical layers
Definition at line 534 of file padstack.h.
Referenced by BackOuterLayers(), BackOuterLayers(), operator=(), and operator==().
|
private |
Definition at line 556 of file padstack.h.
Referenced by BackPostMachining(), BackPostMachining(), operator=(), operator==(), and Serialize().
|
private |
! The properties applied to copper layers if they aren't overridden
Definition at line 528 of file padstack.h.
Referenced by CopperLayer(), CopperLayer(), EffectiveLayerFor(), ForEachUniqueLayer(), operator=(), and PADSTACK().
|
private |
! An override for the IPC-7351 padstack name
Definition at line 521 of file padstack.h.
Referenced by Name(), operator=(), and operator==().
|
private |
How to build the custom shape in zone, to create the clearance area: CUSTOM_SHAPE_ZONE_MODE::OUTLINE = use pad shape CUSTOM_SHAPE_ZONE_MODE::CONVEXHULL = use the convex hull of the pad shape.
Definition at line 543 of file padstack.h.
Referenced by CustomShapeInZoneMode(), operator=(), operator==(), PADSTACK(), and SetCustomShapeInZoneMode().
|
private |
!
The primary drill parameters, which also define the start and end layers for through-hole vias and pads (F_Cu to B_Cu for normal holes; a subset of layers for blind/buried vias)
Definition at line 547 of file padstack.h.
Referenced by Drill(), Drill(), DrillShape(), EndLayer(), IsCapped(), IsFilled(), operator=(), operator==(), PADSTACK(), Serialize(), SetBackdrillMode(), SetDrillShape(), and StartLayer().
|
private |
! The overrides applied to front outer technical layers
Definition at line 531 of file padstack.h.
Referenced by FrontOuterLayers(), FrontOuterLayers(), operator=(), and operator==().
|
private |
Definition at line 555 of file padstack.h.
Referenced by FrontPostMachining(), FrontPostMachining(), operator=(), operator==(), and Serialize().
|
private |
! The board layers that this padstack is active on
Definition at line 518 of file padstack.h.
Referenced by LayerSet(), LayerSet(), operator=(), operator==(), Serialize(), and SetLayerSet().
|
private |
! The copper layer variation mode this padstack is in
Definition at line 515 of file padstack.h.
Referenced by CopperLayer(), CopperLayer(), Deserialize(), EffectiveLayerFor(), ForEachUniqueLayer(), Mode(), operator=(), operator==(), PADSTACK(), RelevantShapeLayers(), Serialize(), SetMode(), and unpackCopperLayer().
|
private |
! The rotation of the pad relative to an outer reference frame
Definition at line 524 of file padstack.h.
Referenced by Deserialize(), GetOrientation(), operator=(), operator==(), PADSTACK(), Serialize(), and SetOrientation().
|
private |
! The BOARD_ITEM this PADSTACK belongs to; will be used as the parent for owned shapes
Definition at line 512 of file padstack.h.
Referenced by AppendPrimitives(), PADSTACK(), PADSTACK(), and unpackCopperLayer().
|
private |
! Secondary drill, used to define back-drilling starting from the bottom side
Definition at line 550 of file padstack.h.
Referenced by GetBackdrillEndLayer(), GetBackdrillMode(), GetBackdrillSize(), operator=(), operator==(), PADSTACK(), SecondaryDrill(), SecondaryDrill(), Serialize(), SetBackdrillEndLayer(), SetBackdrillMode(), and SetBackdrillSize().
|
private |
! Tertiary drill, used to define back-drilling starting from the top side
Definition at line 553 of file padstack.h.
Referenced by GetBackdrillEndLayer(), GetBackdrillMode(), GetBackdrillSize(), operator=(), operator==(), PADSTACK(), Serialize(), SetBackdrillEndLayer(), SetBackdrillMode(), SetBackdrillSize(), TertiaryDrill(), and TertiaryDrill().
|
private |
Definition at line 536 of file padstack.h.
Referenced by operator=(), operator==(), PADSTACK(), Serialize(), SetUnconnectedLayerMode(), and UnconnectedLayerMode().