com.threerings.media.util
Interface AStarPathUtil.ExtendedTraversalPred

All Superinterfaces:
AStarPathUtil.TraversalPred
Enclosing class:
AStarPathUtil

public static interface AStarPathUtil.ExtendedTraversalPred
extends AStarPathUtil.TraversalPred

Provides extended traversibility information when computing paths.


Method Summary
 boolean canTraverse(Object traverser, int sx, int sy, int dx, int dy)
          Requests to know if the specific traverser (which was provided in the call to AStarPathUtil.getPath(TraversalPred,Object,int,int,int,int,int,boolean)) can traverse from the specified source tile coordinate to the specified destination tile coordinate.
 
Methods inherited from interface com.threerings.media.util.AStarPathUtil.TraversalPred
canTraverse
 

Method Detail

canTraverse

boolean canTraverse(Object traverser,
                    int sx,
                    int sy,
                    int dx,
                    int dy)
Requests to know if the specific traverser (which was provided in the call to AStarPathUtil.getPath(TraversalPred,Object,int,int,int,int,int,boolean)) can traverse from the specified source tile coordinate to the specified destination tile coordinate.