Added intersection tool to Drawing Tool.

This commit is contained in:
jpcaram
2015-02-06 16:10:15 -05:00
parent e353413cd3
commit 23b20ba716
8 changed files with 74 additions and 3 deletions

View File

@@ -12,10 +12,13 @@ class FCProcess(object):
self.descr = descr
def __del__(self):
# print "#######################"
# print "# FCProcess.__del__() #"
# print "#######################"
self.done()
def done(self):
print "FCProcess.done()"
# print "FCProcess.done()"
for fcn in self.callbacks["done"]:
fcn(self)
@@ -108,7 +111,7 @@ class FCVisibleProcessContainer(QtCore.QObject, FCProcessContainer):
self.something_changed.emit()
def update_view(self):
print "FCVisibleProcessContainer.update_view()"
# print "FCVisibleProcessContainer.update_view()"
if len(self.procs) == 0:
self.view.set_idle()