mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 01:58:30 +00:00
110 lines
4.3 KiB
C#
110 lines
4.3 KiB
C#
// ReSharper disable CollectionNeverUpdated.Global
|
|
// ReSharper disable MemberCanBePrivate.Global
|
|
// ReSharper disable MemberCanBeProtected.Global
|
|
// ReSharper disable ReturnTypeCanBeEnumerable.Global
|
|
// ReSharper disable AutoPropertyCanBeMadeGetOnly.Global
|
|
// ReSharper disable UnusedMember.Global
|
|
|
|
using RGB.NET.Brushes.Gradients;
|
|
using RGB.NET.Brushes.Helper;
|
|
using RGB.NET.Core;
|
|
|
|
namespace RGB.NET.Brushes
|
|
{
|
|
/// <inheritdoc cref="AbstractBrush" />
|
|
/// <inheritdoc cref="IGradientBrush" />
|
|
/// <summary>
|
|
/// Represents a brush drawing a linear gradient.
|
|
/// </summary>
|
|
public class LinearGradientBrush : AbstractBrush, IGradientBrush
|
|
{
|
|
#region Properties & Fields
|
|
|
|
private Point _startPoint = new Point(0, 0.5);
|
|
/// <summary>
|
|
/// Gets or sets the start <see cref="Point"/> (as percentage in the range [0..1]) of the <see cref="IGradient"/> drawn by this <see cref="LinearGradientBrush"/>. (default: 0.0, 0.5)
|
|
/// </summary>
|
|
public Point StartPoint
|
|
{
|
|
get => _startPoint;
|
|
set => SetProperty(ref _startPoint, value);
|
|
}
|
|
|
|
private Point _endPoint = new Point(1, 0.5);
|
|
/// <summary>
|
|
/// Gets or sets the end <see cref="Point"/> (as percentage in the range [0..1]) of the <see cref="IGradient"/> drawn by this <see cref="LinearGradientBrush"/>. (default: 1.0, 0.5)
|
|
/// </summary>
|
|
public Point EndPoint
|
|
{
|
|
get => _endPoint;
|
|
set => SetProperty(ref _endPoint, value);
|
|
}
|
|
|
|
private IGradient _gradient;
|
|
/// <inheritdoc />
|
|
public IGradient Gradient
|
|
{
|
|
get => _gradient;
|
|
set => SetProperty(ref _gradient, value);
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Constructor
|
|
|
|
/// <inheritdoc />
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="T:RGB.NET.Brushes.LinearGradientBrush" /> class.
|
|
/// </summary>
|
|
public LinearGradientBrush()
|
|
{ }
|
|
|
|
/// <inheritdoc />
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="T:RGB.NET.Brushes.LinearGradientBrush" /> class.
|
|
/// </summary>
|
|
/// <param name="gradient">The <see cref="T:RGB.NET.Brushes.Gradients.IGradient" /> drawn by this <see cref="T:RGB.NET.Brushes.LinearGradientBrush" />.</param>
|
|
public LinearGradientBrush(IGradient gradient)
|
|
{
|
|
this.Gradient = gradient;
|
|
}
|
|
/// <inheritdoc />
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="T:RGB.NET.Brushes.LinearGradientBrush" /> class.
|
|
/// </summary>
|
|
/// <param name="startPoint">The start <see cref="T:RGB.NET.Core.Point" /> (as percentage in the range [0..1]).</param>
|
|
/// <param name="endPoint">The end <see cref="T:RGB.NET.Core.Point" /> (as percentage in the range [0..1]).</param>
|
|
/// <param name="gradient">The <see cref="T:RGB.NET.Brushes.Gradients.IGradient" /> drawn by this <see cref="T:RGB.NET.Brushes.LinearGradientBrush" />.</param>
|
|
public LinearGradientBrush(Point startPoint, Point endPoint, IGradient gradient)
|
|
{
|
|
this.StartPoint = startPoint;
|
|
this.EndPoint = endPoint;
|
|
this.Gradient = gradient;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Methods
|
|
|
|
/// <inheritdoc />
|
|
/// <summary>
|
|
/// Gets the color at an specific point assuming the brush is drawn into the given rectangle.
|
|
/// </summary>
|
|
/// <param name="rectangle">The rectangle in which the brush should be drawn.</param>
|
|
/// <param name="renderTarget">The target (key/point) from which the color should be taken.</param>
|
|
/// <returns>The color at the specified point.</returns>
|
|
protected override Color GetColorAtPoint(Rectangle rectangle, BrushRenderTarget renderTarget)
|
|
{
|
|
if (Gradient == null) return Color.Transparent;
|
|
|
|
Point startPoint = new Point(StartPoint.X * rectangle.Size.Width, StartPoint.Y * rectangle.Size.Height);
|
|
Point endPoint = new Point(EndPoint.X * rectangle.Size.Width, EndPoint.Y * rectangle.Size.Height);
|
|
|
|
double offset = GradientHelper.CalculateLinearGradientOffset(startPoint, endPoint, renderTarget.Point);
|
|
return Gradient.GetColor(offset);
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|