Changeset 18559
- Timestamp:
- 10/01/14 10:40:01 (10 years ago)
- Location:
- issm/trunk-jpl/src/m/classes
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/mesh2d.m
r18558 r18559 30 30 end 31 31 methods (Static) 32 function self = load self(self) % {{{32 function self = loadobj(self) % {{{ 33 33 % This function is directly called by matlab when a model selfect is 34 34 % loaded. Update old properties here … … 38 38 oldself=self; 39 39 %Assign property values from struct 40 self=structto self(mesh2d(),oldself)40 self=structtoobj(mesh2d(),oldself) 41 41 if isfield(oldself,'hemisphere'), 42 42 disp('md.mesh.hemisphere has been automatically converted to EPSG code'); -
issm/trunk-jpl/src/m/classes/mesh2dvertical.m
r18558 r18559 29 29 end 30 30 methods (Static) 31 function self = load self(self) % {{{31 function self = loadobj(self) % {{{ 32 32 % This function is directly called by matlab when a model selfect is 33 33 % loaded. Update old properties here … … 37 37 oldself=self; 38 38 %Assign property values from struct 39 self=structto self(mesh2dvertical(),oldself)39 self=structtoobj(mesh2dvertical(),oldself) 40 40 if isfield(oldself,'hemisphere'), 41 41 disp('md.mesh.hemisphere has been automatically converted to EPSG code'); -
issm/trunk-jpl/src/m/classes/mesh3dprisms.m
r18558 r18559 40 40 end 41 41 methods (Static) 42 function self = load self(self) % {{{42 function self = loadobj(self) % {{{ 43 43 % This function is directly called by matlab when a model selfect is 44 44 % loaded. Update old properties here … … 48 48 oldself=self; 49 49 %Assign property values from struct 50 self=structto self(mesh3dprisms(),oldself)50 self=structtoobj(mesh3dprisms(),oldself) 51 51 if isfield(oldself,'hemisphere'), 52 52 disp('md.mesh.hemisphere has been automatically converted to EPSG code'); -
issm/trunk-jpl/src/m/classes/mesh3dtetras.m
r18558 r18559 40 40 end 41 41 methods (Static) 42 function self = load self(self) % {{{42 function self = loadobj(self) % {{{ 43 43 % This function is directly called by matlab when a model selfect is 44 44 % loaded. Update old properties here … … 48 48 oldself=self; 49 49 %Assign property values from struct 50 self=structto self(mesh3dtetras(),oldself)50 self=structtoobj(mesh3dtetras(),oldself) 51 51 if isfield(oldself,'hemisphere'), 52 52 disp('md.mesh.hemisphere has been automatically converted to EPSG code');
Note:
See TracChangeset
for help on using the changeset viewer.