Subversion Repositories gelsvn

Rev

Rev 125 | Rev 203 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 125 Rev 198
Line 6... Line 6...
6
#include <vector>
6
#include <vector>
7
#include <algorithm>
7
#include <algorithm>
8
#include "CGLA/CGLA.h"
8
#include "CGLA/CGLA.h"
9
#include "CGLA/ArithVec.h"
9
#include "CGLA/ArithVec.h"
10
 
10
 
-
 
11
#if (_MSC_VER >= 1200)
-
 
12
#pragma push (warning)
-
 
13
#pragma warning (disable: 4018)
-
 
14
#endif
-
 
15
 
11
namespace Geometry
16
namespace Geometry
12
{
17
{
13
	/** \brief A classic K-D tree. 
18
	/** \brief A classic K-D tree. 
14
 
19
 
15
			A K-D tree is a good data structure for storing points in space
20
			A K-D tree is a good data structure for storing points in space
Line 320... Line 325...
320
			}
325
			}
321
	}
326
	}
322
}
327
}
323
namespace GEO = Geometry;
328
namespace GEO = Geometry;
324
 
329
 
-
 
330
#if (_MSC_VER >= 1200)
-
 
331
#pragma pop (warning)
-
 
332
#endif
-
 
333
 
-
 
334
 
325
#endif
335
#endif