mirror of
https://git.freebsd.org/ports.git
synced 2025-06-04 04:16:27 -04:00
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
7 lines
446 B
Text
7 lines
446 B
Text
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.
|