drufat / triangle

Python bindings to the triangle library
GNU Lesser General Public License v3.0
224 stars 53 forks source link

Updated *voronoi* in __init__.py: #25

Closed icemtel closed 5 years ago

icemtel commented 6 years ago

Addressing the issue topic I started - #24

    ray_origin = e[-fltr][:, 0]
    ray_direct = n[-fltr]

To

    ray_origin = e[~fltr][:, 0]
    ray_direct = n[~fltr]

I don't know if that will work in older versions of numpy though.

drufat commented 5 years ago

Sorry, I just saw this. Must have missed it in my emails. Merged.