All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
MortonKeyAdjacency.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "MortonKey.h"
6 #include <vector>
7 
8 namespace Eegeo
9 {
10  namespace Streaming
11  {
12  void ExpandToIncludeAdjacentKeys(
13  const MortonKey& key,
14  std::vector<MortonKey>& out_adjacentKeysIncludingInputKey);
15 
16  void GetNonDiagonalAdjacentKeys(const MortonKey& key, std::vector<MortonKey>& out_adjacentKeys);
17 
18  MortonKey GetTopNeighbour(const MortonKey& key);
19  MortonKey GetRightNeighbour(const MortonKey& key);
20  MortonKey GetBottomNeighbour(const MortonKey& key);
21  MortonKey GetLeftNeighbour(const MortonKey& key);
22  }
23 }