Skip to content

Commit 8488efa

Browse files
committed
Added missing XMLDoc comments
1 parent 3ae1af1 commit 8488efa

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

components/RangeSelector/src/RangeSelector.Helpers.UVCoord.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ public double V
105105
/// </summary>
106106
public static implicit operator Size(UVCoord uv) => new(uv.X, uv.Y);
107107

108+
/// <inheritdoc/>
108109
public static UVCoord operator +(UVCoord addend1, UVCoord addend2)
109110
{
110111
if (addend1.Orientation != addend2.Orientation)
@@ -118,26 +119,32 @@ public double V
118119
return new UVCoord(xSum, ySum, orientation);
119120
}
120121

122+
/// <inheritdoc/>
121123
public static bool operator ==(UVCoord coord1, UVCoord coord2)
122124
{
123125
return coord1.U == coord2.U && coord1.V == coord2.V;
124126
}
125127

128+
129+
/// <inheritdoc/>
126130
public static bool operator !=(UVCoord measure1, UVCoord measure2)
127131
{
128132
return !(measure1 == measure2);
129133
}
130134

135+
/// <inheritdoc/>
131136
public override bool Equals(object? obj)
132137
{
133138
return obj is UVCoord other && Equals(other);
134139
}
135140

141+
/// <inheritdoc/>
136142
public bool Equals(UVCoord other)
137143
{
138144
return this == other;
139145
}
140146

147+
/// <inheritdoc/>
141148
public override int GetHashCode()
142149
{
143150
return HashCode.Combine(U, V);

0 commit comments

Comments
 (0)