gwnavruntime/navgraph/blobs/navgraphdisplay.h Source File

navgraphdisplay.h
Go to the documentation of this file.
1 /*
2 * Copyright 2016 Autodesk, Inc. All rights reserved.
3 * Use of this software is subject to the terms of the Autodesk license agreement and any attachments or Appendices thereto provided at the time of installation or download,
4 * or which otherwise accompanies this software in either electronic or hard copy form, or which is signed by you and accepted by Autodesk.
5 */
6 
7 
8 
9 #pragma once
10 
13 
14 namespace Kaim
15 {
16 
17 class DisplayList;
18 class NavGraphArray;
19 class NavGraphBlob;
20 
21 class NavGraphDisplayListBuilder
22 {
23 public:
24  NavGraphDisplayListBuilder()
25  {
26  m_displayEdgesAsLines = false;
27  m_displayEdgesAsArrows = true;
28  }
29 
30  void DisplayNavGraphArray(DisplayList* displayList, const NavGraphArray* navGraphArray);
31  void DisplayNavGraph(DisplayList* displayList, const NavGraphBlob* navGraphBlob);
32  void DisplayNavGraphName(DisplayList* displayList, const NavGraphBlob* navGraphBlob);
33 
34 public:
35  bool m_displayEdgesAsLines;
36  bool m_displayEdgesAsArrows;
37 };
38 
39 }
40 
41 
The Autodesk Navigation namespace.
Definition: gamekitcrowddispersion.cpp:17