Files
djstdlib/gfx/geometry.h
2026-06-04 18:22:30 +02:00

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