Changeset 17201
- Timestamp:
- 01/30/14 13:44:33 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/plot/plot_unit.py
r13771 r17201 24 24 #element plot 25 25 if is2d: 26 p.tripcolor(x,y,elements,data,colorlevels )26 p.tripcolor(x,y,elements,data,colorlevels,edgecolors=edgecolor) 27 27 else: 28 28 raise ValueError('plot_unit error: 3D element plot not supported yet') … … 32 32 #node plot 33 33 if is2d: 34 p.tri contourf(x,y,elements,data,colorlevels)34 p.tripcolor(x,y,elements,data,colorlevels,edgecolors=edgecolor) 35 35 else: 36 36 raise ValueError('plot_unit error: 3D node plot not supported yet')
Note:
See TracChangeset
for help on using the changeset viewer.