gwnavruntime/world/pointofinterestdisplay.h Source File

pointofinterestdisplay.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 #pragma once
9 
12 
13 namespace Kaim
14 {
15 
16 class PointOfInterestBlob;
17 
18 class PointOfInterestDisplayListBuilder
19 {
20 public:
21  PointOfInterestDisplayListBuilder()
22  {
23  m_flagColor_Undefined = Color::Red;
24  m_flagColor_Custom = Color::Orange;
25  m_height = 2.5f;
26  m_radius = 0.2f;
27  }
28 
29  void DisplayPointOfInterest(DisplayList* displayList, const PointOfInterestBlob* pointOfInterest);
30 
31 public:
32  Color m_flagColor_Undefined;
33  Color m_flagColor_Custom;
34  KyFloat32 m_height;
35  KyFloat32 m_radius;
36 };
37 
38 } // namespace Kaim
39 
The Autodesk Navigation namespace.
Definition: gamekitcrowddispersion.cpp:17
float KyFloat32
float
Definition: types.h:32