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

Last updated: May 21,2024

1. Install "perl-Math-ConvexHull" package

Learn how to install perl-Math-ConvexHull on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Math-ConvexHull

2. Uninstall "perl-Math-ConvexHull" package

Here is a brief guide to show you how to uninstall perl-Math-ConvexHull on openSuSE Tumbleweed:

$ sudo zypper remove perl-Math-ConvexHull

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

Information for package perl-Math-ConvexHull:
---------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Math-ConvexHull
Version : 1.04-3.29
Arch : noarch
Vendor : openSUSE
Installed Size : 13.4 KiB
Installed : No
Status : not installed
Source package : perl-Math-ConvexHull-1.04-3.29.src
Upstream URL : http://search.cpan.org/dist/Math-ConvexHull/
Summary : Calculate convex hulls using Graham's scan (n*log(n))
Description :
'Math::ConvexHull' is a simple module that calculates convex hulls from a
set of points in 2D space. It is a straightforward implementation of the
algorithm known as Graham's scan which, with complexity of O(n*log(n)), is
the fastest known method of finding the convex hull of an arbitrary set of
points. There are some methods of eliminating points that cannot be part of
the convex hull. These may or may not be implemented in a future version.
The implementation cannot deal with duplicate points. Therefore, points
which are very, very close (think floating point close) to the previous
point are dropped since version 1.02 of the module. However, if you pass in
randomly ordered data which contains duplicate points, this safety measure
might not help you. In that case, you will have to remove duplicates
yourself.