CGAL / cgal-swig-bindings

CGAL bindings using SWIG
Other
346 stars 93 forks source link

No module CGAL_Point_set_processing_3 #173

Closed Rayna-Zhang closed 4 years ago

Rayna-Zhang commented 4 years ago

I try to run Point_set_processing_3_example.py, but It failed with: ModuleNotFoundError: No module named 'CGAL.CGAL_Point_set_processing_3'

is it possible to use this package now? or is there sth I missed? Thank you

sloriot commented 4 years ago

Did you compile it? Do you have an issue with all the packages or only this one?

Rayna-Zhang commented 4 years ago

Did you compile it? Do you have an issue with all the packages or only this one?

Yeah, I try test.py and it's ok, but when I try run Point_set_processing_3_example.py, it failed.

sloriot commented 4 years ago

Strange. Do you have CGAL/CGAL_Point_set_processing_3.py in your python build directory?

Rayna-Zhang commented 4 years ago

Strange. Do you have CGAL/CGAL_Point_set_processing_3.py in your python build directory? no this one, only its .cxx

sloriot commented 4 years ago

You might have a compilation error or a cmake message saying it cannot be compiled.

Rayna-Zhang commented 4 years ago

You might have a compilation error or a cmake message saying it cannot be compiled. Yeah, thanks for giving me clues. I find that for using Point_set_processing, it needs the dependency eigen. I install it and re-compile again and it now works. Thank you :)