Package repast.simphony.space.continuous
Class AbstractPointTranslator
java.lang.Object
repast.simphony.space.continuous.AbstractPointTranslator
- All Implemented Interfaces:
PointTranslator
- Direct Known Subclasses:
BouncyBorders,StickyBorders,StrictBorders,WrapAroundBorders
Implements transform according to default continuous space moveTo semantics. Namely, transform will throw
a SpatialException if the target location is off the grid.
- Version:
- $Revision$ $Date$
- Author:
- Nick Collier
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected voidboundsCheck(int i, double value) voidinit(Dimensions dimensions) Initializes this with the given dimensions.protected static doubleminusEpsilon(double amount) voidtransform(double[] transformedLocation, double... targetLocation) Transform the given targetLocation according to default moveTo semantics.voidTransform the given targetLocation according to default moveTo semantics.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface repast.simphony.space.continuous.PointTranslator
isPeriodic, translate, translate
-
Field Details
-
dimensions
-
-
Constructor Details
-
AbstractPointTranslator
public AbstractPointTranslator()
-
-
Method Details
-
init
Initializes this with the given dimensions.- Specified by:
initin interfacePointTranslator- Parameters:
dimensions- the dimensions of the space
-
transform
public void transform(double[] transformedLocation, double... targetLocation) throws SpatialException Transform the given targetLocation according to default moveTo semantics. Namely, if the target location is within the grid dimensions then that location becomes the new transformedLocation. Otherwise, this will throw a SpatialException.- Specified by:
transformin interfacePointTranslator- Parameters:
transformedLocation- the coordinates once they have been transformed by this GridPointTranslatortargetLocation- the new target location whose coordinates will be transformed- Throws:
SpatialException- if the transform is invalid. For example, if the new location is outside of the grid.
-
boundsCheck
protected void boundsCheck(int i, double value) -
transform
public void transform(NdPoint transformedLocation, double... targetLocation) throws SpatialException Transform the given targetLocation according to default moveTo semantics. Namely, if the target location is within the grid dimensions then that location becomes the new transformedLocation. Otherwise, this will throw a SpatialException.- Specified by:
transformin interfacePointTranslator- Parameters:
transformedLocation- the coordinates once they have been transformed by this GridPointTranslatortargetLocation- the new target location whose coordinates will be transformed- Throws:
SpatialException- if the transform is invalid. For example, if the new location is outside of the grid.
-
minusEpsilon
protected static double minusEpsilon(double amount)
-