VR-Forces 4.7 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
include
vrfGuiCore
vrlinkSimulatedCloudLayerState.h
Go to the documentation of this file.
1
/******************************************************************************
2
** Copyright (c) 2018 MAK Technologies, Inc.
3
** All rights reserved.
4
******************************************************************************/
5
6
#pragma once
7
8
#include <
vrfGuiCore/vrfGuiCore.h
>
9
#include <
vrvCore/DtSimState.h
>
10
#include <
vrvCore/DtStateView.h
>
11
#include <
vrvCore/DtStateViewCollection.h
>
12
#include <matrix/vlVector.h>
13
14
namespace
makVrv
15
{
16
class
DtMessage;
17
}
18
19
namespace
makVrf
20
{
21
struct
DT_DLL_VRFGUICORE
DtVrlinkSimulatedCloudLayerState
:
public
makVrv::DtSimState
22
{
23
24
public
:
25
27
DtVrlinkSimulatedCloudLayerState
();
28
30
virtual
~
DtVrlinkSimulatedCloudLayerState
();
31
32
bool
operator==
(
const
DtVrlinkSimulatedCloudLayerState
& rhs)
const
33
{
34
return
((myCloudType == rhs.
myCloudType
) &&
35
(myCloudAltitude == rhs.
myCloudAltitude
) &&
36
(myCloudCenter == rhs.
myCloudCenter
) &&
37
(myEnabled == rhs.
myEnabled
) &&
38
(myCloudWidth == rhs.
myCloudWidth
) &&
39
(myCloudLength == rhs.
myCloudLength
) &&
40
(myCloudThickness == rhs.
myCloudThickness
) &&
41
(myCornerRadius == rhs.
myCornerRadius
) &&
42
(myCloudDensity == rhs.
myCloudDensity
));
43
}
44
45
bool
operator!=
(
const
DtVrlinkSimulatedCloudLayerState
& rhs)
const
46
{
47
return
!(*
this
== rhs);
48
}
49
50
public
:
51
int
myCloudType
;
52
double
myCloudAltitude
;
53
double
myCloudThickness
;
54
double
myCornerRadius
;
55
double
myCloudDensity
;
56
DtVector
myCloudCenter
;
57
double
myCloudWidth
;
58
double
myCloudLength
;
59
bool
myEnabled
;
60
};
61
63
DT_DLL_VRFGUICORE
makVrv::DtMessage
&
operator<<
(
makVrv::DtMessage
& msg,
const
DtVrlinkSimulatedCloudLayerState
& state );
64
66
DT_DLL_VRFGUICORE
makVrv::DtMessage
&
operator>>
(
makVrv::DtMessage
& msg,
DtVrlinkSimulatedCloudLayerState
& state );
67
68
70
typedef
makVrv::DtStateView<DtVrlinkSimulatedCloudLayerState>
DtCloudLayerStateView
;
71
73
class
DT_DLL_VRFGUICORE
DtCloudLayerStateViewCollection
:
public
makVrv::DtStateViewCollection
<DtVrlinkSimulatedCloudLayerState>
74
{
75
public
:
76
DtCloudLayerStateViewCollection
(
makVrv::DtDe
& de) :
77
makVrv::DtStateViewCollection<
DtVrlinkSimulatedCloudLayerState
>(de, makVrv::DtSimEntryUpdater::NoUpdates)
78
{
79
}
80
};
81
}
Document ID: Generated on Fri Apr 26 21:53:14 EDT 2019 from SVN revision 197883
Copyright © 2005-2019 VT MAK. All Rights Reserved (
www.mak.com
)