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
The following code prints one, as expected:
box = trimesh.creation.box(extents=[1,1,1]) box.apply_translation([1e4,1e4,1e4]) print(trimesh.boolean.intersection([box, box]).volume)
The following code prints zero, when it should also print one:
box = trimesh.creation.box(extents=[1,1,1]) box.apply_translation([1e5,1e5,1e5]) print(trimesh.boolean.intersection([box, box]).volume)
I used the manifold engine for the intersection operations
The text was updated successfully, but these errors were encountered:
This is something manifold fixed upstream. We should wait until upstream publish a new release, hopefully soon.
Sorry, something went wrong.
@pca006132 thanks, do you have a link to the issue or PR for manifold?
@laurence-kobold elalish/manifold#895
No branches or pull requests
The following code prints one, as expected:
The following code prints zero, when it should also print one:
I used the manifold engine for the intersection operations
The text was updated successfully, but these errors were encountered: