forked from geodmms/xdgnjobs

Dennis Kao
2014-01-15 94ae08701bbd7585a0b7e5a92d1975965a503c03
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.ximple.io.dgn7;
 
//~--- non-JDK imports --------------------------------------------------------
 
import com.vividsolutions.jts.geom.Geometry;
import com.vividsolutions.jts.geom.GeometryFactory;
 
/**
 * GeometryConverter
 *
 * @author Ulysses
 * @version 0.1
 * @since 2006/5/18
 */
public interface GeometryConverter {
    public Geometry toGeometry(GeometryFactory factory);
}