Exemplo n.º 1
0
 // Given a face finds its node in the tree
 public FaceNode findNode(Face f)
 {
     if (root.face == f)
     {
         return(root);
     }
     else
     {
         root.findNode(f);
     }
     return(null);
 }