How to Install and Uninstall perl-Math-ConvexHull-MonotoneChain Package on openSUSE Leap

Last updated: February 17,2025

1. Install "perl-Math-ConvexHull-MonotoneChain" package

This is a short guide on how to install perl-Math-ConvexHull-MonotoneChain on openSUSE Leap

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

2. Uninstall "perl-Math-ConvexHull-MonotoneChain" package

Here is a brief guide to show you how to uninstall perl-Math-ConvexHull-MonotoneChain on openSUSE Leap:

$ sudo zypper remove perl-Math-ConvexHull-MonotoneChain

3. Information about the perl-Math-ConvexHull-MonotoneChain package on openSUSE Leap

Information for package perl-Math-ConvexHull-MonotoneChain:
-----------------------------------------------------------
Repository : Main Repository
Name : perl-Math-ConvexHull-MonotoneChain
Version : 0.01-bp155.2.10
Arch : x86_64
Vendor : openSUSE
Installed Size : 13.8 KiB
Installed : No
Status : not installed
Source package : perl-Math-ConvexHull-MonotoneChain-0.01-bp155.2.10.src
Upstream URL : http://search.cpan.org/dist/Math-ConvexHull-MonotoneChain/
Summary : Andrew's monotone chain algorithm for finding a convex hull in 2D
Description :
This is somewhat experimental still.
This (XS) module optionally exports a single function 'convex_hull' which
calculates the convex hull of the input points and returns it. The
algorithm is 'O(n log n)' due to having to sort the input list, but should
be somewhat faster than a plain Graham's scan (also 'O(n log n)') in
practice since it avoids polar coordinates.