Changeset 2548 for inundation-numpy-branch/utilities/polygon.py
- Timestamp:
- Mar 15, 2006, 12:14:12 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation-numpy-branch/utilities/polygon.py
r2531 r2548 4 4 """ 5 5 6 7 try: 8 from scipy import Float, Int, zeros, ones, array, concatenate, reshape, dot 9 except: 10 print 'Could not find scipy - using Numeric' 11 from Numeric import Float, Int, zeros, ones, array, concatenate, reshape, dot 12 13 6 from numpy import Float, Int, zeros, ones, array, concatenate, reshape, dot 14 7 from math import sqrt 8 15 9 from utilities.numerical_tools import ensure_numeric 16 10
Note: See TracChangeset
for help on using the changeset viewer.