gwnavgeneration/navraster/navrastervisualgeometrybuilder.h Source File

navrastervisualgeometrybuilder.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 #pragma once
8 
11 
12 namespace Kaim
13 {
14 
15 class VisualGeometryBuilder;
16 class NavRasterCell;
17 class NavRasterPixel;
18 
19 class NavRasterCellVisualGeometryBuilder : public IVisualGeometryBuilder
20 {
21 public:
22  NavRasterCellVisualGeometryBuilder(NavRasterCell* navRasterCell) : m_navRasterCell(navRasterCell) {}
23 
24  virtual void DoBuild();
25 
26 private:
27  const NavRasterPixel* GetNeighbor(const NavRasterPixel& pixel, const PixelPos& pos, KyInt32 dir);
28 
29 public:
30  NavRasterCell* m_navRasterCell;
31 };
32 
33 
34 }
The Autodesk Navigation namespace.
Definition: gamekitcrowddispersion.cpp:17
std::int32_t KyInt32
int32_t
Definition: types.h:24