Class FuncRangeColorGuide
A color guide that uses a function to get a numeric value and maps it to a color using a range color rule.
public class FuncRangeColorGuide : IColorGuide, IMakeXmlSource, IGetColorGuide, IGetRangeColorRule
- Inheritance
-
FuncRangeColorGuide
- Implements
- Inherited Members
- Extension Methods
Constructors
FuncRangeColorGuide(Func<object, double?>, RangeColorRule)
Initializes a new instance of the FuncRangeColorGuide class.
public FuncRangeColorGuide(Func<object, double?> colorIndexFunc, RangeColorRule rangeColorRule)
Parameters
colorIndexFuncFunc<object, double?>The function to get the numeric value for coloring.
rangeColorRuleRangeColorRuleThe rule that maps numeric values to colors.
FuncRangeColorGuide(XElement, Func<object, double?>)
Initializes a new instance of the FuncRangeColorGuide class from XML.
public FuncRangeColorGuide(XElement src, Func<object, double?> colorIndexFunc)
Parameters
srcXElementThe XML element containing the color guide data.
colorIndexFuncFunc<object, double?>The function to get the numeric value for coloring.
Properties
ColorIndexFunc
Gets or sets the function that extracts a numeric value from the input object for coloring.
public Func<object, double?> ColorIndexFunc { get; set; }
Property Value
RangeColorRule
Gets or sets the rule that maps numeric values to colors.
public RangeColorRule RangeColorRule { get; set; }
Property Value
XName
Name for XML IO.
public static string XName { get; }
Property Value
Methods
GetColorGuide()
Get IColorGuide.
public IColorGuide GetColorGuide()
Returns
GetRangeColorRule()
Gets the range color rule.
public RangeColorRule GetRangeColorRule()
Returns
- RangeColorRule
The range color rule.
GetRgb(object)
Get rgb bystep.
public Vec3d GetRgb(object step)
Parameters
stepobjectstep
Returns
- Vec3d
rgb
GetRgbWithPriority(object, out Vec3d, out double)
Get color with the showing priority if the showing area overlapped by shrinking. Only effect on CubeTree.
public void GetRgbWithPriority(object step, out Vec3d rgb, out double attachmentPriority)
Parameters
MakeXmlSource(string, string, bool)
Creates an XML representation of the object. This method may also generate additional resources such as related files.
public XElement MakeXmlSource(string baseDirectory, string relFile, bool exhibitionOnly)
Parameters
baseDirectorystringThe base directory for resolving relative paths
relFilestringThe relative file path for the XML source
exhibitionOnlyboolif true, the extended file creation is suppressed.
Returns
- XElement
An XML element representing the object's state
Remarks
For the demand of easy moving source folder (especially project folder) without configuration file path corruption, the relative file path is applied.
The baseDirectory is typically the folder at the nearest configuration file folder.
Since the folder can be moving with the configuration file.