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 (C) 1992-2024 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_ExportBoardBody( true ),
47 m_ExportComponents( true ),
48 m_ExportTracksVias( false ),
49 m_ExportPads( false ),
50 m_ExportZones( false ),
51 m_ExportInnerCopper( false ),
52 m_ExportSilkscreen( false ),
53 m_ExportSoldermask( false ),
54 m_FuseShapes( false ),
55 m_OptimizeStep( true ),
56 m_Format( FORMAT::STEP ),
57 m_OutputFile()
58 {};
59
60 enum class FORMAT
61 {
62 STEP,
63 BREP,
64 XAO,
65 GLB,
66 PLY,
67 STL
68 };
69
70 wxString m_NetFilter;
72
74
94 wxString m_OutputFile;
95
96 wxString GetDefaultExportExtension() const;
97 wxString GetFormatName() const;
98};
99
100
102{
103public:
105 wxString GetDescription() override;
106
107 enum class FORMAT
108 {
109 UNKNOWN, // defefer to arg
110 STEP,
111 BREP,
112 XAO,
113 GLB,
114 VRML,
115 PLY,
116 STL
117 };
118
119 enum class VRML_UNITS
120 {
121 INCHES,
123 METERS,
124 TENTHS // inches
125 };
126
128 wxString m_filename;
129
131
134
138};
139
140#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:79
#define BOARD_DEFAULT_CHAINING_EPSILON
#define KICOMMON_API
Definition: kicommon.h:28