Revision 3513 branches/FMap_CAD/libraries/libFMap/src/com/iver/cit/gvsig/fmap/core/FMultiPoint2D.java

View differences:

FMultiPoint2D.java
52 52

  
53 53
import java.awt.Color;
54 54
import java.awt.Graphics2D;
55
import java.awt.geom.Point2D;
55 56
import java.awt.geom.Rectangle2D;
56 57
import java.io.IOException;
57 58

  
......
224 225
        draw(g,vp, symbol);
225 226
        
226 227
    }
228
	/**
229
	 * @see com.iver.cit.gvsig.fmap.core.IGeometry#move(double, double)
230
	 */
231
	public void move(double x, double y) {
232
	}
233
	/**
234
	 * @see com.iver.cit.gvsig.fmap.core.IGeometry#rotate(double, double, double)
235
	 */
236
	public void rotate(double r, double x, double y) {
237
	}
238
	/**
239
	 * @see com.iver.cit.gvsig.fmap.core.IGeometry#getHandlers()
240
	 */
241
	public Handler[] getHandlers(int type) {
242
		return null;
243
	}
244
	/**
245
	 * @see com.iver.cit.gvsig.fmap.core.IGeometry#scale(java.awt.geom.Point2D, double, double)
246
	 */
247
	public void scale(Point2D point, double x, double y) {
248
	}
249
	/**
250
	 * @see com.iver.cit.gvsig.fmap.core.IGeometry#getShapes()
251
	 */
252
	public FShape[] getShapes() {
253
		return null;
254
	}
255
	public boolean intersects(Rectangle2D r, double flatness) {
256
		return false;
257
	}
258
	public boolean intersectsBounds(Rectangle2D r) {
259
		return false;
260
	}
227 261
}

Also available in: Unified diff