Statistics
| Revision:

root / trunk / libraries / libTopology / src / org / gvsig / topology / topologyrules / LineMustNotSelfIntersect.java @ 13329

History | View | Annotate | Download (386 Bytes)

1
package org.gvsig.topology.topologyrules;
2

    
3
import org.gvsig.topology.AbstractTopologyRule;
4
import org.gvsig.topology.IOneLyrRule;
5

    
6

    
7
/**
8
 *Lines of a layer must not have self intersections.
9
 *JTS allows this. This is one of the restrictions that must
10
 *not have pseudonodos checks.
11
 *
12
 */
13
public class LineMustNotSelfIntersect extends AbstractTopologyRule implements IOneLyrRule {
14
 
15
}
16