Skip to main content

SceneCompileOptions

Kind: Class
Domain: Scene and artifacts
Canonical import: from cadflow import SceneCompileOptions

Signature

class SceneCompileOptions(linear_tolerance: 'float' = 0.1, angular_tolerance: 'float' = 0.08, embed_source: 'bool' = False, embed_presentation: 'bool' = False) -> None

Description

SceneCompileOptions(linear_tolerance: 'float' = 0.1, angular_tolerance: 'float' = 0.08, embed_source: 'bool' = False, embed_presentation: 'bool' = False)

Other public imports

  • from cadflow.scene import SceneCompileOptions

Parameters

NameTypeRequiredDefaultSource description
linear_tolerance'float'no0.1Not explicitly described in the source docstring.
angular_tolerance'float'no0.08Not explicitly described in the source docstring.
embed_source'bool'noFalseNot explicitly described in the source docstring.
embed_presentation'bool'noFalseNot explicitly described in the source docstring.

Returns

Type: None

The source docstring does not declare additional return semantics.

Errors

The source docstring does not declare a narrower exception contract. Invalid types, values, ownership, paths, or backend state may still raise the corresponding public error.

Data fields

NameTypeDefault
linear_tolerance'float'0.1
angular_tolerance'float'0.08
embed_source'bool'False
embed_presentation'bool'False

Behavior and constraints

  • Instances are immutable dataclass values; update workflows return a replacement value.

Import check

from cadflow import SceneCompileOptions

See also