Changed default color for mesh and points

This commit is contained in:
Paolo Cignoni cignoni 2016-08-01 20:09:02 +00:00
parent 83fe9ffbbd
commit 416c30000c

View File

@ -755,12 +755,10 @@ MLRenderingData::PRIMITIVE_MODALITY MLPoliciesStandAloneFunctions::bestPrimitive
void MLPoliciesStandAloneFunctions::suggestedDefaultPerViewGLOptions( MLPerViewGLOptions& tmp )
{
vcg::Color4b orange(255,85,0,255);
vcg::Color4b lightpurple(109,83,111,255);
tmp._perbbox_fixed_color = vcg::Color4b(vcg::Color4b::White);
tmp._perpoint_fixed_color = orange;
tmp._perpoint_fixed_color = vcg::Color4b(vcg::Color4b::Yellow);;
tmp._perwire_fixed_color = vcg::Color4b(vcg::Color4b::DarkGray);
tmp._persolid_fixed_color = lightpurple;
tmp._persolid_fixed_color = vcg::Color4b(vcg::Color4b::LightGray);;
tmp._sel_enabled = true;
}