cadquery
cadquery copied to clipboard
A python parametric CAD scripting framework based on OCCT
* At least use `_` to check the bodies * try to integrate multiple dispatch with overloads * Ignore `overloaded function has no attribute "register" [attr-defined]`? * `@tcast(Any,loft).register` ? See...
Currently oveload docstrings are simply ignored. Possible solutions (TBC): * https://sphinx-immaterial.readthedocs.io/en/latest/apidoc/python/apigen.html * https://sphinx-toolbox.readthedocs.io/en/latest/extensions/more_autodoc/index.html
The following ```python a = Workplane("XY") a = a.box(9, 20, 4) a = a.faces("X") a = a.hole(2) ``` generates  in which the hole is rotated 90 degrees from the...
First, I'm new to CAD (but not to programming). I find the OpenSCAD approach (especially when extended by BOSL2) very attractive and intuitive. However there is an important missing feature...
Make it possible to annotate parameters with type information. It is very important for parameters that need to default to None.
From python docs: If one of those methods does not support the operation with the supplied arguments, it should return [NotImplemented](https://docs.python.org/3/library/constants.html#NotImplemented). It currently just calls .union(), which leads to raising...
In `doc/installation.rst`, under the CQ-editor installation instructions, it says ``` To run from command.: $HOME/cq-editor/run.sh ``` However if you try and run this command while not already inside the cq-editor...
The attached image is the screenshot of the door STEP model opened in FreeCAD, and the assembly tree structure is on the left. Is it possible to just keep the...