Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
transforms
TransformBase.cxx
Go to the documentation of this file.
1
/*
2
* HippoPlot TransformBase class implementation
3
*
4
*
5
* Copyright (C) 2001, 2002 The Board of Trustees of The Leland Stanford
6
* Junior University. All Rights Reserved.
7
*
8
* $Id: TransformBase.cxx,v 1.21 2005/10/30 00:10:18 pfkeb Exp $
9
*/
10
11
// for dll interface warning
12
#ifdef _MSC_VER
13
#include "msdevstudio/MSconfig.h"
14
#endif
15
16
#include "
TransformBase.h
"
17
18
#include "
axes/Range.h
"
19
20
#include <cassert>
21
22
using
std::string;
23
24
namespace
hippodraw {
25
31
TransformBase::TransformBase
()
32
{
33
m_name
=
"nil"
;
34
}
35
36
TransformBase::TransformBase
(
const
TransformBase
& t )
37
: m_name ( t.m_name )
38
{
39
}
40
41
TransformBase::~TransformBase
()
42
{
43
}
44
45
const
string
&
TransformBase::name
()
const
46
{
47
return
m_name
;
48
}
49
50
double
TransformBase::aspectRatio
()
const
51
{
52
return
0.0;
53
}
54
55
}
// namespace hippodraw
Generated for HippoDraw Class Library by