52#include <Message_PrinterOStream.hxx>
53#include <Standard_Failure.hxx>
55#include <Standard_Version.hxx>
59#include <wx/tokenzr.h>
62#define OCC_VERSION_MIN 0x070500
64#if OCC_VERSION_HEX < OCC_VERSION_MIN
65#include <Message_Messenger.hxx>
77#if OCC_VERSION_HEX < OCC_VERSION_MIN
78 virtual void Send(
const TCollection_ExtendedString& theString,
79 const Message_Gravity theGravity,
80 const bool theToPutEol )
const override
82 Send( TCollection_AsciiString( theString ), theGravity, theToPutEol );
85 virtual void Send(
const TCollection_AsciiString& theString,
86 const Message_Gravity theGravity,
87 const bool theToPutEol )
const override
89 virtual void send(
const TCollection_AsciiString& theString,
90 const Message_Gravity theGravity )
const override
93 wxString msg( theString.ToCString() );
95#if OCC_VERSION_HEX < OCC_VERSION_MIN
148 m_resolver = std::make_unique<FILENAME_RESOLVER>();
168 if( aLayer == aStartLayer || aLayer == aEndLayer )
187 int startIdx = layerToIndex( aStartLayer );
188 int endIdx = layerToIndex( aEndLayer );
189 int layerIdx = layerToIndex( aLayer );
194 int minIdx = std::min( startIdx, endIdx );
195 int maxIdx = std::max( startIdx, endIdx );
197 return ( layerIdx >= minIdx && layerIdx <= maxIdx );
203 if(
m_params.m_NetFilter.IsEmpty() )
206 wxArrayString parts = wxSplit(
m_params.m_NetFilter,
',' );
208 for( wxString token : parts )
210 token.Trim(
true ).Trim(
false );
212 if( token.IsEmpty() )
215 if( netname.Matches( token ) )
226 bool hasdata =
false;
227 std::vector<PAD*> padsMatchingNetFilter;
233 std::shared_ptr<SHAPE_SEGMENT> holeShape =
pad->GetEffectiveHoleShape();
236 holeShape->TransformToPolygon( holePoly,
pad->GetMaxError(),
ERROR_INSIDE );
243 if(
pad->IsOnLayer( pcblayer ) )
251 if(
m_pcbModel->AddHole( *holeShape, platingThickness,
F_Cu,
B_Cu,
false, aOrigin,
true,
true ) )
258 holeShape->TransformToPolygon( silkHole,
pad->GetMaxError(),
ERROR_INSIDE );
273 if( secondaryDrill.
size.
x > 0 )
276 secondaryDrill.
size.
x );
278 secondaryDrill.
end, aOrigin );
304 if( tertiaryDrill.
size.
x > 0 )
307 tertiaryDrill.
size.
x );
309 tertiaryDrill.
end, aOrigin );
338 wxLogTrace(
traceKiCad2Step, wxT(
"PAD post-machining check: frontPM.mode.has_value=%d frontPM.size=%d frontPM.depth=%d frontPM.angle=%d" ),
340 wxLogTrace(
traceKiCad2Step, wxT(
"PAD post-machining check: backPM.mode.has_value=%d backPM.size=%d backPM.depth=%d backPM.angle=%d" ),
344 bool frontPMValid = frontPM.
mode.has_value() && frontPM.
size > 0 &&
350 wxLogTrace(
traceKiCad2Step, wxT(
"PAD front post-machining: mode=%d (COUNTERBORE=2, COUNTERSINK=3)" ),
351 static_cast<int>( *frontPM.
mode ) );
358 frontPM.
depth,
true, aOrigin );
363 frontPM.
depth, frontPM.
angle,
true, aOrigin );
369 for(
const auto& [layer, diameter] : knockouts )
386 bool backPMValid = backPM.
mode.has_value() && backPM.
size > 0 &&
392 wxLogTrace(
traceKiCad2Step, wxT(
"PAD back post-machining: mode=%d (COUNTERBORE=2, COUNTERSINK=3)" ),
393 static_cast<int>( *backPM.
mode ) );
400 backPM.
depth,
false, aOrigin );
411 for(
const auto& [layer, diameter] : knockouts )
433 if(
m_pcbModel->AddPadShape(
pad, aOrigin,
false, castellated ? aClipPolygon :
nullptr) )
445 pad->TransformShapeToPolygon( poly, cuLayer,
pad->GetSolderMaskExpansion( cuLayer ),
453 padsMatchingNetFilter.push_back(
pad );
475 std::map<const SHAPE_POLY_SET::POLYGON*, PAD*> polyPadMap;
480 for(
PAD*
pad : padsMatchingNetFilter )
482 if( !
pad->IsOnLayer( pcblayer ) )
485 std::shared_ptr<SHAPE_POLY_SET> padPoly =
pad->GetEffectivePolygon( pcblayer );
488 if( padPoly->Collide( &gfxPoly ) )
490 polyPadMap[&poly] =
pad;
502 auto it = polyPadMap.find( &poly );
504 if( it == polyPadMap.end() )
525 wxString footprintBasePath = wxEmptyString;
528 double posY = (aFootprint->
GetPosition().y) - aOrigin.
y;
532 std::optional<LIBRARY_TABLE_ROW*> fpRow =
544 bool componentFilter = !
m_params.m_ComponentFilter.IsEmpty();
545 std::vector<wxString> componentFilterPatterns;
547 if( componentFilter )
549 wxStringTokenizer tokenizer(
m_params.m_ComponentFilter,
", \t\r\n", wxTOKEN_STRTOK );
551 while( tokenizer.HasMoreTokens() )
552 componentFilterPatterns.push_back( tokenizer.GetNextToken() );
556 for(
const wxString& pattern : componentFilterPatterns )
573 if( !fp_model.m_Show || fp_model.m_Filename.empty() )
576 std::vector<wxString> searchedPaths;
577 std::vector<const EMBEDDED_FILES*> embeddedFilesStack;
579 embeddedFilesStack.push_back(
m_board->GetEmbeddedFiles() );
581 wxString mainPath =
m_resolver->ResolvePath( fp_model.m_Filename, footprintBasePath,
582 embeddedFilesStack );
584 if( mainPath.empty() || !wxFileName::FileExists( mainPath ) )
587 if( mainPath.empty() )
588 mainPath = fp_model.m_Filename;
590 m_reporter->Report( wxString::Format(
_(
"Could not add 3D model for %s.\n"
591 "File not found: %s\n" ),
598 fp_model.m_Filename.AfterLast(
'/' ).AfterLast(
'\\' ).BeforeLast(
'.' );
600 std::vector<wxString> altFilenames;
607 const auto& map = filesPtr->EmbeddedFileMap();
609 for(
auto& [fname, file] : map )
611 if( fname.BeforeLast(
'.' ) == baseName )
613 wxFileName temp_file = filesPtr->GetTemporaryFileName( fname );
615 if( !temp_file.IsOk() )
618 wxString altPath = temp_file.GetFullPath();
620 if( mainPath == altPath )
623 altFilenames.emplace_back( altPath );
634 VECTOR3D modelRot = fp_model.m_Rotation;
639 baseName, mainPath, altFilenames, aFootprint->
GetReference(), bottomSide,
641 modelRot, fp_model.m_Scale,
m_params.m_SubstModels ) )
646 catch(
const Standard_Failure& e )
648 m_reporter->Report( wxString::Format(
_(
"Could not add 3D model for %s.\n"
649 "OpenCASCADE error: %s\n" ),
651 e.GetMessageString() ),
670 double height = standoff + bodyThickness;
681 if(
m_pcbModel->AddExtrudedBody( outline, bottomSide, standoff, height, aOrigin, colorKey,
687 catch(
const Standard_Failure& e )
689 m_reporter->Report( wxString::Format(
_(
"Could not add extruded body for %s.\n"
690 "OpenCASCADE error: %s\n" ),
700 m_pcbModel->AddExtrudedPins( aFootprint, bottomSide, standoff, aOrigin );
702 catch(
const Standard_Failure& e )
704 m_reporter->Report( wxString::Format(
_(
"Could not add extruded pins for %s.\n"
705 "OpenCASCADE error: %s\n" ),
739 std::shared_ptr<SHAPE_SEGMENT> holeShape =
via->GetEffectiveHoleShape();
741 holeShape->TransformToPolygon( holePoly,
via->GetMaxError(),
ERROR_INSIDE );
749 via->LayerPair( &top_layer, &bot_layer );
755 const std::shared_ptr<SHAPE>& shape =
via->GetEffectiveShape( pcblayer );
763 m_pcbModel->AddBarrel( *holeShape, top_layer, bot_layer,
true, aOrigin,
via->GetNetname() );
770 holeShape->TransformToPolygon( silkHole,
via->GetMaxError(),
ERROR_INSIDE );
799 if( secondaryDrill.
size.
x > 0 )
802 secondaryDrill.
size.
x );
804 secondaryDrill.
end, aOrigin );
830 if( tertiaryDrill.
size.
x > 0 )
833 tertiaryDrill.
size.
x );
835 tertiaryDrill.
end, aOrigin );
864 wxLogTrace(
traceKiCad2Step, wxT(
"VIA post-machining check: frontPM.mode.has_value=%d frontPM.size=%d frontPM.depth=%d frontPM.angle=%d" ),
866 wxLogTrace(
traceKiCad2Step, wxT(
"VIA post-machining check: backPM.mode.has_value=%d backPM.size=%d backPM.depth=%d backPM.angle=%d" ),
870 bool frontPMValid = frontPM.
mode.has_value() && frontPM.
size > 0 &&
876 wxLogTrace(
traceKiCad2Step, wxT(
"VIA front post-machining: mode=%d (COUNTERBORE=2, COUNTERSINK=3)" ),
877 static_cast<int>( *frontPM.
mode ) );
884 frontPM.
depth,
true, aOrigin );
889 frontPM.
depth, frontPM.
angle,
true, aOrigin );
895 for(
const auto& [layer, diameter] : knockouts )
912 bool backPMValid = backPM.
mode.has_value() && backPM.
size > 0 &&
918 wxLogTrace(
traceKiCad2Step, wxT(
"VIA back post-machining: mode=%d (COUNTERBORE=2, COUNTERSINK=3)" ),
919 static_cast<int>( *backPM.
mode ) );
926 backPM.
depth,
false, aOrigin );
937 for(
const auto& [layer, diameter] : knockouts )
975 LSET layers = zone->GetLayerSet();
985 bool isMaskLayer = ( layer ==
F_Mask || layer ==
B_Mask );
988 if( aSolderMaskOnly && !isMaskLayer )
992 if( !aSolderMaskOnly && isMaskLayer && !
m_params.m_ExportZones )
996 zone->TransformSolidAreasShapesToPolygon( layer, fill_shape );
1001 m_poly_shapes[layer][zone->GetNetname()].Append( fill_shape );
1021 switch( aItem->
Type() )
1033 bool endingsAlreadyAdded =
false;
1041 endingsAlreadyAdded =
true;
1058 for(
SHAPE* shape : shapes )
1063 SHAPE_SEGMENT seg( a, b, graphic->GetWidth() );
1064 seg.TransformToPolygon( m_poly_shapes[pcblayer][graphic->GetNetname()],
1065 maxError, ERROR_INSIDE );
1069 for(
SHAPE* shape : shapes )
1074 if( !endingsAlreadyAdded
1090 std::vector<VECTOR2I> polygon;
1093 if( !polygon.empty() )
1100 for(
size_t ii = 0; ii + 1 < polygon.size(); ii++ )
1110 for(
size_t ii = 0; ii < polygon.size(); ii++ )
1112 size_t next = ( ii + 1 ) % polygon.size();
1123 for(
const VECTOR2I& pt : polygon )
1132 addEnding( graphic->
GetEndEnding(), endPt, endTangent );
1178 textbox->PCB_SHAPE::TransformShapeToPolygon(
m_poly_shapes[pcblayer][wxEmptyString], pcblayer, 0,
1271 if( !
m_board->GetBoardPolygonOutlines( pcbOutlines,
1276 wxLogWarning(
_(
"Board outline is malformed. Run DRC for a full analysis." ) );
1287 origin =
m_board->GetDesignSettings().GetAuxOrigin();
1288 else if(
m_params.m_UseGridOrigin )
1289 origin =
m_board->GetDesignSettings().GetGridOrigin();
1348 poly.SimplifyOutlines(
pcbIUScale.mmToIU( 0.003 ) );
1356 m_pcbModel->AddPolygonShapes( &mask, pcblayer, origin, wxEmptyString );
1364 poly.SimplifyOutlines(
pcbIUScale.mmToIU( 0.003 ) );
1368 poly.BooleanSubtract( holes );
1371 poly.BooleanIntersection( pcbOutlinesNoArcs );
1373 m_pcbModel->AddPolygonShapes( &poly, pcblayer, origin, netname );
1380 m_reporter->Report( wxString::Format( wxT(
"Board outline: found %d initial points.\n" ),
1400 struct SCOPED_PRINTER
1402 Handle( Message_Printer ) m_handle;
1404 SCOPED_PRINTER(
const Handle( Message_Printer ) & aHandle ) : m_handle( aHandle )
1406 Message::DefaultMessenger()->AddPrinter( m_handle );
1409 ~SCOPED_PRINTER() { Message::DefaultMessenger()->RemovePrinter( m_handle ); }
1412 Message::DefaultMessenger()->RemovePrinters( STANDARD_TYPE( Message_PrinterOStream ) );
1417 if(
m_params.m_OutputFile.IsEmpty() )
1419 wxFileName fn =
m_board->GetFileName();
1420 fn.SetName( fn.GetName() );
1421 fn.SetExt(
m_params.GetDefaultExportExtension() );
1423 m_params.m_OutputFile = fn.GetFullName();
1447 m_reporter->Report( wxString::Format( wxT(
"Build %s data.\n" ),
m_params.GetFormatName() ),
1453 "** Error building STEP board model. Export aborted. **\n" ),
1458 m_reporter->Report( wxString::Format( wxT(
"Writing %s file.\n" ),
m_params.GetFormatName() ),
1461 bool success =
true;
1484 "** Error writing %s file. **\n" ),
1491 m_reporter->Report( wxString::Format( wxT(
"%s file '%s' created.\n" ),
1497 catch(
const std::bad_alloc& )
1499 m_reporter->Report( wxString::Format(
_(
"\n** Out of memory while exporting %s file. **\n"
1500 "The board may have too many objects (e.g., vias, tracks, components) "
1501 "to process with available system memory.\n"
1502 "Try disabling 'Fuse Shapes' option, reducing board complexity, "
1503 "or freeing up system memory.\n" ),
1508 catch(
const Standard_Failure& e )
1510 wxString errorMsg = e.GetMessageString();
1511 m_reporter->Report( wxString::Format(
_(
"\nOpenCASCADE error: %s\n" ), errorMsg ),
1515 if( errorMsg.Contains(
"alloc" ) || errorMsg.Contains(
"memory" ) ||
1516 errorMsg.IsEmpty() )
1518 m_reporter->Report(
_(
"This error may indicate insufficient memory. Consider disabling "
1519 "'Fuse Shapes', reducing the number of vias/components, or freeing "
1520 "system memory.\n" ),
1524 m_reporter->Report( wxString::Format(
_(
"** Error exporting %s file. Export aborted. **\n" ),
1532 m_reporter->Report( wxString::Format(
_(
"\n** Unexpected error while exporting %s file. **\n"
1533 "This may be caused by insufficient system memory, especially "
1534 "when exporting boards with many vias or components with 'Fuse Shapes' enabled.\n"
1535 "Try disabling 'Fuse Shapes', reducing board complexity, "
1536 "or freeing up system memory.\n" ),
1546 "Export time %.3f s\n" ),
void ApplyExtrusionTransform(SHAPE_POLY_SET &aOutline, const EXTRUDED_3D_BODY *aBody, const VECTOR2I &aFpPos)
Apply 2D extrusion transforms (rotation, scale, offset) to an outline.
bool GetExtrusionOutline(const FOOTPRINT *aFootprint, SHAPE_POLY_SET &aOutline, PCB_LAYER_ID aLayerOverride)
Get the extrusion outline polygon for a footprint in board coordinates.
constexpr EDA_IU_SCALE pcbIUScale
static const ADVANCED_CFG & GetCfg()
Get the singleton instance's config, which is shared by all consumers.
wxString GetNetname() const
PCB_LAYER_ID GetLayer() const override
Return the primary layer this item is on.
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
virtual PCB_LAYER_ID GetLayer() const
Return the primary layer this item is on.
virtual void TransformShapeToPolySet(SHAPE_POLY_SET &aBuffer, PCB_LAYER_ID aLayer, int aClearance, int aError, ERROR_LOC aErrorLoc, KIGFX::RENDER_SETTINGS *aRenderSettings=nullptr) const
Convert the item shape to a polyset.
Information pertinent to a Pcbnew printed circuit board.
const wxString & GetFileName() const
PROJECT * GetProject() const
KICAD_T Type() const
Returns the type of object.
const SHAPE_POLY_SET & GetHatching() const
void TransformWithLineEndingsToPolygon(SHAPE_POLY_SET &aBuffer, int aClearance, int aError, ERROR_LOC aErrorLoc, bool ignoreLineWidth=false) const
Convert the shape body shortened for line endings plus line-ending geometry to polygons.
void GetEndingTangents(EDA_ANGLE &aStartTangent, EDA_ANGLE &aEndTangent, int aLineWidth=0) const
Compute outward-facing tangent angles at the start and end of the shape.
std::vector< SHAPE * > MakeEffectiveShapesForStroking(int aLineWidth=-1) const
Make a set of SHAPE objects to hand to STROKE_PARAMS::Stroke().
bool IsHatchedFill() const
bool GetLineEndingEndpoints(VECTOR2I &aStartPoint, VECTOR2I &aEndPoint) const
Return the source endpoints used to place line endings.
LINE_STYLE GetLineStyle() const
const LINE_ENDING & GetStartEnding() const
const LINE_ENDING & GetEndEnding() const
bool buildTrack3DShape(PCB_TRACK *aTrack, const VECTOR2D &aOrigin)
bool buildFootprint3DShapes(FOOTPRINT *aFootprint, const VECTOR2D &aOrigin, SHAPE_POLY_SET *aClipPolygon)
std::map< PCB_LAYER_ID, SHAPE_POLY_SET > m_poly_holes
bool isLayerInBackdrillSpan(PCB_LAYER_ID aLayer, PCB_LAYER_ID aStartLayer, PCB_LAYER_ID aEndLayer) const
Check if a copper layer is within a backdrill layer span (inclusive).
bool netFilterMatches(const wxString &netname) const
EXPORTER_STEP_PARAMS m_params
wxString m_pcbBaseName
the name of the project (board short filename (no path, no ext) used to identify items in step file
std::unique_ptr< FILENAME_RESOLVER > m_resolver
bool buildBoard3DShapes()
std::unique_ptr< STEP_PCB_MODEL > m_pcbModel
std::map< PCB_LAYER_ID, std::map< wxString, SHAPE_POLY_SET > > m_poly_shapes
KIGFX::COLOR4D m_copperColor
EXPORTER_STEP(BOARD *aBoard, const EXPORTER_STEP_PARAMS &aParams, REPORTER *aReporter)
bool buildGraphic3DShape(BOARD_ITEM *aItem, const VECTOR2D &aOrigin)
KIGFX::COLOR4D m_padColor
void buildZones3DShape(VECTOR2D aOrigin, bool aSolderMaskOnly=false)
static KIGFX::COLOR4D GetDefaultColor(EXTRUSION_MATERIAL aMaterial)
static uint32_t PackColorKey(const KIGFX::COLOR4D &aColor)
EXTRUSION_MATERIAL m_material
virtual void Send(const TCollection_AsciiString &theString, const Message_Gravity theGravity, const bool theToPutEol) const override
SEVERITY getSeverity(const Message_Gravity theGravity) const
KICAD_PRINTER(REPORTER *aReporter)
virtual void Send(const TCollection_ExtendedString &theString, const Message_Gravity theGravity, const bool theToPutEol) const override
A color representation with 4 components: red, green, blue, alpha.
static const COLOR4D UNSPECIFIED
For legacy support; used as a value to indicate color hasn't been set yet.
PCB specific render settings.
void SetGapLengthRatio(double aRatio)
void SetDashLengthRatio(double aRatio)
virtual wxString GetClass() const =0
Return the class name.
std::optional< LIBRARY_TABLE_ROW * > GetRow(const wxString &aNickname, LIBRARY_TABLE_SCOPE aScope=LIBRARY_TABLE_SCOPE::BOTH) const
Like LIBRARY_MANAGER::GetRow but filtered to the LIBRARY_TABLE_TYPE of this adapter.
std::optional< wxString > GetFullURI(LIBRARY_TABLE_TYPE aType, const wxString &aNickname, bool aSubstituted=false)
Return the full location specifying URI for the LIB, either in original UI form or in environment var...
const UTF8 & GetLibNickname() const
Return the logical library name portion of a LIB_ID.
Decorative shape (arrowhead, circle, square) at the start or end of a graphic line,...
LINE_ENDING_STYLE GetStyle() const
void GetShapes(const VECTOR2I &aPoint, const EDA_ANGLE &aTangent, int aLineWidth, std::vector< VECTOR2I > &aPolygon) const
Generate ending geometry as polygon vertices at the given point and direction.
int GetStrokeWidth() const
Outline stroke width.
LSET is a set of PCB_LAYER_IDs.
static const LSET & ExternalCuMask()
Return a mask holding the Front and Bottom layers.
static LSET AllCuMask(int aCuLayerCount)
Return a mask holding the requested number of Cu PCB_LAYER_IDs.
static const LSET & InternalCuMask()
Return a complete set of internal copper layers which is all Cu layers except F_Cu and B_Cu.
A PADSTACK defines the characteristics of a single or multi-layer pad, in the IPC sense of the word.
POST_MACHINING_PROPS & FrontPostMachining()
DRILL_PROPS & TertiaryDrill()
DRILL_PROPS & SecondaryDrill()
POST_MACHINING_PROPS & BackPostMachining()
Parameters and options when plotting/printing a board.
double GetDashedLineGapRatio() const
double GetDashedLineDashRatio() const
int GetWidth() const override
int GetSolderMaskExpansion() const
void TransformShapeToPolySet(SHAPE_POLY_SET &aBuffer, PCB_LAYER_ID aLayer, int aClearance, int aError, ERROR_LOC aErrorLoc, KIGFX::RENDER_SETTINGS *aRenderSettings=nullptr) const override
Convert the item shape to a polyset.
void TransformShapeToPolygon(SHAPE_POLY_SET &aBuffer, PCB_LAYER_ID aLayer, int aClearance, int aError, ERROR_LOC aErrorLoc, bool ignoreLineWidth=false) const override
Convert the shape to a closed polygon.
bool IsOnLayer(PCB_LAYER_ID aLayer) const override
Test to see if this object is on the given layer.
bool IsBorderEnabled() const
Disables the border, this is done by changing the stroke internally.
void TransformTextToPolySet(SHAPE_POLY_SET &aBuffer, int aClearance, int aMaxError, ERROR_LOC aErrorLoc) const
Function TransformTextToPolySet Convert the text to a polygonSet describing the actual character stro...
int GetSolderMaskExpansion() const
void TransformShapeToPolygon(SHAPE_POLY_SET &aBuffer, PCB_LAYER_ID aLayer, int aClearance, int aError, ERROR_LOC aErrorLoc, bool ignoreLineWidth=false) const override
Convert the track shape to a closed polygon.
bool IsOnLayer(PCB_LAYER_ID aLayer) const override
Test to see if this object is on the given layer.
static FOOTPRINT_LIBRARY_ADAPTER * FootprintLibAdapter(PROJECT *aProject)
A pure virtual class used to derive REPORTER objects from.
Represent a set of closed polygons.
void ClearArcs()
Removes all arc references from all the outlines and holes in the polyset.
int FullPointCount() const
Return the number of points in the shape poly set.
int Append(int x, int y, int aOutline=-1, int aHole=-1, bool aAllowDuplication=false)
Appends a vertex at the end of the given outline/hole (default: the last outline)
void Simplify()
Simplify the polyset (merges overlapping polys, eliminates degeneracy/self-intersections)
std::vector< SHAPE_LINE_CHAIN > POLYGON
represents a single polygon outline with holes.
void Unfracture()
Convert a single outline slitted ("fractured") polygon into a set ouf outlines with holes.
int NewOutline()
Creates a new empty polygon in the set and returns its index.
void SimplifyOutlines(int aMaxError=0)
Simplifies the lines in the polyset.
void Deflate(int aAmount, CORNER_STRATEGY aCornerStrategy, int aMaxError)
int OutlineCount() const
Return the number of outlines in the set.
void BooleanSubtract(const SHAPE_POLY_SET &b)
Perform boolean polyset difference.
const std::vector< POLYGON > & CPolygons() const
void TransformToPolygon(SHAPE_POLY_SET &aBuffer, int aError, ERROR_LOC aErrorLoc) const override
Fills a SHAPE_POLY_SET with a polygon representation of this shape.
An abstract shape on 2D plane.
Simple container to manage line stroke parameters.
static void Stroke(const SHAPE *aShape, LINE_STYLE aLineStyle, int aWidth, const KIGFX::RENDER_SETTINGS *aRenderSettings, const std::function< void(const VECTOR2I &a, const VECTOR2I &b)> &aStroker)
Handle a list of polygons defining a copper zone.
void TransformCircleToPolygon(SHAPE_LINE_CHAIN &aBuffer, const VECTOR2I &aCenter, int aRadius, int aError, ERROR_LOC aErrorLoc, int aMinSegCount=0)
Convert a circle to a polygon, using multiple straight lines.
void TransformOvalToPolygon(SHAPE_POLY_SET &aBuffer, const VECTOR2I &aStart, const VECTOR2I &aEnd, int aWidth, int aError, ERROR_LOC aErrorLoc, int aMinSegCount=0)
Convert a oblong shape to a polygon, using multiple segments.
@ ROUND_ALL_CORNERS
All angles are rounded.
static const std::string KiCadUriPrefix
const wxChar *const traceKiCad2Step
Flag to enable KiCad2Step debug tracing.
Handle(KICAD3D_INFO) KICAD3D_INFO
bool IsCopperLayer(int aLayerId)
Test whether a layer is a copper layer.
bool IsInnerCopperLayer(int aLayerId)
Test whether a layer is an inner (In1_Cu to In30_Cu) copper layer.
PCB_LAYER_ID
A quick note on layer IDs:
#define UNIMPLEMENTED_FOR(type)
@ PTH
Plated through hole pad.
@ CASTELLATED
a pad with a castellated through hole
BARCODE class definition.
PGM_BASE & Pgm()
The global program "get" accessor.
int64_t GetRunningMicroSecs()
An alternate way to calculate an elapsed time (in microsecondes) to class PROF_COUNTER.
static constexpr double OCC_MAX_DISTANCE_TO_MERGE_POINTS
Default distance between points to treat them as separate ones (mm) 0.001 mm or less is a reasonable ...
LINE_STYLE
Dashed line types.
The properties of a padstack drill.
VECTOR2I size
Drill diameter (x == y) or slot dimensions (x != y)
std::optional< PAD_DRILL_POST_MACHINING_MODE > mode
wxLogTrace helper definitions.
@ PCB_SHAPE_T
class PCB_SHAPE, a segment not on copper layers
@ PCB_VIA_T
class PCB_VIA, a via (like a track segment on a copper layer)
@ PCB_TEXTBOX_T
class PCB_TEXTBOX, wrapped text on a layer
@ PCB_TEXT_T
class PCB_TEXT, text on a layer
@ PCB_BARCODE_T
class PCB_BARCODE, a barcode (graphic item)
@ PCB_TABLE_T
class PCB_TABLE, table of PCB_TABLECELLs
@ PCB_DRILL_CHART_T
class PCB_DRILL_CHART, a live drill chart derived from PCB_TABLE
VECTOR2< int32_t > VECTOR2I
VECTOR2< double > VECTOR2D
VECTOR3< double > VECTOR3D
Definition of file extensions used in Kicad.