FrancoTonutti
FrancoTonutti
```python from pyautocad import Autocad import array acad = Autocad(create_if_not_exists=True) points_2d = [0, 0, 1, 1, 2, 1] points_double = array.array("d", points_2d) acad.model.AddLightWeightPolyline(points_double) points_3d = [0, 0, 0, 1, 1,...
```python from pyautocad import Autocad import array acad = Autocad(create_if_not_exists=True) points_3d = [0, 0, 0, 1, 1, 0, 2, 1, 0] points_double = array.array("d", points_3d) mline = acad.model.AddMLine(points_double) mline.MLineScale =...
Thank you very much for your help With pyinstaller I get this error when executing, and many warnings when compiling .kivy/logs when executing ``` [INFO ] Logger: Record log in...
I tried, but `kivy_hooks.hiddenimports` raises an attribute error ```AttributeError: module 'kivy.tools.packaging.pyinstaller_hooks' has no attribute 'hiddenimports'``` So I tried this setup.py, however it doesn't work, I get the same output.log and...
Are you using Revit 2025? Unfortunately, pyrevit does not work with this version yet. https://github.com/pyrevitlabs/pyRevit/pull/2088 https://github.com/pyrevitlabs/pyRevit/pull/2190