| 101 | }; |
| 102 | |
| 103 | inline int index( int i, const int l ) |
| 104 | { |
| 105 | assert( l > 0 ); |
| 106 | |
| 107 | while ( i < 0 ) |
| 108 | { |
| 109 | i += l; |
| 110 | } |
| 111 | |
| 112 | return i % l; |
| 113 | } |
| 114 | |
| 115 | int faceDirection( FaceToVerticesMap &faceToVerticesMap, FaceId face, Edge edge ) |
| 116 | { |
no outgoing calls
no test coverage detected