Skip to content

Commit 46d152c

Browse files
committed
BUG: Output triangle mesh should be a positional output
1 parent f9ba30b commit 46d152c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wasm/ITKCleaverWasm.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Mesher(itk::wasm::Pipeline & pipeline, std::vector<const TImage *> & inputImages
3131
using MeshType = itk::Mesh<typename ImageType::PixelType, 3>;
3232
using OutputMeshType = itk::wasm::OutputMesh<MeshType>;
3333
OutputMeshType outputTriangleMesh;
34-
pipeline.add_option("-t,--triangle", outputTriangleMesh, "Output triangle mesh")->type_name("OUTPUT_MESH");
34+
pipeline.add_option("triangle", outputTriangleMesh, "Output triangle mesh")->type_name("OUTPUT_MESH");
3535

3636
double sigma = 1.0;
3737
pipeline.add_option("-s,--sigma", sigma, "Blending function sigma for input(s) to remove alias artifacts.");

0 commit comments

Comments
 (0)