View Javadoc

1   package cz.cuni.amis.pogamut.defcon.utils.quadtree;
2   
3   /**
4    * Interface for quadtree labeling methods.
5    * 
6    * @author Radek 'Black_Hand' Pibil
7    * 
8    */
9   public interface IQuadTreeLabelingMethod {
10  
11  	boolean label(QuadTreeNode node);
12  }