gwnavgeneration/raster/cellrasterizer.h Source File

cellrasterizer.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 
11 
13 
14 
15 namespace Kaim
16 {
17 
18 class DynamicRasterCell;
19 class SingleStageRaster;
20 
21 class CellRasterizer : public NewOverrideBase<MemStat_NavDataGen>
22 {
23 public:
24  CellRasterizer(DynamicRasterCell* dynamicRaster) : m_dynamicRaster(dynamicRaster) {};
25  virtual ~CellRasterizer() {}
26 
27  KyResult Rasterize();
28 
29 protected:
30  void Push(const SingleStageRaster& singleStageRaster);
31 
32 protected:
33  virtual KyResult DoRasterize() = 0;
34 
35 protected:
36  DynamicRasterCell* m_dynamicRaster;
37 };
38 
39 
40 }
41 
42 
Navigation return code class.
Definition: types.h:108
The Autodesk Navigation namespace.
Definition: gamekitcrowddispersion.cpp:17