Replies: 5 comments
-
https://manifoldcad.org/docs/html/classmanifold_1_1_manifold.html#a1b30c42e224bda7e71a3ed3cf02319c1 |
Beta Was this translation helpful? Give feedback.
-
I don't understand what you mean. Are you hoping for something like |
Beta Was this translation helpful? Give feedback.
-
Anyway, we already reorder your Booleans and batch them automatically to maximize performance - this is why we delay evaluation as long as we can. So as long as you don't stop and ask for status between operations, you should be getting it sped up as much as can be. |
Beta Was this translation helpful? Give feedback.
-
We check for the status of operations in input but not between CSG operations. r_manifold = manifold::Manifold(mesh);
manifold::Manifold::Error error = r_manifold.Status();
if (error == manifold::Manifold::Error::NoError) {
return;
} |
Beta Was this translation helpful? Give feedback.
-
The idea is that you should not do this, it suffices to just check the status of the final operation. We will propagate it. |
Beta Was this translation helpful? Give feedback.
-
Is it possible to add a tuple of mesh and operator for batching?
Beta Was this translation helpful? Give feedback.
All reactions