Add optional measured depth labels to well path

This commit is contained in:
Magne Sjaastad
2023-09-12 12:54:43 +02:00
parent 3e340361e8
commit f18eb29552
3 changed files with 46 additions and 2 deletions

View File

@@ -141,6 +141,8 @@ public:
bool showWellPath() const;
void setShowWellPath( bool showWellPath );
std::optional<double> measuredDepthLabelInterval() const;
cvf::Color3f wellPathColor() const;
void setWellPathColor( const cvf::Color3f& color );
@@ -199,8 +201,9 @@ private:
caf::PdmField<caf::FilePath> m_wellPathFormationFilePath;
caf::PdmField<QString> m_formationKeyInFile;
caf::PdmField<bool> m_showWellPath;
caf::PdmField<bool> m_showWellPathLabel;
caf::PdmField<bool> m_showWellPath;
caf::PdmField<bool> m_showWellPathLabel;
caf::PdmField<std::pair<bool, double>> m_measuredDepthLabelInterval;
caf::PdmField<double> m_wellPathRadiusScaleFactor;
caf::PdmField<cvf::Color3f> m_wellPathColor;