polyadvent

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

ply.h (228B)


      1 
      2 
      3 #ifndef PLYPARSER_H
      4 #define PLYPARSER_H
      5 
      6 #include "mdl.h"
      7 
      8 //int parse_ply(const char *filename, struct geometry *geom);
      9 int parse_ply_with_mkgeom(const char *filename, struct mdl_geometry *mdlgeom);
     10 
     11 #endif /* PLYPARSER_H */