We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TriFillPlanarHoles.m does not handle meshes with no holes.
The text was updated successfully, but these errors were encountered:
I think I fixed it: see here but please let's double check together.
It would be neater to have a isTriWatertight.m function, some ideas here. What do you think @renaultJB?
isTriWatertight.m
Sorry, something went wrong.
Looks good, but I might have done the check at the beginning for clarity:
%-------------------------------------------------------------------------% function [ TRout ] = TriFillPlanarHoles( TRin) FB = TRin.freeBoundary; if isempty(FB) % warning disp('No holes on triangulation.'); TRout = TRin; return end Pts = TRin.Points; Segments = FB; ...
renaultJB
No branches or pull requests
TriFillPlanarHoles.m does not handle meshes with no holes.
The text was updated successfully, but these errors were encountered: