Martin Siggel

Results 91 comments of Martin Siggel

> My hypothesis is that it is some kind of ABI mismatch due to wrong compiler version. @adam-urbanczyk I experienced the same issue in our c++ only library TiGL. Like...

The problem is in your callback function recognize_clicked. ```python for shape in shp: # this should be a TopoDS_Face TODO check it is print("Face selected: ", shape) recognize_face(topods_Face(shape)) ``` `shape`...

The local context is not supported anymore. Please refer to the occt documentation for more information.

Hi guys. I know this class only from c++, where it is an interface class actually. It is meant to implement a custom progress indicator and hand it over to...

As pythonOCC is a direct mapping of the opencascade C++ API, it is directly tied to a specific API version, namely 7.5.2. To update to OCCT 7.6.0, the swig bindings...

@trelau I think it should be considered to combine both code bases of pyocct and pythonocc since both have different strengths (I like the abstractions in pyocct). Pyocct also inspired...

@trelau + @tpaviot Returning handles by reference argument (not as return value) does not work with the current implementation of the transparent handles. I assumed, that this is not required,...

@tpaviot I don't know, how many functions are affected. We could use the generator to count the number of functions.

Yes, non const handle references are a potential return value.

Here are my two cents to the pybind / swig discussion: Personally, I really like pybind11. It is very easy to use and powerful. But there are also some downsides...