mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 22:34:56 +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>
415 B
415 B
Code Style Guidelines
This project follows these conventions:
- Keep code PEP 8 compliant. Use
blackformatting with default settings. - Type annotations are required for all public functions and classes.
- Do not use monkey patching. Any changes to third party libraries must be done via subclassing or wrapper functions instead of modifying objects at runtime.
These rules apply to all code contributions.