Changeset 13085
- Timestamp:
- 08/17/12 14:19:49 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/plot/processmesh.m
r13009 r13085 20 20 if ~strcmpi(getfieldvalue(options,'coord','xy'),'latlon'), 21 21 x=md.mesh.x; 22 if is field(md.mesh,'x2d'), x2d=md.mesh.x2d; end22 if isprop(md.mesh,'x2d'), x2d=md.mesh.x2d; end 23 23 y=md.mesh.y; 24 if is field(md.mesh,'y2d'), y2d=md.mesh.y2d; end24 if isprop(md.mesh,'y2d'), y2d=md.mesh.y2d; end 25 25 else 26 26 x=md.mesh.long; 27 %x2d=md.mesh.x2d; this sounds like something that was forgotten28 27 y=md.mesh.lat; 29 %y2d=md.mesh.y2d;30 28 end 31 29 … … 40 38 41 39 42 if is field(md.mesh,'elements2d'), elements2d=md.mesh.elements2d; end40 if isprop(md.mesh,'elements2d'), elements2d=md.mesh.elements2d; end 43 41 elements=md.mesh.elements; 44 42
Note:
See TracChangeset
for help on using the changeset viewer.