Changeset 7553


Ignore:
Timestamp:
Nov 4, 2009, 1:46:27 PM (14 years ago)
Author:
nariman
Message:

Added a provision for "point" plot in Interpolation_function

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_core/source/anuga/utilities/polygon.py

    r7516 r7553  
    762762            if s == 'line': colour.append('b-')
    763763            if s == 'outside': colour.append('r.')
     764            if s == 'point': colour.append('g.')
    764765            if s <> 'line':
    765766                if s <> 'outside':
    766                     colour.append(s)
     767                    if s <> 'point':
     768                        colour.append(s)
    767769
    768770    for i, item in enumerate(polygons_points):
Note: See TracChangeset for help on using the changeset viewer.