Revision 20861 trunk/libraries/libFMap_geometries/src/org/gvsig/fmap/geom/primitive/GeneralPathX.java

View differences:

GeneralPathX.java
68 68
import java.util.ArrayList;
69 69

  
70 70
import org.cresques.cts.ICoordTrans;
71
import org.gvsig.fmap.geom.util.FConverter;
71
import org.gvsig.fmap.geom.util.Converter;
72 72

  
73 73
import sun.awt.geom.Crossings;
74 74
import sun.awt.geom.Curve;
......
340 340
     */
341 341
    public boolean isClosed()
342 342
    {
343
		PathIterator theIterator = getPathIterator(null, FConverter.FLATNESS); //polyLine.getPathIterator(null, flatness);
343
		PathIterator theIterator = getPathIterator(null, Converter.FLATNESS); //polyLine.getPathIterator(null, flatness);
344 344
		double[] theData = new double[6];
345 345
        double xFinal = 0;
346 346
        double yFinal = 0;
......
792 792
     */
793 793
    public void flip()
794 794
	{
795
		PathIterator theIterator = getPathIterator(null, FConverter.FLATNESS); //polyLine.getPathIterator(null, flatness);
795
		PathIterator theIterator = getPathIterator(null, Converter.FLATNESS); //polyLine.getPathIterator(null, flatness);
796 796
		double[] theData = new double[6];
797 797
        //Coordinate first = null;
798 798
        CoordinateList coordList = new CoordinateList();
......
990 990
    {
991 991
        //int i;
992 992

  
993
		PathIterator theIterator = getPathIterator(null, FConverter.FLATNESS); //polyLine.getPathIterator(null, flatness);
993
		PathIterator theIterator = getPathIterator(null, Converter.FLATNESS); //polyLine.getPathIterator(null, flatness);
994 994
		double[] theData = new double[6];
995 995
        Coordinate first = null;
996 996
        CoordinateList coordList = new CoordinateList();

Also available in: Unified diff