Initial
This commit is contained in:
25
Histogram/Graph3D.cpp
Normal file
25
Histogram/Graph3D.cpp
Normal file
@@ -0,0 +1,25 @@
|
||||
#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();
|
||||
}
|
||||
Reference in New Issue
Block a user