Well Targets: Add scaling factor for well targets

This commit is contained in:
Magne Sjaastad
2023-03-23 15:43:19 +01:00
parent 2e01f4a31d
commit ab0b958884
3 changed files with 13 additions and 1 deletions

View File

@@ -92,6 +92,7 @@ public:
cvf::Color3f sphereColor() const;
double sphereRadiusFactor() const;
bool showAbsoluteCoordinates() const;
double wellTargetScalingFactor() const;
protected:
std::vector<RimWellPathTarget*> activeWellTargets( bool useAutoGeneratedTargetAtSeaLevel ) const;
@@ -140,6 +141,7 @@ private:
caf::PdmField<bool> m_showSpheres;
caf::PdmField<cvf::Color3f> m_sphereColor;
caf::PdmField<double> m_sphereRadiusFactor;
caf::PdmField<double> m_wellTargetHandleScalingFactor;
std::shared_ptr<RicCreateWellTargetsPickEventHandler> m_pickTargetsEventHandler;
};