TransformBase.cxx

Go to the documentation of this file.
00001 /*
00002  * HippoPlot TransformBase class implementation
00003  *
00004  *
00005  * Copyright (C)  2001, 2002  The Board of Trustees of The Leland Stanford
00006  * Junior University.  All Rights Reserved.
00007  *
00008  * $Id: TransformBase_8cxx-source.html,v 1.40 2008/03/24 19:27:35 pfkeb Exp $
00009  */
00010 
00011 // for dll interface warning
00012 #ifdef _MSC_VER
00013 #include "msdevstudio/MSconfig.h"
00014 #endif
00015 
00016 #include "TransformBase.h"
00017 
00018 #include "axes/Range.h"
00019 
00020 #include <cassert>
00021 
00022 using std::string;
00023 
00024 namespace hippodraw {
00025 
00031 TransformBase::TransformBase ()
00032 {
00033   m_name = "nil";
00034 }
00035 
00036 TransformBase::TransformBase ( const TransformBase & t ) 
00037   : m_name ( t.m_name )
00038 {
00039 }
00040 
00041 TransformBase::~TransformBase ()
00042 {
00043 }
00044 
00045 const string & TransformBase::name () const
00046 {
00047   return m_name;
00048 }
00049 
00050 double TransformBase::aspectRatio() const
00051 {
00052   return 0.0;
00053 }
00054 
00055 } // namespace hippodraw

Generated for HippoDraw Class Library by doxygen