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

11 lines
144 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"
struct CAaSphere {
C3Vector n;
float d;
};
#endif