Changeset 7276 for anuga_core/source/anuga/utilities/quad.py
- Timestamp:
- Jun 30, 2009, 2:07:41 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/utilities/quad.py
r6158 r7276 184 184 #y = self.mesh.coordinates[point][1] 185 185 node = self.mesh.get_node(point, absolute=True) 186 print "node", node187 print "(" + str(node[0]) + "," + str(node[1]) + ")"188 raise 'point not in region: %s' %str(point)186 msg = ('point not in region: %s\nnode=%s' 187 % (str(point), str(node))) 188 raise Exception, msg 189 189 190 190
Note: See TracChangeset
for help on using the changeset viewer.