Class TriProcessor

java.lang.Object
  extended by TriProcessor

public abstract class TriProcessor
extends Object

Abstract class with a single user-provided method to process generated triangulations


Constructor Summary
TriProcessor()
           
 
Method Summary
abstract  boolean process(Triangulation tri, TriGenerator trigen)
          User-defined routine to process a single triangulation and decide whether it should be kept in the current catalog.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TriProcessor

public TriProcessor()
Method Detail

process

public abstract boolean process(Triangulation tri,
                                TriGenerator trigen)
User-defined routine to process a single triangulation and decide whether it should be kept in the current catalog.

Parameters:
tri - the triangulation to be processed
Returns:
a flag indicating whether the triangulation should be kept in the catalog under construction. If no such catalog is being built, the flag is ignored.