I have vertex IDs, say, 1,2,3,4,5 in a container. I wish to output all possible combinations of triangles with these vertices. So possible triangles would be:
(1,2,3)
(1,2,4)
(1,2,5)
and so on .. How do I do this?
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Since it's basic math staff, there is a lot of info about it in the internet: and a lot of other links. However, if you need all possible triangles, you will need Combinations, not permutations (the triangle [A,B,C] is the same as [B,A,C], right?). Finding info about getting combinations in C++ is very easy, e.g. |
|||
|
|