This repository was archived by the owner on Feb 22, 2020. It is now read-only.
File tree Expand file tree Collapse file tree
src/SixLabors.Core/Primitives Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -110,16 +110,6 @@ public Size Size
110110 }
111111 }
112112
113- /// <summary>
114- /// Gets the coordinates of the center of the rectangular region represented by this <see cref="RectangleF"/>.
115- /// </summary>
116- [ EditorBrowsable ( EditorBrowsableState . Never ) ]
117- public Point Center
118- {
119- [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
120- get => new Point ( this . X + ( this . Width / 2 ) , this . Y + ( this . Height / 2 ) ) ;
121- }
122-
123113 /// <summary>
124114 /// Gets a value indicating whether this <see cref="Rectangle"/> is empty.
125115 /// </summary>
Original file line number Diff line number Diff line change @@ -110,16 +110,6 @@ public SizeF Size
110110 }
111111 }
112112
113- /// <summary>
114- /// Gets the coordinates of the center of the rectangular region represented by this <see cref="RectangleF"/>.
115- /// </summary>
116- [ EditorBrowsable ( EditorBrowsableState . Never ) ]
117- public PointF Center
118- {
119- [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
120- get => new PointF ( this . X + ( this . Width / 2 ) , this . Y + ( this . Height / 2 ) ) ;
121- }
122-
123113 /// <summary>
124114 /// Gets a value indicating whether this <see cref="RectangleF"/> is empty.
125115 /// </summary>
You can’t perform that action at this time.
0 commit comments