Revision 43002 trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.fmap.geometry/org.gvsig.fmap.geometry.api/src/main/java/org/gvsig/fmap/geom/Geometry.java

View differences:

Geometry.java
510 510

  
511 511
	public byte[] convertToWKBForcingType(int srs, int type)
512 512
		throws GeometryOperationNotSupportedException, GeometryOperationException;
513
	
513

  
514 514
	/**
515 515
	 * Return a byte array with the equivalent in EWKB format of the Geometry.
516 516
	 *
......
521 521
	 */
522 522
	public byte[] convertToEWKB() throws GeometryOperationNotSupportedException, GeometryOperationException;
523 523

  
524
    public byte[] convertToEWKB(int srs) 
524
    public byte[] convertToEWKB(int srs)
525 525
    		throws GeometryOperationNotSupportedException, GeometryOperationException;
526 526

  
527
    public byte[] convertToEWKBForcingType(int srs, int type) 
527
    public byte[] convertToEWKBForcingType(int srs, int type)
528 528
    		throws GeometryOperationNotSupportedException, GeometryOperationException;
529 529

  
530 530

  
......
891 891
     * @throws GeometryOperationException
892 892
     */
893 893
    public boolean out(Geometry geometry) throws GeometryOperationNotSupportedException, GeometryOperationException;
894

  
895
    /**
896
     * Return true if the geometry can be transformed by the affine transform
897
     *
898
     * @param at the affine transform
899
     * @return
900
     */
901
    public boolean canBeTransformed(AffineTransform at);
902

  
903
    /**
904
     * Return true if the geometry can be reprojected by the coordinate transformation
905
     *
906
     * @param ct the coordinate transformation
907
     * @return
908
     */
909
    public boolean canBeReprojected(ICoordTrans ct);
910

  
894 911
}

Also available in: Unified diff