MarkupText3dItem.h
1 //##################################################################################################
2 //
3 // Ceetron Desktop Components
4 // Component: Visualization
5 //
6 // --------------------------------------------------------------------------------------------
7 // Copyright (C) 2015, 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 "CeeVisualization/Base.h"
16 #include "CeeCore/RefCountedObject.h"
17 #include "CeeVisualization/MarkupPart.h"
18 #include "CeeCore/Color3f.h"
19 #include "CeeCore/Str.h"
20 #include "CeeCore/Vec3d.h"
21 #include "CeeCore/PtrRef.h"
22 
23 namespace cee {
24 namespace vis {
25 
26 //==================================================================================================
27 //
28 //
29 //
30 //==================================================================================================
31 class CEE_VIS_EXPORT MarkupText3dItem
32 {
33 public:
37  Vec3d upVector;
39  double textHeight;
41 
45 };
46 
47 } // namespace vis
48 } // namespace cee
Namespace cee contains all functionality and structures under the Core component. ...
Definition: AppComponent.cpp:26
Vec3d directionVector
The horizontal orientation (in world coordinates) of the text. The text will be drawn in this directi...
Definition: MarkupText3dItem.h:36
Str text
The text to draw. Support multi-line text with '\n' as the line separator.
Definition: MarkupText3dItem.h:34
A general unicode based string class.
Definition: Str.h:28
Vec3d position
The position (in world coordinates) of the lower left corner of the text.
Definition: MarkupText3dItem.h:35
Vector class for a 3D double vector.
Definition: Vec3d.h:26
An item for a MarkupPartText3d.
Definition: MarkupText3dItem.h:31