KiCad PCB EDA Suite
Loading...
Searching...
No Matches
job_export_pcb_3d.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) 2022 Mark Roszko <[email protected]>
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation, either version 3 of the License, or (at your
10 * option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21#ifndef JOB_EXPORT_STEP_H
22#define JOB_EXPORT_STEP_H
23
24#include <kicommon.h>
25#include <math/vector2d.h>
26#include <wx/string.h>
27#include "job.h"
28
29// Default value to chain 2 shapes when creating the board outlines
30// from shapes on Edges.Cut layer
31#define BOARD_DEFAULT_CHAINING_EPSILON 0.01
32
34{
35public:
37 m_Origin(),
38 m_Overwrite( false ),
39 m_UseGridOrigin( false ),
40 m_UseDrillOrigin( false ),
41 m_IncludeUnspecified( true ),
42 m_IncludeDNP( true ),
43 m_SubstModels( true ),
44 m_BoardOutlinesChainingEpsilon( BOARD_DEFAULT_CHAINING_EPSILON ),
45 m_BoardOnly( false ),
46 m_CutViasInBody( false ),
47 m_ExportBoardBody( true ),
48 m_ExportComponents( true ),
49 m_ExportTracksVias( false ),
50 m_ExportPads( false ),
51 m_ExportZones( false ),
52 m_ExportInnerCopper( false ),
53 m_ExportSilkscreen( false ),
54 m_ExportSoldermask( false ),
55 m_FuseShapes( false ),
56 m_FillAllVias( false ),
57 m_OptimizeStep( true ),
58 m_Format( FORMAT::STEP ),
59 m_OutputFile()
60 {};
61
62 enum class FORMAT
63 {
64 STEP,
65 BREP,
66 XAO,
67 GLB,
68 PLY,
69 STL
70 };
71
72 wxString m_NetFilter;
74
76
98 wxString m_OutputFile;
99
100 wxString GetDefaultExportExtension() const;
101 wxString GetFormatName() const;
102};
103
104
106{
107public:
109 wxString GetDefaultDescription() const override;
110 wxString GetSettingsDialogTitle() const override;
111
112 void SetStepFormat( EXPORTER_STEP_PARAMS::FORMAT aFormat );
113
114 enum class FORMAT
115 {
116 UNKNOWN, // defefer to arg
117 STEP,
118 BREP,
119 XAO,
120 GLB,
121 VRML,
122 PLY,
123 STL
124 };
125
126 enum class VRML_UNITS
127 {
128 INCHES,
130 METERS,
131 TENTHS // inches
132 };
133
135 wxString m_filename;
136
138
141
145};
146
147#endif
JOB_EXPORT_PCB_3D::FORMAT m_format
EXPORTER_STEP_PARAMS m_3dparams
Despite the name; also used for other formats.
An simple container class that lets us dispatch output jobs to kifaces.
Definition: job.h:182
#define BOARD_DEFAULT_CHAINING_EPSILON
#define KICOMMON_API
Definition: kicommon.h:28