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 "job.h"
27
28// Default value to chain 2 shapes when creating the board outlines
29// from shapes on Edges.Cut layer
30#define BOARD_DEFAULT_CHAINING_EPSILON 0.01
31
33{
34public:
36 m_Origin(),
37 m_Overwrite( false ),
38 m_UseGridOrigin( false ),
39 m_UseDrillOrigin( false ),
40 m_UseDefinedOrigin( false ),
41 m_UsePcbCenterOrigin( false ),
43 m_IncludeDNP( true ),
44 m_SubstModels( true ),
46 m_BoardOnly( false ),
47 m_CutViasInBody( false ),
48 m_ExportBoardBody( true ),
49 m_ExportComponents( true ),
50 m_ExportTracksVias( false ),
51 m_ExportPads( false ),
52 m_ExportZones( false ),
53 m_ExportInnerCopper( false ),
54 m_ExportSilkscreen( false ),
55 m_ExportSoldermask( false ),
56 m_FuseShapes( false ),
57 m_FillAllVias( false ),
58 m_OptimizeStep( true ),
61 {};
62
75
76 wxString m_NetFilter;
78
80
104 wxString m_OutputFile;
105
106 wxString GetDefaultExportExtension() const;
107 wxString GetFormatName() const;
108};
109
110
112{
113public:
115 wxString GetDefaultDescription() const override;
116 wxString GetSettingsDialogTitle() const override;
117
119
120 enum class FORMAT
121 {
122 UNKNOWN, // defefer to arg
133 };
134
135 enum class VRML_UNITS
136 {
137 INCH, // Do not use IN: it conflicts with a Windows header
140 TENTHS // inches
141 };
142
143public:
145 wxString m_filename;
146
148
151
155};
156
157#endif
wxString GetFormatName() const
wxString GetDefaultExportExtension() const
JOB_EXPORT_PCB_3D::FORMAT m_format
wxString GetSettingsDialogTitle() const override
void SetStepFormat(EXPORTER_STEP_PARAMS::FORMAT aFormat)
wxString GetDefaultDescription() const override
EXPORTER_STEP_PARAMS m_3dparams
Despite the name; also used for other formats.
JOB(const std::string &aType, bool aOutputIsDirectory)
Definition job.cpp:26
#define BOARD_DEFAULT_CHAINING_EPSILON
#define KICOMMON_API
Definition kicommon.h:28
VECTOR2< double > VECTOR2D
Definition vector2d.h:694