Changeset 1431
- Timestamp:
- May 19, 2005, 2:26:25 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/ga/storm_surge/alpha_shape/alpha_shape.py
r1420 r1431 2 2 Determine the shape of a set of points. 3 3 4 From website by Kaspar Fischer: 4 5 As mentionned in Edelsbrunner's and Mucke's paper, one can 5 6 intuitively think of an alpha-shape as the following: 6 test 7 7 8 Imagine a huge mass of ice-cream making up the space and containing 8 9 the points S as ``hard'' chocolate pieces. Using one of these … … 21 22 import random 22 23 23 class PointError(exceptions.Exception): pass 24 class FlagError(exceptions.Exception): pass 24 class AlphaError(exceptions.Exception):pass 25 class PointError(AlphaError): pass 26 class FlagError(AlphaError): pass 25 27 26 28 OUTPUT_FILE_TITLE = "# The alpha shape boundary defined by point index pairs of edges"
Note: See TracChangeset
for help on using the changeset viewer.