first commit

This commit is contained in:
2026-07-22 13:48:46 +08:00
commit c87751c3dc
2820 changed files with 726976 additions and 0 deletions
@@ -0,0 +1,31 @@
# replay_graph
## API Definition
```python
def replay_graph(graph: OperationGraph, *, strict: bool = True) -> List[Any]
```
*Source: serializer.py*
## Import Surface
- top-level: `from simplecadapi import replay_graph`
## Description
Replay an OperationGraph to rebuild the model.
Executes nodes in topological order. Primitives are created from their
parameters; boolean operations consume upstream outputs.
## Parameters
### graph
- **Description**: The graph to replay.
## Returns
List of leaf-node outputs. These may be solids, faces, wires, edges,
or vertices depending on the workflow.