in reply to Confused about 3D geometry / algebra

My computational geometry library was looking a little barren; so, following BrowserUk's advice, I looked around and found the following list of modules.
#!/usr/bin/perl use strict; use warnings; use CPAN; CPAN::Shell->force('install', "Algorithm::Cluster", "Algorithm::ClusterPoints", "Algorithm::SVM", "Algorithm::SVMLight", "Bundle::Math", "Geometry::Primitive", "PDL", "SOOT");
In addition to the modules, I'd recommend getting the current release of CGAL. You'll be needing CMake to install CGAL.

Replies are listed 'Best First'.
Re^2: Confused about 3D geometry / algebra
by tomdbs98 (Beadle) on Jun 04, 2010 at 13:49 UTC
    I will definitely have a look at those modules but I was hoping to try implementing something that is my own first for both the experience and freedom.