3d-renderer/scripts/triangle.h
2025-07-07 00:12:24 -07:00

17 lines
182 B
C

#ifndef TRIANGLE_H
#define TRIANGLE_H
#include "vector.h"
typedef struct {
int a;
int b;
int c;
} face_t;
typedef struct {
vec2_t points[3];
} triangle_t;
#endif