コード例 #1
0
ファイル: geometry.py プロジェクト: Anoopsmohan/django-1
 def difference(self, other):
     """
     Returns a Geometry representing the points making up this Geometry
     that do not make up other.
     """
     return self._topology(capi.geos_difference(self.ptr, other.ptr))
コード例 #2
0
 def difference(self, other):
     """
     Returns a Geometry representing the points making up this Geometry
     that do not make up other.
     """
     return self._topology(capi.geos_difference(self.ptr, other.ptr))