Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Intersect() [2/2]

void System.Drawing.RectangleF.Intersect ( RectangleF rect)
inline

Definition at line 243 of file RectangleF.cs.

244 {
245 RectangleF rectangleF = Intersect(rect, this);
246 X = rectangleF.X;
247 Y = rectangleF.Y;
248 Width = rectangleF.Width;
249 Height = rectangleF.Height;
250 }
void Intersect(RectangleF rect)
RectangleF(float x, float y, float width, float height)

References System.Drawing.RectangleF.Height, System.Drawing.RectangleF.Intersect(), System.Drawing.RectangleF.Width, System.Drawing.RectangleF.X, and System.Drawing.RectangleF.Y.

Referenced by System.Drawing.RectangleF.Intersect().