mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
Python wrapper around CadQuery for simplified 3D CAD operations with clean API for creating shapes, performing boolean operations, and exporting to various formats. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
17 lines
365 B
Python
17 lines
365 B
Python
"""CadQueryWrapper package."""
|
|
|
|
from .validator import ValidationError, Validator, load_rules, validate
|
|
from .save_validator import SaveValidator
|
|
from .project import CadQueryWrapper
|
|
from .logger import get_logger
|
|
|
|
__all__ = [
|
|
"Validator",
|
|
"SaveValidator",
|
|
"ValidationError",
|
|
"load_rules",
|
|
"validate",
|
|
"CadQueryWrapper",
|
|
"get_logger",
|
|
]
|