pyvoro
pyvoro copied to clipboard
2D and 3D Voronoi tessellations: a python entry point for the voro++ library
-re-cythonized the voroplusplus.pyx with Cython 3.0.0, where issues related to changes in Python 3.11 were fixed -also fixed a tiny type cast in the pyx file, which errors out in...
Hi, i need some help to install the package. My Python Version ist 3.11.3. During the installation process i got always the following error messages: Collecting pyvoro Downloading pyvoro-1.3.2.tar.gz (123...
I tried the sample code. I get the results. But when I tried using the JSON format, I end up with errors. `write() argument must be str, not list` 1....
Add pyro.compute_3d_ voronoi method: reduce memory requirements, allow points exclusion from the calculation, and specify the properties to be retrieved for each cell. The calculation is performed in a slightly...
On initial import, a `RecursionError` is thrown. I have tried both installing `pyvoro` with `pip install pyvoro` and cloning and installing with `python setup.py install --user`. Both give the same...
Got the following error while installing the library ``` Traceback (most recent call last): File "weighted_voro.py", line 1, in import pyvoro File "/home/shamsad/Documents/garbage/thesis_simulation/lib/python3.5/site-packages/pyvoro/__init__.py", line 1, in import voroplusplus File "voroplusplus.pyx",...
I have tested and found that it works for 225,000 data points, however, it failed for 250,000 data points, which should be related to memory error. Is there any solution...
It seems that for all python tools that calculate voronoi indexes, it can only take all data points to calculate voronoi indexes for all data points. However, for above 250,000...
Issue with pyvoro as distributed on pypi When running the main.py file: import pyvoro print('success?') (test_env) .../test$ python3 main.py Traceback (most recent call last): File "main.py", line 1, in import...
Hi, I wanna know how to plot the result of the Voronoi partition in Matplotlib and uniquely colourize the individual faces. Can you show me a example?