Changeset 14619
- Timestamp:
- 04/17/13 09:48:18 (12 years ago)
- Location:
- issm/trunk-jpl/src/m/classes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/mesh.m
r14405 r14619 45 45 extractedvertices = NaN 46 46 extractedelements = NaN 47 end 48 methods (Static) 49 function obj = loadobj(obj) % {{{ 50 % This function is directly called by matlab when a model object is 51 % loaded. Update old properties here 52 53 %2012 June 28th 54 if numel(obj.edges)>1 & any(isnan(obj.edges(:))) 55 disp('Update model edges from previous version'); 56 obj.edges(isnan(obj.edges))=-1; 57 end 58 59 end% }}} 47 60 end 48 61 methods -
issm/trunk-jpl/src/m/classes/model/model.m
r14618 r14619 73 73 end 74 74 75 %2012 June 28th76 if numel(md.mesh.edges)>1 & any(isnan(md.mesh.edges))77 disp('Update model edges from previous version');78 md.mesh.edges(isnan(md.mesh.edges))=-1;79 end80 75 %2012 August 4th 81 76 if isa(md.materials,'materials'),
Note:
See TracChangeset
for help on using the changeset viewer.