#3441 Valve visualisation in 3D view.

This commit is contained in:
Gaute Lindkvist
2018-10-10 16:57:43 +02:00
parent cfbe6a1a24
commit e7a39fb2f8
17 changed files with 590 additions and 149 deletions

View File

@@ -20,6 +20,9 @@
#include "RiaDefines.h"
#include "cvfBase.h"
#include "cvfColor3.h"
//==================================================================================================
// Interface implemented by all well path construction components and completions
//
@@ -29,10 +32,11 @@ class RimWellPathComponentInterface
{
public:
virtual RiaDefines::WellPathComponentType componentType() const = 0;
virtual double startMD() const = 0;
virtual double endMD() const = 0;
virtual QString componentLabel() const = 0;
virtual QString componentTypeLabel() const = 0;
virtual cvf::Color3f defaultComponentColor() const = 0;
virtual double startMD() const = 0;
virtual double endMD() const = 0;
};