Changeset 1381
- Timestamp:
- May 12, 2005, 2:21:32 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/ga/storm_surge/alpha_shape/alpha_shape.py
r1364 r1381 4 4 import exceptions 5 5 from Numeric import array, Float, divide_safe, sqrt, product 6 from load_mesh.loadASCII import load_points_file, export_boundary_file6 from load_mesh.loadASCII import import_points_file, export_boundary_file 7 7 import random 8 8 … … 15 15 def alpha_shape_via_files(point_file, boundary_file, alpha= None): 16 16 17 point_dict = load_points_file(point_file)17 point_dict = import_points_file(point_file) 18 18 points = point_dict['pointlist'] 19 19 #title_string = point_dict['title']
Note: See TracChangeset
for help on using the changeset viewer.