We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84c0686 commit b723d8fCopy full SHA for b723d8f
src/Modules/Visualization/ShowField.cc
@@ -1683,6 +1683,10 @@ void ShowFieldModule::renderEdges(
1683
}
1684
if (colorScheme == GeometryObject::COLOR_MAP)
1685
vboBuffer->write(static_cast<float>(colors.at(i).r()));
1686
+ else if (colorScheme == GeometryObject::COLOR_UNIFORM && !state.get(RenderState::USE_CYLINDER))
1687
+ {
1688
+ // no coloring at all
1689
+ }
1690
else {
1691
// Writes uint8_t out to the VBO. A total of 4 bytes.
1692
vboBuffer->write(COLOR_FTOB(colors.at(i).r()));
0 commit comments