Issue/3070 - Outline/border to textured points (#3191)

* Add option for outline styles (round, square, bottom)
* Apply color map to point borders
This commit is contained in:
Emma Broman
2024-04-19 17:48:28 +02:00
committed by GitHub
parent caea263090
commit f5d68cbd5e
3 changed files with 113 additions and 17 deletions

View File

@@ -190,6 +190,8 @@ protected:
properties::BoolProperty enableOutline;
properties::Vec3Property outlineColor;
properties::FloatProperty outlineWeight;
properties::OptionProperty outlineStyle;
properties::BoolProperty applyCmapToOutline;
};
ColorSettings _colorSettings;
@@ -231,7 +233,7 @@ protected:
cmapRangeMin, cmapRangeMax, nanColor, useNanColor, hideOutsideRange,
enableMaxSizeControl, aboveRangeColor, useAboveRangeColor, belowRangeColor,
useBelowRangeColor, hasDvarScaling, dvarScaleFactor, enableOutline, outlineColor,
outlineWeight, aspectRatioScale, useOrientationData
outlineWeight, outlineStyle, useCmapOutline, aspectRatioScale, useOrientationData
) _uniformCache;
std::filesystem::path _dataFile;