Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CommonRadialGradientBrush.cs « Drawing « Xamarin.PropertyEditing - github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f52f21b753af79d9234aba45c9d5b4c1334f1778 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
using System;
using System.Collections.Generic;

namespace Xamarin.PropertyEditing.Drawing
{
	/// <summary>
	/// Represents a radial gradient in the property editor panel.
	/// A focal point defines the beginning of the gradient, and a circle defines the end point of the gradient.
	/// </summary>
	[Serializable]
	public sealed class CommonRadialGradientBrush : CommonGradientBrush, IEquatable<CommonRadialGradientBrush>
	{
		public CommonRadialGradientBrush(
			CommonPoint center,
			CommonPoint gradientOrigin,
			double radiusX,
			double radiusY,
			IEnumerable<CommonGradientStop> stops,
			CommonColorInterpolationMode colorInterpolationMode = CommonColorInterpolationMode.SRgbLinearInterpolation,
			CommonBrushMappingMode mappingMode = CommonBrushMappingMode.RelativeToBoundingBox,
			CommonGradientSpreadMethod spreadMethod = CommonGradientSpreadMethod.Pad,
			double opacity = 1.0)
			: base (stops, colorInterpolationMode, mappingMode, spreadMethod, opacity)
		{
			Center = center;
			GradientOrigin = gradientOrigin;
			RadiusX = radiusX;
			RadiusY = radiusY;
		}

		/// <summary>
		/// The center of the outermost circle of the radial gradient.
		/// </summary>
		public CommonPoint Center { get; }
		/// <summary>
		/// The location of the two-dimensional focal point that defines the beginning of the gradient.
		/// </summary>
		public CommonPoint GradientOrigin { get; }
		/// <summary>
		/// The horizontal radius of the outermost circle of the radial gradient.
		/// </summary>
		public double RadiusX { get; }
		/// <summary>
		/// The vertical radius of the outermost circle of the radial gradient.
		/// </summary>
		public double RadiusY { get; }

		public override bool Equals (object obj)
		{
			var brush = obj as CommonRadialGradientBrush;
			if (brush == null) return false;
			return Equals (brush);
		}

		public bool Equals (CommonRadialGradientBrush other)
		{
			return other != null &&
				   base.Equals (other) &&
				   Center.Equals (other.Center) &&
				   GradientOrigin.Equals (other.GradientOrigin) &&
				   RadiusX == other.RadiusX &&
				   RadiusY == other.RadiusY;
		}

		public static bool operator == (CommonRadialGradientBrush left, CommonRadialGradientBrush right) => Equals (left, right);
		public static bool operator != (CommonRadialGradientBrush left, CommonRadialGradientBrush right) => !Equals (left, right);

		public override int GetHashCode ()
		{
			var hashCode = base.GetHashCode ();
			unchecked {
				hashCode = hashCode * -1521134295 + Center.GetHashCode ();
				hashCode = hashCode * -1521134295 + GradientOrigin.GetHashCode ();
				hashCode = hashCode * -1521134295 + RadiusX.GetHashCode ();
				hashCode = hashCode * -1521134295 + RadiusY.GetHashCode ();
			}
			return hashCode;
		}
	}
}