1
0
mirror of git://projects.qi-hardware.com/ben-scans.git synced 2024-11-22 09:50:38 +02:00
ben-scans/solidify/face.h
2010-09-22 17:04:43 -03:00

17 lines
177 B
C

#ifndef FACE_H
#define FACE_H
#include "array.h"
struct face {
struct array *a;
int sx, sy;
int z_ref;
};
struct face *read_face(const char *name);
#endif /* FACE_H */