File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
components/RangeSelector/src Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments