#3345 HoloLens: Added missing member func implementation. Changed default opacity value

This commit is contained in:
sigurdp 2018-09-19 19:50:03 +02:00
parent 937bd49e9e
commit 7a17bc3cff

View File

@ -27,7 +27,7 @@ VdeExportPart::VdeExportPart(cvf::Part* part)
, m_sourceObjectType(OBJ_TYPE_UNKNOWN)
, m_color(cvf::Color3f::MAGENTA)
, m_winding(COUNTERCLOCKWISE)
, m_opacity(0.0)
, m_opacity(1.0)
{
}
@ -118,3 +118,11 @@ cvf::Color3f VdeExportPart::color() const
{
return m_color;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
float VdeExportPart::opacity() const
{
return m_opacity;
}