Squirrel8475
Squirrel8475
Hello, I ran the training and testing with the settings available in the files and could not reproduce the results either. The segmentation of the players is OK, but not...
Hello, I have problems too. As no working example popped out in the last five years, I was wondering if it is about users not handling the function properly (suggested...
Thank you for your quick reply. Indeed arriving from a `Geom_Surface` and trying to downcast with `Geom_BoundedSurface` does not work. But additionnally, starting from a a `Geom_BSplineSurface` which is a...
- If I understand properly the code detailed above and initiated by @MAN90 , `Geom_BoundedSurface.DownCast()` returns `None` , so `geomlib.ExtendSurfByLength` can't work because it receives `None` as input. So there...
`BRepOffset_Tool.EnlargeFace` works for my application. Thank you for your help The meaning of the options is not fully clear to me though. I did not try `BRepOffset_Tool.ExtentFace` and I have...
@tpaviot sure, I just needed a bit more time but please find below the code snippet and the obtained results.  ```python # -*- coding: utf-8 -*- from OCC.Core.gp import...
Thank you for your feedback @fandaL , but as described, the first example (beam) ran perfectly, there is no problem with the path. The problem is the inp file generated...
@fandaL I have replaced the command: ```python subprocess.call(os.path.normpath(path_calculix) + " " + os.path.join(path, file_nameW), shell=True) ``` by: ```python command=os.path.normpath(path_calculix) + " " + os.path.join(path, file_nameW) a=subprocess.run(command, stdout=subprocess.PIPE) print(a.stdout.decode('utf-8')) ``` to...
The code was an attempt to illustrate the problem, indeed not reflecting the work flow. The work flow is as follow: two independant apps are running. -The first handles Bezier...
In case additionnal details are needed, please let me know @tpaviot