com.esri.aims.mtier.model.map.projection
Class Densify

java.lang.Object
  extended by com.esri.aims.mtier.model.map.projection.Densify
All Implemented Interfaces:
Serializable

public class Densify
extends Object
implements Serializable

This class sets the interval used for adding points. The process of data densification adds points to a layer before the layer is projected.

See Also:
Serialized Form

Constructor Summary
Densify()
          Constructs an instance of the Densify object.
 
Method Summary
 double getTolerance()
          Returns the tolerance value associated with this Densify object.
 void setTolerance(double value)
          Sets the tolerance value for the Densify object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Densify

public Densify()
Constructs an instance of the Densify object. Example:
 Densify densify = new Densify();
 

Method Detail

setTolerance

public void setTolerance(double value)
Sets the tolerance value for the Densify object. Example:
 densify.setTolerance(1.0);
 

Parameters:
value - the tolerance value. Defines the distance (tolerance) between points and is applied on geometry before projection takes place.
See Also:
getTolerance()

getTolerance

public double getTolerance()
Returns the tolerance value associated with this Densify object. Example:
 double tolerance = densify.getTolerance();
 

Returns:
the tolerance factor as double
See Also:
setTolerance(double)