Statistics
| Revision:

root / trunk / libraries / libTopology / src / org / gvsig / jts / Cracker.java @ 13329

History | View | Annotate | Download (446 Bytes)

1
package org.gvsig.jts;
2

    
3
import com.vividsolutions.jts.geom.Geometry;
4

    
5

    
6
/**
7
 *Cracks the geometries of a topology's layers to force
8
 *the sharing of coordinates
9
 *
10
 */
11
public class Cracker {
12
 
13
        /**
14
         *Receives many geometries, cheks if the shared
15
         *geometry is explicit, and if not, adds vertex
16
         *in common points to ensure the sharing of common geometries
17
         */
18
        public static Geometry[] crack(Geometry[] geoms2crack) {
19
                return null;
20
        }
21
         
22
}
23