コード例 #1
0
ファイル: GeometryUtils.java プロジェクト: ebocher/jts
 public static Geometry normalize(Geometry g) {
   Geometry g2 = (Geometry) g.clone();
   g2.normalize();
   return g2;
 }