1
0
mirror of git://projects.qi-hardware.com/ben-scans.git synced 2024-11-22 16:24:03 +02:00
ben-scans/solidify/face.h

17 lines
177 B
C
Raw Normal View History

#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 */