We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a29965 commit fbd8a43Copy full SHA for fbd8a43
python/plugins/fTools/tools/doGeoprocessing.py
@@ -605,8 +605,9 @@ def union( self ):
605
try:
606
if geom.intersects( tmpGeom ):
607
found = True
608
- diff_geom = QgsGeometry( diff_geom.difference( tmpGeom ) )
+ diff_geom = QgsGeometry( geom.difference( tmpGeom ) )#
609
int_geom = QgsGeometry( geom.intersection( tmpGeom ) )
610
+ print "found"
611
if int_geom.wkbType() == 7:
612
int_com = geom.combine( tmpGeom )
613
int_sym = geom.symDifference( tmpGeom )
0 commit comments