binana/3.3.5a/include/tempest/plane.h

13 lines
175 B
C
Raw Normal View History

2024-07-07 03:00:06 -04:00
#ifndef TEMPEST_PLANE_H
#define TEMPEST_PLANE_H
#include "tempest/vector.h"
typedef struct C4Plane C4Plane;
struct C4Plane {
C3Vector n;
float d;
};
#endif