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

13 lines
No EOL
156 B
C

#ifndef TEMPEST_PLANE_H
#define TEMPEST_PLANE_H
#include "tempest/vector.h"
DECLARE_STRUCT(C4Plane);
struct C4Plane {
C3Vector n;
float d;
};
#endif