Skip to main content

SemanticDelta

Kind: Class
Domain: Modeling and geometry
Canonical import: from cadflow import SemanticDelta

Signature

class SemanticDelta(created: 'Tuple[SemanticRef, ...]' = (), modified: 'Tuple[SemanticRef, ...]' = (), deleted: 'Tuple[SemanticRef, ...]' = (), metadata: 'Dict[str, Any]' = <factory>) -> None

Description

Semantic entity change set attached to a single recorded operation.

Parameters

NameTypeRequiredDefaultSource description
created'Tuple[SemanticRef, ...]'no()Not explicitly described in the source docstring.
modified'Tuple[SemanticRef, ...]'no()Not explicitly described in the source docstring.
deleted'Tuple[SemanticRef, ...]'no()Not explicitly described in the source docstring.
metadata'Dict[str, Any]'no&lt;factory&gt;Not 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
created'Tuple[SemanticRef, ...]'()
modified'Tuple[SemanticRef, ...]'()
deleted'Tuple[SemanticRef, ...]'()
metadata'Dict[str, Any]'factory

Behavior and constraints

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

Import check

from cadflow import SemanticDelta

See also