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

13 lines
156 B
C
Raw Normal View History

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