gwnavruntime/queries/blobs/raycangoquerydisplaylistbuilder.h Source File

raycangoquerydisplaylistbuilder.h
Go to the documentation of this file.
1 /*
2 * Copyright 2015 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 // Primary contact: MAMU - secondary contact: NOBODY
8 #ifndef Navigation_RayCanGoQuery_DisplayListBuilder_H
9 #define Navigation_RayCanGoQuery_DisplayListBuilder_H
10 
12 
13 namespace Kaim
14 {
15 
16 class RayCanGoQueryBlob;
17 class VisualShapeColor;
18 class ScopedDisplayList;
19 class Triangle3f;
20 class VisualColor;
21 
22 class RayCanGoQueryDisplayListBuilder : public IDisplayListBuilder
23 {
24 private:
25  virtual void DoBuild(ScopedDisplayList* displayList, char* blob, KyUInt32 /*deepBlobSize*/ = 0);
26 
27  void DrawLineAndArrow(ScopedDisplayList* displayList, const RayCanGoQueryBlob* queryBlob,
28  const VisualShapeColor &rayShapeColor, KyFloat32 arrowHalfWidth);
29 
30  void DrawLineAndArrowAndText(ScopedDisplayList* displayList, const RayCanGoQueryBlob* queryBlob,
31  const VisualShapeColor &rayShapeColor, KyFloat32 arrowHalfWidth, const char* text);
32 
33  void DrawTriangle(ScopedDisplayList* displayList, const Triangle3f& triangle, const VisualColor color);
34 };
35 
36 }
37 
38 #endif
Definition: gamekitcrowddispersion.h:20
unsigned int KyUInt32
Type used internally to represent an unsigned 32-bit integer.
Definition: types.h:36
float KyFloat32
Type used internally to represent a 32-bit floating-point number.
Definition: types.h:43