VR-Forces 4.1.1 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
include
vmap
vpf3CoordData.h
Go to the documentation of this file.
1
/*******************************************************************************
2
** Copyright (c) 2006 MAK Technologies, Inc.
3
** All rights reserved.
4
*******************************************************************************/
5
/*******************************************************************************
6
* $RCSfile: vpf3CoordData.h,v $ $Revision: 1.9 $ $State: Exp $
7
*******************************************************************************/
8
9
#ifndef VPF_3COORD_DATA_H_
10
#define VPF_3COORD_DATA_H_
11
14
15
#include <vector>
16
17
#include "
vmap/vpfData.h
"
18
#include "
vmap/vmapDefines.h
"
19
20
21
//typedefs
22
struct
DT_DLL_vmap
DtVpf3Coord
23
{
24
double
X
;
25
double
Y
;
26
double
Z
;
27
};
28
29
typedef
std::vector<DtVpf3Coord*>
DtVpf3CoordVector
;
30
typedef
std::vector<DtVpf3Coord*>::iterator
DtVpf3CoordVectorIter
;
31
enum
DtVpfCoordTypeEnum
{
TWO
,
THREE
};
32
34
class
DT_DLL_vmap
DtVpf3CoordData
:
public
DtVpfData
35
{
36
private
:
38
DtVpf3CoordData
(
const
DtVpf3CoordData
& coordData);
39
41
DtVpf3CoordData
&
operator=
(
const
DtVpf3CoordData
& coordData);
42
43
public
:
45
DtVpf3CoordData
(
DtVpfColumn
* column,
DtVpfCoordTypeEnum
coordType);
46
48
~
DtVpf3CoordData
();
49
52
virtual
bool
readData
();
53
56
virtual
const
DtVpf3CoordVector
* threeCoordData()
const
;
57
58
protected
:
59
DtVpf3CoordVector
myCoords
;
60
DtVpfCoordTypeEnum
myType
;
61
};
62
63
#endif
64
Document ID: Generated on Mon Apr 8 19:24:01 EDT 2013 from SVN revision 125877
Copyright © 2005-2013 VT MÄK. All Rights Reserved (
www.mak.com
)