-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
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
args.target_edge_len ignored when the edge length is large #8
Comments
Hi, the |
Hi, the problem is actually the opposite. Above a certain edge length the mesh returned is always the same mesh. (Which is too coarse) |
Could you share the input and the command you used? |
I'm trying a very simple triangle: [0, 0], [1, 0], [0.5, 1] with a target edge length of 0.05. It results in an average edge length of 0.2847. Here is the output:
A target edge length of 0.02 results in an even higher average edge length of 0.33. Only at 0.01 does it return a closer (though still far) average edge length of 0.0349. |
Ok, I'll check it |
There seems to be a threshold over which the mesh is simply returned without any refinement, ignoring target_edge_len. This seems to be the case if the edge length is even 0.01 the bounding box size.
The text was updated successfully, but these errors were encountered: