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

◆ Truncate()

static Rectangle System.Drawing.Rectangle.Truncate ( RectangleF value)
inlinestatic

Definition at line 177 of file Rectangle.cs.

178 {
179 return new Rectangle((int)value.X, (int)value.Y, (int)value.Width, (int)value.Height);
180 }
Rectangle(int x, int y, int width, int height)
Definition Rectangle.cs:123

References System.Drawing.Rectangle.Rectangle(), and System.value.