Changeset 2019


Ignore:
Timestamp:
Nov 11, 2005, 12:03:04 PM (18 years ago)
Author:
duncan
Message:

added comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • inundation/pmesh/load_mesh/loadASCII.py

    r1657 r2019  
    953953
    954954###
    955 #  IMPORT/EXPORT XYA FILES
     955#  IMPORT/EXPORT POINTS FILES
    956956###
    957957
     
    10381038   
    10391039def reduce_pts(infile, outfile, max_points, verbose = False):
     1040    """
     1041    reduces a points file by removong every second point until the # of points
     1042    is less than max_points.
     1043    """
    10401044    point_atts = _read_pts_file(infile)
    10411045    while point_atts['pointlist'].shape[0] > max_points:
Note: See TracChangeset for help on using the changeset viewer.