17 lines
259 B
C
17 lines
259 B
C
#ifndef DJSTDLIB_GEOMETRY_H
|
|
#define DJSTDLIB_GEOMETRY_H
|
|
|
|
#include "gfx-common.h"
|
|
|
|
typedef struct {
|
|
UInt32List indices;
|
|
FloatList uv;
|
|
FloatList xyz;
|
|
} Shape;
|
|
|
|
extern const Shape TRIANGLE;
|
|
extern const Shape SQUARE;
|
|
extern const Shape CUBE;
|
|
|
|
#endif
|