Skip to content

Commit

Permalink
[Gl.Component] Swap data description in OglColorMap (#5118)
Browse files Browse the repository at this point in the history
  • Loading branch information
alxbilger authored Nov 14, 2024
1 parent fce8e19 commit 7d7d5cf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ OglColorMap::OglColorMap()
, d_colorScheme(initData(&d_colorScheme, "colorScheme", "Color scheme to use"))
, d_showLegend(initData(&d_showLegend, false, "showLegend", "Activate rendering of color scale legend on the side"))
, d_legendOffset(initData(&d_legendOffset, type::Vec2f(10.0f,5.0f),"legendOffset", "Draw the legend on screen with an x,y offset"))
, d_legendTitle(initData(&d_legendTitle,"legendTitle", "Font size of the legend (if any)"))
, d_legendSize(initData(&d_legendSize, 11u, "legendSize", "Add a title to the legend"))
, d_legendTitle(initData(&d_legendTitle,"legendTitle", "Add a title to the legend"))
, d_legendSize(initData(&d_legendSize, 11u, "legendSize", "Font size of the legend (if any)"))
, d_min(initData(&d_min,0.0f,"min","min value for drawing the legend without the need to actually use the range with getEvaluator method which sets the min"))
, d_max(initData(&d_max,0.0f,"max","max value for drawing the legend without the need to actually use the range with getEvaluator method which sets the max"))
, d_legendRangeScale(initData(&d_legendRangeScale,1.f,"legendRangeScale","to change the unit of the min/max value of the legend"))
Expand Down

0 comments on commit 7d7d5cf

Please sign in to comment.