We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60ae9dd commit 3f65531Copy full SHA for 3f65531
1 file changed
src/xrCore/_sphere.h
@@ -1,6 +1,11 @@
1
#ifndef _F_SPHERE_H_
2
#define _F_SPHERE_H_
3
4
+template <class T> struct _sphere;
5
+
6
+typedef _sphere<float> Fsphere;
7
+typedef _sphere<double> Dsphere;
8
9
template <class T>
10
struct _sphere
11
{
@@ -162,9 +167,6 @@ struct _sphere
162
167
}
163
168
};
164
169
165
-typedef _sphere<float> Fsphere;
166
-typedef _sphere<double> Dsphere;
-
170
171
BOOL _valid(const _sphere<T>& s) { return _valid(s.P) && _valid(s.R); }
172
0 commit comments