CuttingPlaneAnimation.h
1 //##################################################################################################
2 //
3 // Ceetron Desktop Components
4 // Component: UnstructGrid
5 //
6 // --------------------------------------------------------------------------------------------
7 // Copyright (C) 2012, Ceetron AS
8 // This is UNPUBLISHED PROPRIETARY SOURCE CODE of Ceetron AS. The contents of this file may
9 // not be disclosed to third parties, copied or duplicated in any form, in whole or in part,
10 // without the prior written permission of Ceetron AS.
11 //##################################################################################################
12 
13 #pragma once
14 
15 #include "CeeUnstructGrid/Base.h"
16 #include "CeeCore/Vec3d.h"
17 
18 #include <vector>
19 
20 namespace cee {
21 namespace ug {
22 
23 class UnstructGridModel;
24 
25 //==================================================================================================
26 //
27 //
28 //
29 //==================================================================================================
30 class CEE_UG_EXPORT CuttingPlaneAnimation
31 {
32 public:
33  CuttingPlaneAnimation(UnstructGridModel* model, size_t cuttingPlaneIndex);
35 
36  void setFrameCount(size_t frameCount);
37  void setPerFrameDistance(double distance);
38 
39  void generateAnimation();
40 
41 private:
42  CEE_PRIVATE_IMPL(CuttingPlaneAnimation);
43  CEE_DISALLOW_COPY_AND_ASSIGN(CuttingPlaneAnimation);
44 };
45 
46 } // namespace ug
47 } // namespace cee
Namespace cee contains all functionality and structures under the Core component. ...
Definition: AppComponent.cpp:26
UnstructGridModel is a subclass of Model which adds specific model structure and functionality for re...
Definition: UnstructGridModel.h:72
Use this class to generate a cutting plane animation.
Definition: CuttingPlaneAnimation.h:30