Merge pull request #49 from simpeg/quadtree

Quadtree and OcTree
This commit is contained in:
Rowan Cockett
2014-02-12 19:21:34 -08:00
5 changed files with 2009 additions and 379 deletions
+1
View File
@@ -136,6 +136,7 @@ def callHooks(match, mainFirst=False):
def dependentProperty(name, value, children, doc):
def fget(self): return getattr(self,name,value)
def fset(self, val):
if getattr(self,name,value) == val: return # it is the same!
for child in children:
if hasattr(self, child):
delattr(self, child)