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
mostly copied form the discussion in #34
This is another issue with unnecessarily duplicated vertices which causes this artifact:
There are two verticies at this point:
It seems the deduplication step of the meshing algorithm is not tolerant enough
I think it is caused here, which I was thinking of when I wrote this part:
cx - sx * (1. + EPSILON), cy - sy * (1. + EPSILON), cz - sz * (1. + EPSILON),
sx = 1e-5
sx * (1. + EPSILON) = 1e-5*( 1+1e-5) = 1.00001e-05
cx
123.0
cx + 1.00001e-05 = 123.0 + 1.00001e-05 = 123.00001
123.000
0.
The text was updated successfully, but these errors were encountered:
This artifact happens in amethyst too or just blender?
Also I want to work tomorrow in merging #35, so if you can wait until this PR lands before submitting new ones.
Sorry, something went wrong.
No branches or pull requests
mostly copied form the discussion in #34
This is another issue with unnecessarily duplicated vertices which causes this artifact:
There are two verticies at this point:
It seems the deduplication step of the meshing algorithm is not tolerant enough
I think it is caused here, which I was thinking of when I wrote this part:
sx = 1e-5
sx * (1. + EPSILON) = 1e-5*( 1+1e-5) = 1.00001e-05
which is 6sf so it is fine`cx
is the coordinate center which could be anything lets say123.0
cx + 1.00001e-05 = 123.0 + 1.00001e-05 = 123.00001
Which is 8 sf too many sf for f32123.000
which is equivalent boundary size of0.
The text was updated successfully, but these errors were encountered: