26 lines
499 B
C++
26 lines
499 B
C++
#include <histogram/graph3d.hpp>
|
|
|
|
Graph3D::Graph3D(GUIWindow &someGUIWindow)
|
|
: mGUIWindow(&someGUIWindow), DIB3D(someGUIWindow)
|
|
{
|
|
}
|
|
|
|
Graph3D::Graph3D(GUIWindow &someGUIWindow,PurePalette &purePalette)
|
|
: mGUIWindow(&someGUIWindow), DIB3D(someGUIWindow,purePalette)
|
|
{
|
|
}
|
|
|
|
Graph3D::~Graph3D()
|
|
{
|
|
}
|
|
|
|
WORD Graph3D::viewPortWidth(void)const
|
|
{
|
|
return ((SmartPointer<GUIWindow>&)mGUIWindow)->width();
|
|
}
|
|
|
|
WORD Graph3D::viewPortHeight(void)const
|
|
{
|
|
return ((SmartPointer<GUIWindow>&)mGUIWindow)->height();
|
|
}
|