Revision 4711 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/core/FMultiPoint2D.java

View differences:

FMultiPoint2D.java
90 90
		int hw = 4;
91 91

  
92 92
		for (int i = 0; i < points.length; i++) {
93
			Point2D.Double p = new Point2D.Double(points[i].getX(), points[i].getY()); 
93
			Point2D.Double p = new Point2D.Double(points[i].getX(), points[i].getY());
94 94
			vp.getAffineTransform().transform(p, p);
95 95
			g.setColor(Color.red);
96 96
			g.fillOval((int) p.x - size, (int) p.y - size, (int) hw, (int) hw);
......
286 286
		{
287 287
			points[i].transform(at);
288 288
		}
289
		
289

  
290 290
	}
291 291
	public byte[] toWKB() throws IOException {
292 292
		// TODO Auto-generated method stub
293 293
		return null;
294 294
	}
295
	public boolean contains(IGeometry g) {
296
		return false;
297
	}
298
	public boolean intersects(IGeometry geom) {
299
		return false;
300
	}
295 301
}

Also available in: Unified diff