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

◆ Intersect() [2/2]

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

Definition at line 235 of file Rectangle.cs.

236 {
237 Rectangle rectangle = Intersect(rect, this);
238 X = rectangle.X;
239 Y = rectangle.Y;
240 Width = rectangle.Width;
241 Height = rectangle.Height;
242 }
void Intersect(Rectangle rect)
Definition Rectangle.cs:235
Rectangle(int x, int y, int width, int height)
Definition Rectangle.cs:123

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

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