-
Notifications
You must be signed in to change notification settings - Fork 98
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
README: clarify arity of mesh faces #78
Comments
Indeed, it's not even possible to input data other than triangle meshes. Sorry to have dedicated years to a hard problem and given it away for free only to waste a few minutes of your time. |
I'm not sure why you need to be passive aggressive. This was an earnest question/suggestion. And it wouldn't have taken me minutes to find out. I would need to read source code or clone the repo, build, try etc. The fact that you seem to value your time more than that of others shouldn't give anyone pause but yourself. And I mean that in a very caring way. |
I just linked you to the documentation that that says it. And for the record, your request was rudely stated. Happy to add docs though. |
Kindly point me to what was rude about my request. I am not a native speaker. It was an earnest question. Even though I found the wiki and that sentence I mentioned I opened this issue because this was not conclusive to me. I would have just added the word 'triangle' to the 1st sentence of the README and opened a PR otherwise. But I wasn't sure. |
No problem, thanks for asking! If you just removed this line, it would have been much better. It implies the library is missing a fundamental feature that makes it useless for most people. Opening the PR is great. And trust me, there are far more glaring holes in my documentation at the moment; I'm still working on it. |
@virtualritz After thinking about this some more, I think this library should work for quad meshes, depending on exactly how you want to use them. You'll need to write your own Import/Export functions, but that's going to be required for most specific use cases anyway. Since I save a MeshRelation that relates every triangle back to the original mesh & triangle it came from, it should be totally doable to triangulate your quad mesh, and then return the unmodified triangles back to quads as a post-process. |
The 'Manifoldness' section of the Wiki talks about "triangle meshes".
Can this library work with meshes that contain faces of arity higher than three?
If not this constraint should probably be mentioned in the first sentence of the README as it may save people looking for something that does (and not checking the Wiki) a lot of time. :)
Specifically: If I input a mesh made out of e.g. quads and perform a boolean operation, will the result mesh only contain triangles? Even in areas not affected by the boolean operation at all?
The text was updated successfully, but these errors were encountered: