public TargetLineRDI(string basePath, string name, float value, RGB colour, float displayScale, ELabelLocation labelLocation)
     : base(basePath, name, displayScale)
 {
     Colour        = colour;
     Value         = value;
     NameFromValue = false;
     ValueIsFPS    = false;
     LabelLocation = labelLocation;
 }
 public TargetLineRDI(string basePath, string name, float value, RGB colour, ELabelLocation labelLocation)
     : this(basePath, name, value, colour, 1.0f, labelLocation)
 {
 }