Revision 885 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/core/FPoint2D.java

View differences:

FPoint2D.java
7 7
import java.awt.geom.Point2D;
8 8
import java.awt.geom.Rectangle2D;
9 9

  
10
import org.cresques.cts.ICoordTrans;
10 11

  
12

  
11 13
/**
12 14
 * Punto 2D.
13 15
 *
......
128 130
		return new FPoint2D(p.getX(), p.getY());
129 131
	}
130 132

  
133
	/* (non-Javadoc)
134
	 * @see com.iver.cit.gvsig.fmap.core.FShape#reProject(org.cresques.cts.ICoordTrans)
135
	 */
136
	public void reProject(ICoordTrans ct) {
137
		p = ct.convert(p,p);
138
		
139
	}
140

  
131 141
}

Also available in: Unified diff