Changeset 27070
- Timestamp:
- 06/16/22 17:15:44 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/branches/trunk-larour-SLPS2022/src/m/mesh/meshintersect3d.m
r25685 r27070 46 46 if count>1000, 47 47 disp(['could not find a vertex matching vertex ' num2str(i) ' of input mesh!']); 48 disp('Might think about changing tolerance increment'); 49 error(''); 48 figure(1), plot3(x,y,z,'.'); hold on; plot3(xs,ys,zs,'r.'); 49 error('Might think about changing tolerance increment'); 50 %use this figure to figure out what's going on: 50 51 end 51 52 tolerance=tolerance+tolincrement; … … 55 56 if tolerance>maxtol, 56 57 disp(['found matching vertices ' num2str(s) ' in output mesh for input mesh vertex ' num2str(i) ]); 57 disp(' however, these vertices are farther that the max tolerance allowed!'); 58 error(''); 58 error(' however, these vertices are farther that the max tolerance allowed!'); 59 59 end 60 60
Note:
See TracChangeset
for help on using the changeset viewer.