Two bug fixes, and better visualizations!

This commit is contained in:
Rowan Cockett
2013-07-12 12:08:17 -07:00
parent d0de9afacb
commit 200d0df157
3 changed files with 26 additions and 18 deletions
+1 -1
View File
@@ -128,7 +128,7 @@ class BaseMesh(object):
def nN():
doc = "Total number of nodes"
fget = lambda self: self.n + 1
fget = lambda self: np.prod(self.n + 1)
return locals()
nN = property(**nN())