How to Install and Uninstall perl-Math-Geometry-Voronoi Package on openSuSE Tumbleweed

Last updated: May 18,2024

1. Install "perl-Math-Geometry-Voronoi" package

Please follow the steps below to install perl-Math-Geometry-Voronoi on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Math-Geometry-Voronoi

2. Uninstall "perl-Math-Geometry-Voronoi" package

Please follow the guidance below to uninstall perl-Math-Geometry-Voronoi on openSuSE Tumbleweed:

$ sudo zypper remove perl-Math-Geometry-Voronoi

3. Information about the perl-Math-Geometry-Voronoi package on openSuSE Tumbleweed

Information for package perl-Math-Geometry-Voronoi:
---------------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Math-Geometry-Voronoi
Version : 1.3-3.42
Arch : x86_64
Vendor : openSUSE
Installed Size : 54.8 KiB
Installed : No
Status : not installed
Source package : perl-Math-Geometry-Voronoi-1.3-3.42.src
Upstream URL : http://search.cpan.org/dist/Math-Geometry-Voronoi/
Summary : compute Voronoi diagrams from sets of points
Description :
This module computes Voronoi diagrams from a set of input points. Info on
Voronoi diagrams can be found here:
http://en.wikipedia.org/wiki/Voronoi_diagram
This module is a wrapper around a C implementation found here:
http://www.derekbradley.ca/voronoi.html
Which is itself a modification of code by Steve Fortune, the inventor of
the algorithm used (Fortune's algorithm):
http://cm.bell-labs.com/who/sjf/
I made changes to the C code to allow reading input and writing output
to/from Perl data-structures. I also modified the memory allocation code to
use Perl's memory allocator. Finally, I changed all floats to doubles to
provide better precision and to match Perl's NVs.