We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbe32a7 commit fc199f2Copy full SHA for fc199f2
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