VR-Vantage API Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Tutorials
File List
File Members
include
vrvCore
DtAnimationModel.h
Go to the documentation of this file.
1
/******************************************************************************
2
** Copyright (c) 2008 MAK Technologies, Inc.
3
** All rights reserved.
4
******************************************************************************/
5
/******************************************************************************
6
** $RCSfile: DtAnimationModel.h,v $ $Revision: 1.17 $ $State: Exp $
7
******************************************************************************/
8
12
13
#ifndef DtAnimationModel_H_
14
#define DtAnimationModel_H_
15
16
#include <
vrvCore/vrvCore.h
>
17
#include <
vrvCore/DtModel.h
>
18
19
#include <matrix/vlVector.h>
20
21
namespace
makVrv
22
{
23
class
DtAnimationModelInstance;
24
27
class
DT_DLL_VRVCORE
DtAnimationModel
:
public
DtModel
28
{
29
public
:
30
32
DtAnimationModel
(
DtDe
& de,
DtUniqueID
id
);
33
35
virtual
~
DtAnimationModel
();
36
39
virtual
std::string className()
const
= 0;
40
42
virtual
void
setDuration(
double
seconds) = 0;
43
45
virtual
void
stop() = 0;
46
48
virtual
void
start() = 0;
49
51
virtual
void
pause() = 0;
52
54
virtual
void
resume() = 0;
55
57
virtual
void
setLoopMode(
bool
loopOn) = 0;
58
60
virtual
void
setReverseAnimation(
bool
reverse) = 0;
61
62
protected
:
63
64
};
65
}
66
67
#endif
68
Copyright © 2005-2013 VT MÄK Inc. All Rights Reserved (
www.mak.com
)