gwnavgeneration/input/clientinputvisualgeometrybuilder.h Source File

clientinputvisualgeometrybuilder.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 
12 
13 namespace Kaim
14 {
15 
16 class ClientInput;
17 
18 class ClientInputVisualGeometryBuilder : public IVisualGeometryBuilder
19 {
20 public:
21  enum DrawSeedPointMode { DO_NOT_DRAW_SEEDPOINTS, DRAW_SEEDPOINTS };
22 
23 public:
24  ClientInputVisualGeometryBuilder(ClientInput* clientInput, DrawSeedPointMode drawSeedPoints = DO_NOT_DRAW_SEEDPOINTS);
25 
26  virtual void DoBuild();
27 
28 public:
29  ClientInput* m_clientInput;
30  DrawSeedPointMode m_drawSeedPoints;
31 };
32 
33 
34 }
35 
The Autodesk Navigation namespace.
Definition: gamekitcrowddispersion.cpp:17