Math::ConvexHull version 1.00
=============================

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.

INSTALLATION

To install this module type the following:

   perl Makefile.PL
   make
   make test
   make install

DEPENDENCIES

This module requires these other modules and libraries:

  Test::More

SEE ALSO

New versions of this module may be found on http://steffen-mueller.net or
on CPAN.

COPYRIGHT AND LICENCE

Copyright (C) 2003 Steffen Mueller <hull-module at steffen-mueller dot net>

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself. 

