You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
1.6 KiB
C++
84 lines
1.6 KiB
C++
#include "FITKAbstractGraphWidget.h"
|
|
|
|
namespace Core
|
|
{
|
|
|
|
FITKAbstractGraphWidget::FITKAbstractGraphWidget(QWidget* parent /*= nullptr*/)
|
|
:FITKWidget(parent)
|
|
{
|
|
static int viewPortID = 0;
|
|
_graphWidgetID = ++viewPortID;
|
|
}
|
|
|
|
FITKAbstractGraphWidget::~FITKAbstractGraphWidget()
|
|
{
|
|
|
|
}
|
|
|
|
void FITKAbstractGraphWidget::clear()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
void FITKAbstractGraphWidget::saveImage(const QString& image, int w /*= -1*/, int h /*= -1*/)
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
void FITKAbstractGraphWidget::fitView()
|
|
{
|
|
//TODO
|
|
}
|
|
|
|
void FITKAbstractGraphWidget::setBackgroundColor(float* rgb1, float* rgb2)
|
|
{
|
|
//TODO
|
|
}
|
|
|
|
void FITKAbstractGraphWidget::getBackgroundColor(float* rgb1, float* rgb2 /*= nullptr*/)
|
|
{
|
|
//TODO
|
|
}
|
|
|
|
void FITKAbstractGraphWidget::removeGraphObj(FITKAbstractGraphObject* gobj)
|
|
{
|
|
|
|
}
|
|
|
|
|
|
int FITKAbstractGraphWidget::getGraphWidgetID() const
|
|
{
|
|
return _graphWidgetID;
|
|
}
|
|
|
|
FITKAbstractGraph3DWidget::~FITKAbstractGraph3DWidget()
|
|
{
|
|
|
|
}
|
|
|
|
void FITKAbstractGraph3DWidget::setView(double * focalPoint, double * viewUp, double * position)
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
void FITKAbstractGraph3DWidget::setView(FITKGraph3DStandardView v)
|
|
{
|
|
|
|
}
|
|
|
|
bool FITKAbstractGraph3DWidget::getView(double * pos, double * focual, double * viewup)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void FITKAbstractGraph3DWidget::setParallelProjection(bool on /*= true*/)
|
|
{
|
|
|
|
}
|
|
|
|
FITKAbstractGraph2DWidget::~FITKAbstractGraph2DWidget()
|
|
{
|
|
|
|
}
|
|
|
|
} |