Changeset 1431


Ignore:
Timestamp:
May 19, 2005, 2:26:25 PM (19 years ago)
Author:
duncan
Message:

dsg update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • inundation/ga/storm_surge/alpha_shape/alpha_shape.py

    r1420 r1431  
    22Determine the shape of a set of points.
    33
     4From website by Kaspar Fischer:
    45As mentionned in Edelsbrunner's and Mucke's paper, one can
    56intuitively think of an alpha-shape as the following:
    6 test
     7
    78Imagine a huge mass of ice-cream making up the space and containing
    89the points S as ``hard'' chocolate pieces. Using one of these
     
    2122import random
    2223
    23 class PointError(exceptions.Exception): pass
    24 class FlagError(exceptions.Exception): pass
     24class AlphaError(exceptions.Exception):pass
     25class PointError(AlphaError): pass
     26class FlagError(AlphaError): pass
    2527
    2628OUTPUT_FILE_TITLE = "# The alpha shape boundary defined by point index pairs of edges"
Note: See TracChangeset for help on using the changeset viewer.