mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#3345 HoloLens: Added missing member func implementation. Changed default opacity value
This commit is contained in:
parent
937bd49e9e
commit
7a17bc3cff
@ -27,7 +27,7 @@ VdeExportPart::VdeExportPart(cvf::Part* part)
|
|||||||
, m_sourceObjectType(OBJ_TYPE_UNKNOWN)
|
, m_sourceObjectType(OBJ_TYPE_UNKNOWN)
|
||||||
, m_color(cvf::Color3f::MAGENTA)
|
, m_color(cvf::Color3f::MAGENTA)
|
||||||
, m_winding(COUNTERCLOCKWISE)
|
, m_winding(COUNTERCLOCKWISE)
|
||||||
, m_opacity(0.0)
|
, m_opacity(1.0)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,3 +118,11 @@ cvf::Color3f VdeExportPart::color() const
|
|||||||
{
|
{
|
||||||
return m_color;
|
return m_color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
///
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
float VdeExportPart::opacity() const
|
||||||
|
{
|
||||||
|
return m_opacity;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user