Changeset 972
- Timestamp:
- Feb 28, 2005, 5:15:15 PM (20 years ago)
- Location:
- inundation/ga/storm_surge/pmesh
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/ga/storm_surge/pmesh/mesh.py
r971 r972 1215 1215 points.append((vertex.x,vertex.y)) 1216 1216 shape = alpha_shape.alpha_shape.Alpha_Shape(points, alpha = alpha) 1217 print "mesh boundary_type",boundary_type1218 1217 shape.set_boundary_type(flag = boundary_type) 1219 1218 boundary_segs = shape.get_boundary() -
inundation/ga/storm_surge/pmesh/pmesh.py
r971 r972 627 627 if dialog.use_optimum.get() == SET_ALPHA: 628 628 if dialog.alphaValueOk: 629 print "dialog.boundary_type.get()",dialog.boundary_type.get()630 629 self.autoSegment(alpha = dialog.alpha, 631 630 boundary_type=dialog.boundary_type.get()) … … 634 633 'Bad alpha value.') 635 634 else: 636 print "pmesh dialog.boundary_type.get()",dialog.boundary_type.get()637 638 635 self.autoSegment(boundary_type=dialog.boundary_type.get()) 639 636
Note: See TracChangeset
for help on using the changeset viewer.