DataResultTransformation.h
1 //##################################################################################################
2 //
3 // Ceetron Desktop Components
4 // Component: UnstructGrid
5 //
6 // --------------------------------------------------------------------------------------------
7 // Copyright (C) 2011, 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 
17 #include "CeeCore/RefCountedObject.h"
18 #include "CeeCore/Mat4d.h"
19 
20 namespace cee {
21 namespace ug {
22 
23 
24 //==================================================================================================
25 //
26 //
27 //
28 //==================================================================================================
29 class CEE_UG_EXPORT DataResultTransformation : public RefCountedObject
30 {
31 public:
33  virtual ~DataResultTransformation();
34 
35  size_t partCount() const;
36  Mat4d part(size_t partIndex) const;
37  void addPart(const Mat4d& part);
38  void removeAllParts();
39 
40 private:
41  CEE_PRIVATE_F(DataResultGroup);
42  CEE_PRIVATE_IMPL(DataResultTransformation);
43  CEE_DISALLOW_COPY_AND_ASSIGN(DataResultTransformation);
44 };
45 
46 
47 } // namespace ug
48 } // namespace cee
Namespace cee contains all functionality and structures under the Core component. ...
Definition: AppComponent.cpp:26
Result group binding a geometry and results (scalar, vector, displacement and/or transformation) ...
Definition: DataResultGroup.h:33
Base class for all reference counted objects with built-in support for intrusive reference counting...
Definition: RefCountedObject.h:34
Transformation results for all parts in the geometry.
Definition: DataResultTransformation.h:29
4 dimensional matrix.
Definition: Mat4d.h:26