The EVENTDISPLAYC Project


Back to the index

See the C++ header file VRMLInit.h


VRMLInit.cxx



#include "VRMLInit.h"

VRMLInit::VRMLInit():
    _axes()
{
}

VRMLInit::VRMLInit(const VRMLInit& original):
    _axes(original._axes)
{
}

VRMLInit::~VRMLInit()
{
}

VRMLInit& VRMLInit::operator=(const VRMLInit& original)
{
    _axes = original._axes;
    return(*this);
}

ThreeDSeparator VRMLInit::plottableObject()
{
    return _axes;
}














Back to the index

See the C++ header file VRMLInit.h


Created on Thu Jun 27 1996 by Julius Hrivnac using the HTML generator Ddl2Html