1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
#include "TestOrthoViewManager.h"
namespace test
{
void TestOrthoViewManager::updateAllViews(bool force)
{}
void TestOrthoViewManager::setOrigin(const Vector3& origin)
{}
Vector3 TestOrthoViewManager::getActiveViewOrigin()
{
return Vector3(0, 0, 0);
}
ui::IOrthoView& TestOrthoViewManager::getActiveView()
{
throw std::runtime_error("Not implemented");
}
ui::IOrthoView& TestOrthoViewManager::getViewByType(OrthoOrientation viewType)
{
throw std::runtime_error("Not implemented");
}
void TestOrthoViewManager::setScale(float scale)
{}
void TestOrthoViewManager::positionAllViews(const Vector3& origin)
{}
void TestOrthoViewManager::positionActiveView(const Vector3& origin)
{}
OrthoOrientation TestOrthoViewManager::getActiveViewType() const
{
return OrthoOrientation::XY;
}
void TestOrthoViewManager::setActiveViewType(OrthoOrientation viewType)
{}
const std::string& TestOrthoViewManager::getName() const
{
static std::string _name(MODULE_ORTHOVIEWMANAGER);
return _name;
}
const StringSet& TestOrthoViewManager::getDependencies() const
{
static StringSet _dependencies;
return _dependencies;
}
void TestOrthoViewManager::initialiseModule(const IApplicationContext& ctx)
{
// do nothing
}
}
|