11 namespace NavGraphConforming
16 SolverRange(
int firstIndex,
int lastIndex,
bool conformToNavGraph)
17 : m_firstIndex(firstIndex)
18 , m_lastIndex(lastIndex)
19 , m_conformToNavGraph(conformToNavGraph)
23 int GetFirstIndex()
const {
return m_firstIndex; }
24 int GetLastIndex()
const {
return m_lastIndex; }
25 bool GetConformToNavGraph()
const {
return m_conformToNavGraph; }
29 return m_lastIndex - m_firstIndex + 1;
35 bool m_conformToNavGraph;