VR-Forces 4.3 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
include
vrvCore
DtNavigationFeature.h
Go to the documentation of this file.
1
/******************************************************************************
2
** Copyright (c) 2014 MAK Technologies, Inc.
3
** All rights reserved.
4
******************************************************************************/
5
9
10
#pragma once
11
12
#include <
vrvCore/vrvCore.h
>
13
14
#include <vlutil/vlTime.h>
15
#include <
vrvCore/DtUniqueID.h
>
16
#include <matrix/vlVector.h>
17
18
namespace
makVrv
19
{
20
class
DtArticulatedModelAgent;
21
class
DtBuoyTextureAtlasFileParser;
22
27
class
DT_DLL_VRVCORE
DtNavigationFeature
28
{
29
public
:
30
32
friend
class
DtNavigationFeatureCreator;
33
35
virtual
~
DtNavigationFeature
();
36
37
// attach and update have different arguments for different
38
// objects, put those functions in the derived classes
39
41
42
43
DtArticulatedModelAgent*
const
modelAgent()
const
;
44
DtArticulatedModelAgent* modelAgent();
46
48
DtUniqueID
elementId()
const
;
49
51
52
53
54
55
void
setPosition(
const
DtVector
& position );
56
const
DtVector
& position()
const
;
58
59
protected
:
60
62
DtNavigationFeature
(
DtUniqueID
elementId );
63
65
DtNavigationFeature
();
66
68
DtNavigationFeature
(
const
DtNavigationFeature
& orig );
69
71
const
DtNavigationFeature
& operator=(
72
const
DtNavigationFeature
& rhs );
73
74
protected
:
75
DtUniqueID
myElementId
;
76
DtVector
myPosition
;
77
DtArticulatedModelAgent*
myModelAgent
;
78
};
79
}
Document ID: Generated on Wed Mar 11 21:20:57 EDT 2015 from SVN revision 150940
Copyright © 2005-2014 VT MÄK. All Rights Reserved (
www.mak.com
)