From 416c30000cc2c88c61ea09b985fa67b28a26014f Mon Sep 17 00:00:00 2001 From: Paolo Cignoni cignoni Date: Mon, 1 Aug 2016 20:09:02 +0000 Subject: [PATCH] Changed default color for mesh and points --- src/common/ml_shared_data_context.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/common/ml_shared_data_context.cpp b/src/common/ml_shared_data_context.cpp index 78bf60d64..d99370136 100644 --- a/src/common/ml_shared_data_context.cpp +++ b/src/common/ml_shared_data_context.cpp @@ -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; }