Changeset 972


Ignore:
Timestamp:
Feb 28, 2005, 5:15:15 PM (20 years ago)
Author:
duncan
Message:

removing prints

Location:
inundation/ga/storm_surge/pmesh
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • inundation/ga/storm_surge/pmesh/mesh.py

    r971 r972  
    12151215            points.append((vertex.x,vertex.y))
    12161216        shape = alpha_shape.alpha_shape.Alpha_Shape(points, alpha = alpha)
    1217         print "mesh boundary_type",boundary_type
    12181217        shape.set_boundary_type(flag = boundary_type)
    12191218        boundary_segs = shape.get_boundary()
  • inundation/ga/storm_surge/pmesh/pmesh.py

    r971 r972  
    627627        if dialog.use_optimum.get() == SET_ALPHA:
    628628            if dialog.alphaValueOk:
    629                 print "dialog.boundary_type.get()",dialog.boundary_type.get()
    630629                self.autoSegment(alpha = dialog.alpha,
    631630                                 boundary_type=dialog.boundary_type.get())
     
    634633                      'Bad alpha value.')
    635634        else:
    636             print "pmesh dialog.boundary_type.get()",dialog.boundary_type.get()
    637            
    638635            self.autoSegment(boundary_type=dialog.boundary_type.get())
    639636           
Note: See TracChangeset for help on using the changeset viewer.