Class Hull

java.lang.Object
   |
   +----Hull

public class Hull
extends Object
A class defining the main program for convex hull construction.

See Also:
ConvexHull

Constructor Index

 o Hull()

Method Index

 o main(String[])
The main program that reads a file containing a list of 3D points, constructs their convex hull, and writes it to a file in the OFF format.

Constructors

 o Hull
 public Hull()

Methods

 o main
 public static void main(String args[]) throws IOException, ConvexHullException
The main program that reads a file containing a list of 3D points, constructs their convex hull, and writes it to a file in the OFF format. usage: Hull infile outfile

Parameters:
args - command-line arguments
Throws: ConvexHullException
if hull construction fails.