KiCad PCB EDA Suite
Loading...
Searching...
No Matches
board_adapter.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2015-2016 Mario Luzeiro <[email protected]>
5 * Copyright (C) 2023 CERN
6 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 */
21
22#ifndef BOARD_ADAPTER_H
23#define BOARD_ADAPTER_H
24
25#include <array>
26#include <vector>
30#include <gal/3d/camera.h>
31#include <3d_enums.h>
35
36#include <layer_ids.h>
37#include <pcb_base_frame.h>
38#include <pcb_text.h>
39#include <pcb_textbox.h>
40#include <pcb_table.h>
41#include <pcb_shape.h>
42#include <pcb_dimension.h>
43#include <reporter.h>
45#include <stop_token>
46
47class COLOR_SETTINGS;
48class FOOTPRINT;
49class PAD;
50class PCB_BARCODE;
51class PCB_TEXTBOX;
52class PCB_TRACK;
53class ZONE;
54
56typedef std::map<PCB_LAYER_ID, BVH_CONTAINER_2D*> MAP_CONTAINER_2D_BASE;
57
59typedef std::map<PCB_LAYER_ID, SHAPE_POLY_SET*> MAP_POLY;
60
64#define RANGE_SCALE_3D 8.0f
65
66
71{
72public:
74
76
82 void Set3dCacheManager( S3D_CACHE* aCacheMgr ) noexcept { m_3dModelManager = aCacheMgr; }
83 S3D_CACHE* Get3dCacheManager() const noexcept { return m_3dModelManager; }
84
90 bool Is3dLayerEnabled( PCB_LAYER_ID aLayer,
91 const std::bitset<LAYER_3D_END>& aVisibilityFlags ) const;
92
96 bool IsFootprintShown( const FOOTPRINT* aFootprint ) const;
97
103 void SetBoard( BOARD* aBoard ) noexcept { m_board = aBoard; }
104 const BOARD* GetBoard() const noexcept { return m_board; }
105
106 void ReloadColorSettings() noexcept;
107
111 std::map<int, COLOR4D> GetLayerColors() const;
112
113 std::map<int, COLOR4D> GetDefaultColors() const;
114 void SetLayerColors( const std::map<int, COLOR4D>& aColors );
115
116 std::bitset<LAYER_3D_END> GetVisibleLayers() const;
118 void SetVisibleLayers( const std::bitset<LAYER_3D_END>& aLayers );
119
121
128 void InitSettings( std::shared_ptr<REPORTER> aStatusReporter, std::shared_ptr<REPORTER> aWarningReporter );
129
135 void CreateLayers( std::shared_ptr<REPORTER> aStatusReporter, std::stop_token aStop = std::stop_token() );
136
142 double BiuTo3dUnits() const noexcept { return m_biuTo3Dunits; }
143
149 const BBOX_3D& GetBBox() const noexcept { return m_boardBoundingBox; }
150
154 float GetBoardBodyThickness() const noexcept { return m_boardBodyThickness3DU; }
155
160
164 float GetFrontCopperThickness() const noexcept { return m_frontCopperThickness3DU; }
165 float GetBackCopperThickness() const noexcept { return m_backCopperThickness3DU; }
166
170 int GetHolePlatingThickness() const noexcept;
171
177 VECTOR2I GetBoardSize() const noexcept { return m_boardSize; }
178
184 VECTOR2I GetBoardPos() const noexcept { return m_boardPos; }
185
191 const SFVEC3F& GetBoardCenter() const noexcept { return m_boardCenter; }
192
200 float GetFootprintZPos( bool aIsFlipped ) const ;
201
207 const SHAPE_POLY_SET& GetBoardPoly() const noexcept { return m_board_poly; }
208
215 SFVEC4F GetLayerColor( int aLayerId ) const;
216
221 SFVEC4F GetColor( const COLOR4D& aColor ) const;
222
223 SFVEC2F GetSphericalCoord( int i ) const;
224
231 float GetLayerTopZPos( PCB_LAYER_ID aLayerId ) const noexcept
232 {
233 auto it = m_layerZcoordTop.find( aLayerId );
234
235 if( it != m_layerZcoordTop.end() )
236 return it->second;
237 else
238 return -( m_boardBodyThickness3DU / 2.0f );
239 }
240
247 float GetLayerBottomZPos( PCB_LAYER_ID aLayerId ) const noexcept
248 {
249 auto it = m_layerZcoordBottom.find( aLayerId );
250
251 if( it != m_layerZcoordBottom.end() )
252 return it->second;
253 else
255 }
256
262 const MAP_CONTAINER_2D_BASE& GetLayerMap() const noexcept { return m_layerMap; }
263 const BVH_CONTAINER_2D* GetPlatedPadsFront() const noexcept { return m_platedPadsFront; }
264 const BVH_CONTAINER_2D* GetPlatedPadsBack() const noexcept { return m_platedPadsBack; }
266 const BVH_CONTAINER_2D* GetOffboardPadsBack() const noexcept { return m_offboardPadsBack; }
267
268 const MAP_CONTAINER_2D_BASE& GetLayerHoleMap() const noexcept { return m_layerHoleMap; }
269 const BVH_CONTAINER_2D& GetTH_IDs() const noexcept { return m_TH_IDs; }
270 const BVH_CONTAINER_2D& GetTH_ODs() const noexcept { return m_TH_ODs; }
271
279 const SHAPE_POLY_SET& GetTH_ODPolys() const noexcept
280 {
281 return m_TH_ODPolys;
282 }
283
284 const BVH_CONTAINER_2D& GetViaAnnuli() const noexcept
285 {
286 return m_viaAnnuli;
287 }
288
289 const SHAPE_POLY_SET& GetViaAnnuliPolys() const noexcept
290 {
291 return m_viaAnnuliPolys;
292 }
293
294 const SHAPE_POLY_SET& GetNPTH_ODPolys() const noexcept
295 {
296 return m_NPTH_ODPolys;
297 }
298
302 const BVH_CONTAINER_2D& GetViaTH_ODs() const noexcept
303 {
304 return m_viaTH_ODs;
305 }
306
307 const SHAPE_POLY_SET& GetViaTH_ODPolys() const noexcept
308 {
309 return m_viaTH_ODPolys;
310 }
311
316 const SHAPE_POLY_SET& GetBackdrillPolys() const noexcept
317 {
318 return m_BackdrillPolys;
319 }
320
321 const SHAPE_POLY_SET& GetTertiarydrillPolys() const noexcept
322 {
324 }
325
326 const BVH_CONTAINER_2D& GetBackdrillCutouts() const noexcept
327 {
328 return m_backdrillCutouts;
329 }
330
332 {
334 }
335
341 {
343 }
344
349 {
351 }
352
358 {
360 }
361
366 {
368 }
369
374 {
376 }
377
382 {
384 }
385
390 {
392 }
393
398 {
400 }
401
402 unsigned int GetViaCount() const noexcept { return m_viaCount; }
403 unsigned int GetHoleCount() const noexcept { return m_holeCount; }
404
408 float GetAverageViaHoleDiameter() const noexcept { return m_averageViaHoleDiameter; }
409
413 float GetAverageHoleDiameter() const noexcept { return m_averageHoleDiameter; }
414
418 float GetAverageTrackWidth() const noexcept { return m_averageTrackWidth; }
419
424 unsigned int GetCircleSegmentCount( float aDiameter3DU ) const;
425
430 unsigned int GetCircleSegmentCount( int aDiameterBIU ) const;
431
437 const MAP_POLY& GetPolyMap() const noexcept { return m_layers_poly; }
438
443
448
449 const MAP_POLY& GetHoleIdPolysMap() const noexcept { return m_layerHoleIdPolys; }
450 const MAP_POLY& GetHoleOdPolysMap() const noexcept { return m_layerHoleOdPolys; }
451
452private:
458 bool createBoardPolygon( wxString* aErrorMsg );
459 void createLayers( std::shared_ptr<REPORTER> aStatusReporter, std::stop_token aStop );
460 void destroyLayers();
461
462 // Helper functions to create the board
463 void createTrackWithMargin( const PCB_TRACK* aTrack, CONTAINER_2D_BASE* aDstContainer, PCB_LAYER_ID aLayer,
464 int aMargin = 0 );
465
466 // Generate the pad shape on board layers. The pad hole is not generated by createPadWithMargin
467 void createPadWithMargin( const PAD *aPad, CONTAINER_2D_BASE* aDstContainer, PCB_LAYER_ID aLayer,
468 const VECTOR2I& aMargin ) const;
469
470 // Generate the hole shape of aPad, stored in aDstContainer
471 void createPadHoleShape( const PAD* aPad, CONTAINER_2D_BASE* aDstContainer, int aInflateValue );
472
473 void addPads( const FOOTPRINT* aFootprint, CONTAINER_2D_BASE* aDstContainer, PCB_LAYER_ID aLayerId );
474
475 void addFootprintShapes( const FOOTPRINT* aFootprint, CONTAINER_2D_BASE* aDstContainer, PCB_LAYER_ID aLayerId,
476 const std::bitset<LAYER_3D_END>& aVisibilityFlags );
477
478 void addText( const EDA_TEXT* aText, CONTAINER_2D_BASE* aDstContainer, const BOARD_ITEM* aOwner );
479
480 void addBarCode( const PCB_BARCODE* aBarCode, CONTAINER_2D_BASE* aDstContainer, const BOARD_ITEM* aOwner );
481
482 void addShape( const PCB_SHAPE* aShape, CONTAINER_2D_BASE* aContainer, const BOARD_ITEM* aOwner,
483 PCB_LAYER_ID aLayer );
484
485 void addShape( const PCB_DIMENSION_BASE* aDimension, CONTAINER_2D_BASE* aDstContainer, const BOARD_ITEM* aOwner );
486
487 void addShape( const PCB_TEXTBOX* aTextBox, CONTAINER_2D_BASE* aContainer, const BOARD_ITEM* aOwner );
488
489 void addTable( const PCB_TABLE* aTable, CONTAINER_2D_BASE* aContainer, const BOARD_ITEM* aOwner );
490
491 void addSolidAreasShapes( const ZONE* aZone, CONTAINER_2D_BASE* aDstContainer, PCB_LAYER_ID aLayerId );
492
493 void createArcSegments( const VECTOR2I& aCentre, const VECTOR2I& aStart, const EDA_ANGLE& aArcAngle,
494 int aCircleToSegmentsCount, int aWidth, CONTAINER_2D_BASE* aContainer,
495 const BOARD_ITEM& aOwner );
496
497 void buildPadOutlineAsSegments( const PAD* aPad, PCB_LAYER_ID aLayer, CONTAINER_2D_BASE* aDstContainer,
498 int aWidth );
499
500public:
501 static std::vector<CUSTOM_COLOR_ITEM> g_SilkColors;
502 static std::vector<CUSTOM_COLOR_ITEM> g_MaskColors;
503 static std::vector<CUSTOM_COLOR_ITEM> g_PasteColors;
504 static std::vector<CUSTOM_COLOR_ITEM> g_FinishColors;
505 static std::vector<CUSTOM_COLOR_ITEM> g_BoardColors;
506
518
519public:
521
526
545
546 std::map<int, COLOR4D> m_ColorOverrides;
547 std::map<int, COLOR4D> m_BoardEditorColors;
548
549private:
552
557
560
563
566
569
574
579
581
584
589
594
597
602
604
607
608 std::map<PCB_LAYER_ID, float> m_layerZcoordTop;
609 std::map<PCB_LAYER_ID, float> m_layerZcoordBottom;
610
618
619 unsigned int m_trackCount;
621 unsigned int m_viaCount;
623 unsigned int m_holeCount;
625
631 static const wxChar* m_logTrace;
632
633};
634
635
636#endif // BOARD_ADAPTER_H
declared enumerations and flags
Bounding Box class definition.
std::map< PCB_LAYER_ID, SHAPE_POLY_SET * > MAP_POLY
A type that stores polysets for each layer id.
std::map< PCB_LAYER_ID, BVH_CONTAINER_2D * > MAP_CONTAINER_2D_BASE
A type that stores a container of 2d objects for each layer id.
Define an abstract camera.
MAP_CONTAINER_2D_BASE m_layerHoleMap
Holes for each layer.
BVH_CONTAINER_2D m_backdrillCutouts
Backdrill cutouts.
std::map< int, COLOR4D > m_BoardEditorColors
list of colors used by the board editor
double BiuTo3dUnits() const noexcept
Board integer units To 3D units.
BVH_CONTAINER_2D * m_offboardPadsBack
SFVEC4F m_BgColorTop
background top color
SFVEC4F m_ECO2Color
BVH_CONTAINER_2D m_frontCounterboreCutouts
Counterbore cutouts on front (top)
void SetVisibleLayers(const std::bitset< LAYER_3D_END > &aLayers)
static std::vector< CUSTOM_COLOR_ITEM > g_PasteColors
float m_solderPasteLayerThickness3DU
const MAP_CONTAINER_2D_BASE & GetLayerHoleMap() const noexcept
SFVEC4F GetLayerColor(int aLayerId) const
Get the technical color of a layer.
const BVH_CONTAINER_2D & GetBackCounterboreCutouts() const noexcept
Get the container of counterbore cutout geometry for the back (bottom) side.
std::map< PCB_LAYER_ID, float > m_layerZcoordBottom
Bottom (Start) Z pos of each layer.
void CreateLayers(std::shared_ptr< REPORTER > aStatusReporter, std::stop_token aStop=std::stop_token())
Creates the layers for the board, should be called after InitSettings.
SHAPE_POLY_SET m_TertiarydrillPolys
Board tertiary drill polygons F.Cu->in.
S3D_CACHE * m_3dModelManager
const SHAPE_POLY_SET * GetFrontPlatedCopperPolys()
SHAPE_POLY_SET m_backCounterborePolys
Counterbore outer diameters on back.
VECTOR2I m_boardPos
Board center position in board internal units.
float m_backCopperThickness3DU
bool GetUseBoardEditorCopperLayerColors() const
SHAPE_POLY_SET m_TH_ODPolys
PTH outer diameters.
static KIGFX::COLOR4D g_DefaultComments
SFVEC4F m_SolderPasteColor
in realistic mode: solder paste color
BBOX_3D m_boardBoundingBox
3D bounding box of the board in 3D units.
void createLayers(std::shared_ptr< REPORTER > aStatusReporter, std::stop_token aStop)
static KIGFX::COLOR4D g_DefaultBoardBody
SFVEC4F m_UserDefinedLayerColor[45]
const SHAPE_POLY_SET & GetBoardPoly() const noexcept
Get the current polygon of the epoxy board.
void addPads(const FOOTPRINT *aFootprint, CONTAINER_2D_BASE *aDstContainer, PCB_LAYER_ID aLayerId)
const SHAPE_POLY_SET & GetNPTH_ODPolys() const noexcept
unsigned int m_viaCount
static KIGFX::COLOR4D g_DefaultFabColor
const BVH_CONTAINER_2D * GetOffboardPadsFront() const noexcept
BVH_CONTAINER_2D m_frontCountersinkCutouts
Countersink cutouts on front (top)
const BVH_CONTAINER_2D & GetBackdrillCutouts() const noexcept
static KIGFX::COLOR4D g_DefaultSolderMask
std::map< int, COLOR4D > GetLayerColors() const
Build a color list which is used to store colors layers.
static std::vector< CUSTOM_COLOR_ITEM > g_BoardColors
const SHAPE_POLY_SET & GetViaTH_ODPolys() const noexcept
const MAP_POLY & GetPolyMap() const noexcept
Get map of polygon's layers.
void createTrackWithMargin(const PCB_TRACK *aTrack, CONTAINER_2D_BASE *aDstContainer, PCB_LAYER_ID aLayer, int aMargin=0)
MAP_POLY m_layerHoleOdPolys
Hole outer diameters (per layer)
void addSolidAreasShapes(const ZONE *aZone, CONTAINER_2D_BASE *aDstContainer, PCB_LAYER_ID aLayerId)
VECTOR2I GetBoardSize() const noexcept
Get the board size.
static std::vector< CUSTOM_COLOR_ITEM > g_MaskColors
const MAP_POLY & GetHoleOdPolysMap() const noexcept
static std::vector< CUSTOM_COLOR_ITEM > g_SilkColors
SHAPE_POLY_SET * m_frontPlatedCopperPolys
MAP_CONTAINER_2D_BASE m_layerMap
2D elements for each layer.
BVH_CONTAINER_2D m_TH_ODs
List of PTH outer diameters.
float m_frontMaskThickness3DU
float GetAverageTrackWidth() const noexcept
unsigned int m_trackCount
const BBOX_3D & GetBBox() const noexcept
Get the board outline bounding box.
float m_averageTrackWidth
SHAPE_POLY_SET m_board_poly
Board outline polygon.
std::bitset< LAYER_3D_END > GetVisibleLayers() const
SFVEC4F m_SolderMaskColorBot
in realistic mode: solder mask color ( bot )
const BVH_CONTAINER_2D & GetTertiarydrillCutouts() const noexcept
bool m_IsPreviewer
true if we're in a 3D preview panel, false for the standard 3D viewer
void addFootprintShapes(const FOOTPRINT *aFootprint, CONTAINER_2D_BASE *aDstContainer, PCB_LAYER_ID aLayerId, const std::bitset< LAYER_3D_END > &aVisibilityFlags)
void createArcSegments(const VECTOR2I &aCentre, const VECTOR2I &aStart, const EDA_ANGLE &aArcAngle, int aCircleToSegmentsCount, int aWidth, CONTAINER_2D_BASE *aContainer, const BOARD_ITEM &aOwner)
VECTOR2I GetBoardPos() const noexcept
Get the board center.
MAP_POLY m_layerHoleIdPolys
Hole inner diameters (per layer)
int GetHolePlatingThickness() const noexcept
Get the hole plating thickness (NB: in BOARD UNITS!).
const SHAPE_POLY_SET & GetBackCountersinkPolys() const noexcept
Get the polygon set of countersink outer diameters for the back (bottom) side.
const BVH_CONTAINER_2D & GetViaAnnuli() const noexcept
float GetLayerBottomZPos(PCB_LAYER_ID aLayerId) const noexcept
Get the bottom z position.
static KIGFX::COLOR4D g_DefaultECOs
const BVH_CONTAINER_2D * GetOffboardPadsBack() const noexcept
const SHAPE_POLY_SET & GetFrontCountersinkPolys() const noexcept
Get the polygon set of countersink outer diameters for the front (top) side.
const BVH_CONTAINER_2D & GetTH_IDs() const noexcept
SFVEC4F m_SolderMaskColorTop
in realistic mode: solder mask color ( top )
SFVEC4F GetColor(const COLOR4D &aColor) const
SHAPE_POLY_SET m_viaAnnuliPolys
Via annular ring outer diameters.
BVH_CONTAINER_2D * m_offboardPadsFront
float m_averageViaHoleDiameter
BVH_CONTAINER_2D m_viaTH_ODs
List of via hole outer diameters.
SHAPE_POLY_SET m_frontCounterborePolys
Counterbore outer diameters on front.
static KIGFX::COLOR4D g_DefaultBackgroundTop
const SHAPE_POLY_SET & GetFrontCounterborePolys() const noexcept
Get the polygon set of counterbore outer diameters for the front (top) side.
const BVH_CONTAINER_2D * GetPlatedPadsBack() const noexcept
const MAP_POLY & GetHoleIdPolysMap() const noexcept
BVH_CONTAINER_2D m_tertiarydrillCutouts
Tertiary drill cutouts.
float GetBackCopperThickness() const noexcept
SFVEC4F m_FFabColor
float m_averageHoleDiameter
static KIGFX::COLOR4D g_DefaultSurfaceFinish
SFVEC4F m_CopperColor
in realistic mode: copper color
SHAPE_POLY_SET m_viaTH_ODPolys
Via hole outer diameters.
void ReloadColorSettings() noexcept
void createPadWithMargin(const PAD *aPad, CONTAINER_2D_BASE *aDstContainer, PCB_LAYER_ID aLayer, const VECTOR2I &aMargin) const
float GetAverageViaHoleDiameter() const noexcept
void addBarCode(const PCB_BARCODE *aBarCode, CONTAINER_2D_BASE *aDstContainer, const BOARD_ITEM *aOwner)
SHAPE_POLY_SET m_BackdrillPolys
Board backdrill polygons B.Cu->in.
static std::vector< CUSTOM_COLOR_ITEM > g_FinishColors
SFVEC2F GetSphericalCoord(int i) const
unsigned int GetViaCount() const noexcept
const BOARD * GetBoard() const noexcept
BVH_CONTAINER_2D * m_platedPadsBack
std::bitset< LAYER_3D_END > GetDefaultVisibleLayers() const
SFVEC4F m_BCourtyardColor
void InitSettings(std::shared_ptr< REPORTER > aStatusReporter, std::shared_ptr< REPORTER > aWarningReporter)
Function to be called by the render when it need to reload the settings for the board.
void SetBoard(BOARD *aBoard) noexcept
Set current board to be rendered.
void buildPadOutlineAsSegments(const PAD *aPad, PCB_LAYER_ID aLayer, CONTAINER_2D_BASE *aDstContainer, int aWidth)
const SFVEC3F & GetBoardCenter() const noexcept
The board center position in 3D units.
std::map< PCB_LAYER_ID, float > m_layerZcoordTop
Top (End) Z pos of each layer in 3D units.
float GetFootprintZPos(bool aIsFlipped) const
Get the position of the footprint in 3d integer units considering if it is flipped or not.
float m_frontCopperThickness3DU
float m_backMaskThickness3DU
float GetNonCopperLayerThickness() const noexcept
Get the non copper layers thickness (in 3D units).
static KIGFX::COLOR4D g_DefaultSolderPaste
float GetLayerTopZPos(PCB_LAYER_ID aLayerId) const noexcept
Get the top z position.
const BVH_CONTAINER_2D & GetTH_ODs() const noexcept
float m_boardBodyThickness3DU
const MAP_CONTAINER_2D_BASE & GetLayerMap() const noexcept
Get the map of containers that have the objects per layer.
MAP_POLY m_layers_poly
Amalgamated polygon contours for various types of items.
VECTOR2I m_boardSize
Board size in board internal units.
SHAPE_POLY_SET * m_backPlatedCopperPolys
void SetLayerColors(const std::map< int, COLOR4D > &aColors)
EDA_3D_VIEWER_SETTINGS * m_Cfg
std::map< int, COLOR4D > m_ColorOverrides
allows to override color scheme colors
SFVEC4F m_SilkScreenColorTop
in realistic mode: SilkScreen color ( top )
void addTable(const PCB_TABLE *aTable, CONTAINER_2D_BASE *aContainer, const BOARD_ITEM *aOwner)
unsigned int GetHoleCount() const noexcept
SFVEC4F m_SilkScreenColorBot
in realistic mode: SilkScreen color ( bot )
bool IsFootprintShown(const FOOTPRINT *aFootprint) const
Test if footprint should be displayed in relation to attributes and the flags.
void createPadHoleShape(const PAD *aPad, CONTAINER_2D_BASE *aDstContainer, int aInflateValue)
const BVH_CONTAINER_2D * GetPlatedPadsFront() const noexcept
unsigned int GetCircleSegmentCount(float aDiameter3DU) const
SFVEC4F m_FCourtyardColor
static KIGFX::COLOR4D g_DefaultCourtyardColor
SHAPE_POLY_SET m_frontCountersinkPolys
Countersink outer diameters on front.
SFVEC4F m_BFabColor
float m_nonCopperLayerThickness3DU
float GetFrontCopperThickness() const noexcept
Get the copper layer thicknesses (in 3D units).
const BVH_CONTAINER_2D & GetViaTH_ODs() const noexcept
unsigned int m_holeCount
BVH_CONTAINER_2D m_viaAnnuli
List of via annular rings.
float GetBoardBodyThickness() const noexcept
Get the board body thickness, including internal copper layers (in 3D units).
const BVH_CONTAINER_2D & GetFrontCountersinkCutouts() const noexcept
Get the container of countersink cutout geometry for the front (top) side.
const SHAPE_POLY_SET & GetBackCounterborePolys() const noexcept
Get the polygon set of counterbore outer diameters for the back (bottom) side.
SFVEC4F m_BoardBodyColor
in realistic mode: FR4 board color
bool createBoardPolygon(wxString *aErrorMsg)
Create the board outline polygon.
float GetAverageHoleDiameter() const noexcept
const SHAPE_POLY_SET & GetViaAnnuliPolys() const noexcept
unsigned int m_copperLayersCount
BVH_CONTAINER_2D m_backCountersinkCutouts
Countersink cutouts on back (bottom)
BVH_CONTAINER_2D m_backCounterboreCutouts
Counterbore cutouts on back (bottom)
std::map< int, COLOR4D > GetDefaultColors() const
BVH_CONTAINER_2D m_TH_IDs
List of PTH inner diameters.
const SHAPE_POLY_SET & GetTertiarydrillPolys() const noexcept
SFVEC4F m_UserCommentsColor
static KIGFX::COLOR4D g_DefaultSilkscreen
BVH_CONTAINER_2D * m_platedPadsFront
void Set3dCacheManager(S3D_CACHE *aCacheMgr) noexcept
Update the cache manager pointer.
void addShape(const PCB_SHAPE *aShape, CONTAINER_2D_BASE *aContainer, const BOARD_ITEM *aOwner, PCB_LAYER_ID aLayer)
SFVEC3F m_boardCenter
3D center position of the board in 3D units.
SHAPE_POLY_SET m_NPTH_ODPolys
NPTH outer diameters.
const SHAPE_POLY_SET & GetBackdrillPolys() const noexcept
Get the backdrill and tertiary drill polygons.
SHAPE_POLY_SET m_backCountersinkPolys
Countersink outer diameters on back.
static KIGFX::COLOR4D g_DefaultBackgroundBot
bool Is3dLayerEnabled(PCB_LAYER_ID aLayer, const std::bitset< LAYER_3D_END > &aVisibilityFlags) const
Check if a layer is enabled.
SFVEC4F m_ECO1Color
SFVEC4F m_UserDrawingsColor
const SHAPE_POLY_SET * GetBackPlatedCopperPolys()
S3D_CACHE * Get3dCacheManager() const noexcept
const BVH_CONTAINER_2D & GetBackCountersinkCutouts() const noexcept
Get the container of countersink cutout geometry for the back (bottom) side.
double m_biuTo3Dunits
Scale factor to convert board internal units.
const BVH_CONTAINER_2D & GetFrontCounterboreCutouts() const noexcept
Get the container of counterbore cutout geometry for the front (top) side.
SFVEC4F m_BgColorBot
background bottom color
const SHAPE_POLY_SET & GetTH_ODPolys() const noexcept
Get through hole outside diameter 2D polygons.
void addText(const EDA_TEXT *aText, CONTAINER_2D_BASE *aDstContainer, const BOARD_ITEM *aOwner)
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition board_item.h:84
Information pertinent to a Pcbnew printed circuit board.
Definition board.h:409
Color settings are a bit different than most of the settings objects in that there can be more than o...
A mix-in class (via multiple inheritance) that handles texts such as labels, parts,...
Definition eda_text.h:94
A color representation with 4 components: red, green, blue, alpha.
Definition color4d.h:101
Definition pad.h:61
Abstract dimension API.
A pure virtual class used to derive REPORTER objects from.
Definition reporter.h:73
Cache for storing the 3D shapes.
Definition 3d_cache.h:53
Represent a set of closed polygons.
Handle a list of polygons defining a copper zone.
Definition zone.h:70
static const wxChar * m_logTrace
Trace mask used to enable or disable debug output for this class.
@ LAYER_3D_END
Definition layer_ids.h:648
PCB_LAYER_ID
A quick note on layer IDs:
Definition layer_ids.h:56
STL namespace.
Declaration of the cogl_att_list class.
Manage a bounding box defined by two SFVEC3F min max points.
Definition bbox_3d.h:39
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:683
glm::vec2 SFVEC2F
Definition xv3d_types.h:38
glm::vec3 SFVEC3F
Definition xv3d_types.h:40
glm::vec4 SFVEC4F
Definition xv3d_types.h:42