polyadvent

A game engine from scratch in C
git clone git://jb55.com/polyadvent
Log | Files | Refs | README

half-edge.h (237B)


      1 
      2 #ifndef HALF_EDGE_H
      3 #define HALF_EDGE_H
      4 
      5 
      6 
      7 #include "common.h"
      8 
      9 struct point
     10 
     11 struct half_edge {
     12     u32 opposite;
     13     struct half_edge *next;
     14     struct half_edge *prev;
     15     u32 start;
     16 };
     17 
     18 struct face {
     19 };
     20 
     21 
     22 
     23 
     24 #endif /* HALF-EDGE_H */