aewallin / openvoronoi

2D voronoi diagram for point and line-segment sites using incremental topology-oriented algorithm. C++ with python bindings. Licensed under LGPL2.1.
http://www.anderswallin.net/cam/
GNU Lesser General Public License v2.1
198 stars 68 forks source link

only supports VTK version 5, VTK 6 incompatible? #29

Open aewallin opened 8 years ago

aewallin commented 8 years ago

Apparently VTK version 6 has some incompatibilities with VTK version 5.

A note should be added that openvoronoi visualization scripts only work with VTK version 5. or the scripts rewritten so they work on the latest VTK release.

Blokkendoos commented 6 years ago

Modified all the python examples for VTK6 in my fork (merged with jtpedersen's SVG fork). Most of them run (on OS X) except for the following: • hilbert_curve_1_vd.py => endless loop? • line-segment/lineseg_50_animation.py and point_animation.py => signature mismatch addVertexSite() • voronoi_10_step_animation.py => getSeedVertex() missing in VoronoiDiagram • poisson_stat_3.py => 'poisson/N10000_S0.pickle.gz' file not found

aewallin commented 6 years ago

This is merged now. The problematic example-scripts mentioned above still deserve a look.