Guest User

Untitled

a guest
Mar 23rd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. struct half_edge;
  2.  
  3. struct vertex {
  4. struct half_edge *rep; /* rep->tail == this */
  5. };
  6.  
  7. struct face {
  8. struct half_edge *rep; /* rep->left == this */
  9. };
  10.  
  11. struct half_edge {
  12. struct half_edge *prev; /* prev->next == this */
  13. struct half_edge *next; /* next->prev == this */
  14. struct half_edge *twin; /* twin->twin == this */
  15. struct vertex *tail; /* twin->next->tail == tail &&
  16. prev->twin->tail == tail */
  17. struct face *left; /* prev->left == left && next->left == left */
  18. };
Add Comment
Please, Sign In to add comment