App: Add getCameraAlignmentDirection() to GeoFeature

This commit is contained in:
Bas Ruigrok
2024-05-12 14:31:09 +02:00
parent 0e24e121eb
commit 4c39b2f2bd
2 changed files with 16 additions and 0 deletions

View File

@@ -209,6 +209,13 @@ void GeoFeature::setMaterialAppearance(const App::Material& material)
Q_UNUSED(material)
}
bool GeoFeature::getCameraAlignmentDirection(Base::Vector3d& direction, const char* subname) const
{
Q_UNUSED(subname)
Q_UNUSED(direction)
return false;
}
#ifdef FC_USE_TNP_FIX
bool GeoFeature::hasMissingElement(const char* subname)
{