Browse Source

Remove section headings

pull/7724/head
robloo 5 years ago
parent
commit
3e5acdc2c6
  1. 20
      src/Avalonia.Visuals/Media/HsvColor.cs

20
src/Avalonia.Visuals/Media/HsvColor.cs

@ -16,10 +16,6 @@ namespace Avalonia.Media
#endif #endif
readonly struct HsvColor : IEquatable<HsvColor> readonly struct HsvColor : IEquatable<HsvColor>
{ {
////////////////////////////////////////////////////////////////////////
// Constructors
////////////////////////////////////////////////////////////////////////
/// <summary> /// <summary>
/// Initializes a new instance of the <see cref="HsvColor"/> struct. /// Initializes a new instance of the <see cref="HsvColor"/> struct.
/// </summary> /// </summary>
@ -70,10 +66,6 @@ namespace Avalonia.Media
V = hsv.V; V = hsv.V;
} }
////////////////////////////////////////////////////////////////////////
// Properties
////////////////////////////////////////////////////////////////////////
/// <summary> /// <summary>
/// Gets the Alpha (transparency) channel value in the range from 0..1. /// Gets the Alpha (transparency) channel value in the range from 0..1.
/// </summary> /// </summary>
@ -94,10 +86,6 @@ namespace Avalonia.Media
/// </summary> /// </summary>
public double V { get; } public double V { get; }
////////////////////////////////////////////////////////////////////////
// Methods
////////////////////////////////////////////////////////////////////////
/// <inheritdoc/> /// <inheritdoc/>
public bool Equals(HsvColor other) public bool Equals(HsvColor other)
{ {
@ -151,10 +139,6 @@ namespace Avalonia.Media
return HsvColor.ToRgb(H, S, V, A); return HsvColor.ToRgb(H, S, V, A);
} }
////////////////////////////////////////////////////////////////////////
// Static Methods
////////////////////////////////////////////////////////////////////////
/// <summary> /// <summary>
/// Creates a new <see cref="HsvColor"/> from individual color channel values. /// Creates a new <see cref="HsvColor"/> from individual color channel values.
/// </summary> /// </summary>
@ -460,10 +444,6 @@ namespace Avalonia.Media
return new HsvColor(hue, saturation, value, a); return new HsvColor(hue, saturation, value, a);
} }
////////////////////////////////////////////////////////////////////////
// Operators
////////////////////////////////////////////////////////////////////////
/// <summary> /// <summary>
/// Indicates whether the values of two specified <see cref="HsvColor"/> objects are equal. /// Indicates whether the values of two specified <see cref="HsvColor"/> objects are equal.
/// </summary> /// </summary>

Loading…
Cancel
Save