#nullable enable
using ColorHelper;
namespace Terminal.Gui;
internal class BBar : ColorBar
{
public GBar? GBar { get; set; }
public RBar? RBar { get; set; }
///
protected override Color GetColor (double fraction)
{
if (RBar == null || GBar == null)
{
throw new ($"{nameof (BBar)} has not been set up correctly before drawing");
}
var rgb = new RGB ((byte)RBar.Value, (byte)GBar.Value, (byte)(MaxValue * fraction));
return new (rgb.R, rgb.G, rgb.B);
}
///
protected override int MaxValue => 255;
}