1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
function [node, elem] = meshcheckrepair(node, elem, opt, varargin)
%
% [node,elem]=meshcheckrepair(node,elem,opt)
%
% check and repair a surface mesh
%
% author: Qianqian Fang, <q.fang at neu.edu>
% date: 2008/10/10
%
% input/output:
% node: input/output, surface node list, dimension (nn,3)
% elem: input/output, surface face element list, dimension (be,3)
% opt: options, including
% 'dupnode': remove duplicated nodes
% 'dupelem' or 'duplicated': remove duplicated elements
% 'dup': both above
% 'isolated': remove isolated nodes
% 'open': abort when open surface is found
% 'deep': call external jmeshlib to remove non-manifold vertices
% 'meshfix': repair a closed surface by the meshfix utility (new)
% it can remove self-intersecting elements and fill holes
% 'intersect': test a surface for self-intersecting elements
%
% -- this function is part of iso2mesh toolbox (http://iso2mesh.sf.net)
%
extra = varargin2struct(varargin{:});
if (nargin < 3 || strcmp(opt, 'dupnode') || strcmp(opt, 'dup'))
l1 = size(node, 1);
[node, elem] = removedupnodes(node, elem, jsonopt('Tolerance', 0, extra));
l2 = size(node, 1);
if (l2 ~= l1)
fprintf(1, '%d duplicated nodes were removed\n', l1 - l2);
end
end
if (nargin < 3 || strcmp(opt, 'duplicated') || strcmp(opt, 'dupelem') || strcmp(opt, 'dup'))
l1 = size(elem, 1);
elem = removedupelem(elem);
l2 = length(elem);
if (l2 ~= l1)
fprintf(1, '%d duplicated elements were removed\n', l1 - l2);
end
end
if (nargin < 3 || strcmp(opt, 'isolated'))
l1 = length(node);
[node, elem] = removeisolatednode(node, elem);
l2 = length(node);
if (l2 ~= l1)
fprintf(1, '%d isolated nodes were removed\n', l1 - l2);
end
end
if (nargin == 3 && strcmp(opt, 'open'))
eg = surfedge(elem);
if (~isempty(eg))
error('open surface found, you need to enclose it by padding zeros around the volume');
end
end
if (nargin < 3 || strcmp(opt, 'deep'))
exesuff = getexeext;
exesuff = fallbackexeext(exesuff, 'jmeshlib');
deletemeshfile(mwpath('post_sclean.off'));
saveoff(node(:, 1:3), elem(:, 1:3), mwpath('pre_sclean.off'));
[status, output] = system([' "' mcpath('jmeshlib') exesuff '" "' mwpath('pre_sclean.off') '" "' mwpath('post_sclean.off') '"']);
if (status)
error(['jmeshlib command failed: ' output]);
end
[node, elem] = readoff(mwpath('post_sclean.off'));
end
exesuff = fallbackexeext(getexeext, 'meshfix');
moreopt = ' -q -a 0.01 ';
if (isstruct(extra) && isfield(extra, 'MeshfixParam'))
moreopt = extra.MeshfixParam;
end
if (nargin >= 3 && strcmp(opt, 'meshfix'))
deletemeshfile(mwpath('pre_sclean.off'));
deletemeshfile(mwpath('pre_sclean_fixed.off'));
saveoff(node, elem, mwpath('pre_sclean.off'));
status = system([' "' mcpath('meshfix') exesuff '" "' mwpath('pre_sclean.off') ...
'" ' moreopt]);
if (status)
error('meshfix command failed');
end
[node, elem] = readoff(mwpath('pre_sclean_fixed.off'));
end
if (nargin >= 3 && strcmp(opt, 'intersect'))
moreopt = sprintf(' -q --no-clean --intersect -o "%s"', mwpath('pre_sclean_inter.msh'));
deletemeshfile(mwpath('pre_sclean.off'));
deletemeshfile(mwpath('pre_sclean_inter.msh'));
saveoff(node, elem, mwpath('pre_sclean.off'));
system([' "' mcpath('meshfix') exesuff '" "' mwpath('pre_sclean.off') ...
'" ' moreopt]);
% [node,elem]=readoff(mwpath('pre_sclean_inter.off'));
end
|