mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 17:52:29 +00:00
13 lines
162 B
C
13 lines
162 B
C
|
|
#ifndef TEMPEST_SPHERE_H
|
||
|
|
#define TEMPEST_SPHERE_H
|
||
|
|
|
||
|
|
#include "tempest/vector.h"
|
||
|
|
|
||
|
|
DECLARE_STRUCT(CAaSphere);
|
||
|
|
|
||
|
|
struct CAaSphere {
|
||
|
|
C3Vector n;
|
||
|
|
float d;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|