All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
QuadTreeIntersection.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Streaming.h"
6 #include <vector>
7 
8 namespace Eegeo
9 {
10  namespace Streaming
11  {
13  {
14  private:
15  static void CellsIntersectingVolumeRecursive(MortonKey& currentCell, IStreamingVolume& streamingVolume, std::vector<MortonKey>& cellsIntersecting);
16  static void CellsIntersectingVolumeUnrolled(int faceIndex, IStreamingVolume& streamingVolume, std::vector<MortonKey>& cellsIntersecting);
17  public:
18  static void CellsIntersectingVolume(IStreamingVolume& streamingVolume, std::vector<MortonKey>& cellsIntersecting);
19  };
20  }
21 }