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

13 lines
183 B
C
Raw Normal View History

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