Import CAD projects and cad-router v1

This commit is contained in:
Jerry
2026-07-22 19:38:36 +08:00
parent e4e0199bd5
commit af9f630c11
2253 changed files with 1994207 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
# Var
## Class Definition
```python
class Var(name: str, default: float, comment: str | None = None, expr_id: str = field(default_factory=lambda : _make_expr_id('var')))
```
*Source: expr.py*
## Import Surface
- top-level: `from simplecadapi import Var`
## Description
Named scalar parameter with a default fallback value.