Drop the 3d command in favor of direct
This commit is contained in:
parent
f770500bb4
commit
5eac1840a0
|
@ -128,9 +128,9 @@ struct COMMAND_ENTRY
|
|||
|
||||
static CLI::PCB_COMMAND pcbCmd{};
|
||||
static CLI::PCB_DRC_COMMAND pcbDrcCmd{};
|
||||
static CLI::PCB_EXPORT_3D_COMMAND exportPcb3dCmd{ "3d" };
|
||||
static CLI::PCB_EXPORT_DRILL_COMMAND exportPcbDrillCmd{};
|
||||
static CLI::PCB_EXPORT_DXF_COMMAND exportPcbDxfCmd{};
|
||||
static CLI::PCB_EXPORT_3D_COMMAND exportPcb3dCmd{ "glb", JOB_EXPORT_PCB_3D::FORMAT::GLB };
|
||||
static CLI::PCB_EXPORT_3D_COMMAND exportPcbStepCmd{ "step", JOB_EXPORT_PCB_3D::FORMAT::STEP };
|
||||
static CLI::PCB_EXPORT_SVG_COMMAND exportPcbSvgCmd{};
|
||||
static CLI::PCB_EXPORT_PDF_COMMAND exportPcbPdfCmd{};
|
||||
|
|
|
@ -411,9 +411,6 @@ void DIALOG_EXPORT_STEP::onExportButton( wxCommandEvent& aEvent )
|
|||
|
||||
cmdK2S.Append( wxT( " pcb" ) );
|
||||
cmdK2S.Append( wxT( " export" ) );
|
||||
cmdK2S.Append( wxT( " 3d" ) );
|
||||
|
||||
cmdK2S.Append( wxT( " --format" ) );
|
||||
|
||||
if( fn.GetExt() == GltfBinaryFileExtension )
|
||||
cmdK2S.Append( wxT( " glb" ) );
|
||||
|
|
Loading…
Reference in New Issue