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

◆ Round()

static Size System.Drawing.Size.Round ( SizeF value)
inlinestatic

Definition at line 151 of file Size.cs.

152 {
153 return new Size((int)Math.Round(value.Width), (int)Math.Round(value.Height));
154 }
Size(Point pt)
Definition Size.cs:55

References System.Drawing.Size.Size(), System.Math.Round(), and System.value.