Manifold WASM Developer Guide
ManifoldCAD.org
ManifoldCAD User Guide
JS/TS/WASM API
C++ API
Algorithm Description
Blog Posts
GitHub
Preparing search index...
lib/export-model
Exporter
Interface Exporter
Through this interface, manifoldCAD can infer what formats each exporter may support.
interface
Exporter
{
exportFormats
:
{
extension
:
string
;
mimetype
:
string
}
[]
;
toArrayBuffer
:
(
doc
:
Document
,
options
?:
{
extension
?:
string
;
mimetype
?:
string
}
,
)
=>
Promise
<
ArrayBuffer
>
;
}
Index
Properties
export
Formats
to
Array
Buffer
Properties
export
Formats
exportFormats
:
{
extension
:
string
;
mimetype
:
string
}
[]
to
Array
Buffer
toArrayBuffer
:
(
doc
:
Document
,
options
?:
{
extension
?:
string
;
mimetype
?:
string
}
,
)
=>
Promise
<
ArrayBuffer
>
Settings
Member Visibility
Protected
Inherited
Theme
OS
Light
Dark
On This Page
Properties
export
Formats
to
Array
Buffer
ManifoldCAD.org
ManifoldCAD User Guide
JS/TS/WASM API
C++ API
Algorithm Description
Blog Posts
GitHub
Manifold WASM Developer Guide
Loading...
Through this interface, manifoldCAD can infer what formats each exporter may support.