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.
27 lines
462 B
C++
27 lines
462 B
C++
#include "FITKGraphOperator.h"
|
|
|
|
namespace Comp
|
|
{
|
|
FITKGraphOperator::FITKGraphOperator()
|
|
{
|
|
|
|
}
|
|
|
|
FITKGraphOperator::~FITKGraphOperator()
|
|
{
|
|
|
|
}
|
|
|
|
void FITKGraphOperator::setGraph3DWindow(FITKGraph3DWindowVTK* w)
|
|
{
|
|
//设置三维渲染窗口
|
|
m_graph3DWindow = w;
|
|
}
|
|
|
|
Comp::FITKGraph3DWindowVTK* FITKGraphOperator::getGraph3DWindow()
|
|
{
|
|
//返回渲染窗口
|
|
return m_graph3DWindow;
|
|
}
|
|
|
|
} |