fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. enum WindingOrder {
  6. BOTTOM = 0,
  7. RIGHT,
  8. TOP,
  9. LEFT
  10. };
  11.  
  12. void DoWinding1(unsigned int const *const in, unsigned int *const out, const enum WindingOrder ord)
  13. {
  14. static const unsigned int order[4][4] = { [BOTTOM] = {0,1,2,1},
  15. [RIGHT] = {2,1,2,3},
  16. [TOP] = {3,4,0,3},
  17. [LEFT] = {0,3,0,1} };
  18. out[0] = in[order[ord][0]];
  19. out[1] = in[order[ord][1]];
  20. out[2] = in[order[ord][2]];
  21. out[3] = in[order[ord][3]];
  22. }
  23.  
  24.  
  25. int main() {
  26. unsigned int idx;
  27. unsigned int rect[4] = {1, 3, 4, 5};
  28. unsigned int out[4] = {0};
  29.  
  30. DoWinding1(rect, out, BOTTOM);
  31.  
  32. std::cout << out[0] << out[1] << out[2] << out[3] << std::endl;
  33.  
  34. return 0;
  35. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
1343