cli → zoo → kcl

zoo kcl export

Export a kcl file as any other supported CAD file format.

Options

input
The path to the input kcl file to export. If you pass - as the path, the file will be read from stdin
output-dir
The path to a directory to output the files
-t/--output-format
A valid output file format
Possible values: fbx | glb | gltf | obj | ply | step | stl
-s/--src-unit
The source unit to use for the kcl file
Possible values: cm | ft | in | m | mm | yd
Default value: mm
-f/--format
Command output format
Possible values: json | yaml | table
-d/--debug
Print debug info
Default value: false
-h/--help
Print help (see a summary with '-h')

About

# convert kcl to obj
$ zoo kcl export --output-format=obj my-file.kcl output_dir

# convert kcl to step
$ zoo kcl export --output-format=step my-obj.kcl .

# pass a file to convert from stdin
$ cat my-obj.kcl | zoo kcl export --output-format=step - output_dir

See also