Is this an internal Meusburger standard or rather a de facto industry standard - or even an ISO?polymer wrote: ↑Fri Aug 24, 2018 6:39 pmMaybe this is usefull: https://www.meusburger.com/EN/US/media/ ... rds_IN.pdf
Is this an internal Meusburger standard or rather a de facto industry standard - or even an ISO?polymer wrote: ↑Fri Aug 24, 2018 6:39 pmMaybe this is usefull: https://www.meusburger.com/EN/US/media/ ... rds_IN.pdf
This Is an internal Standard or suggestion. I do Not know if there is a standadized colorcode. At my Company we work with an own colorcode, based on the meusburger one.chrisb wrote: ↑Sat Aug 25, 2018 8:47 amIs this an internal Meusburger standard or rather a de facto industry standard - or even an ISO?polymer wrote: ↑Fri Aug 24, 2018 6:39 pmMaybe this is usefull: https://www.meusburger.com/EN/US/media/ ... rds_IN.pdf
Code: Select all
#if 0//TODO
Gui::ViewProvider* vp = Gui::Application::Instance->getViewProvider(part);
if (vp && vp->isDerivedFrom(PartGui::ViewProviderPart::getClassTypeId())) {
if (jt != myColorMap.end()) {
App::Color color;
color.r = jt->second.Red();
color.g = jt->second.Green();
color.b = jt->second.Blue();
static_cast<PartGui::ViewProviderPart*>(vp)->ShapeColor.setValue(color);
}
partColor = static_cast<PartGui::ViewProviderPart*>(vp)->ShapeColor.getValue();
}
#endif
Thank you !