Rect() public static method

public static Rect ( Rectangle rect ) : void
rect Rectangle
return void
Esempio n. 1
0
 public static void Rect(ref Rectangle rect)
 {
     GL.Rect(rect.Left, rect.Top, rect.Right, rect.Bottom);
 }
Esempio n. 2
0
 public static void Rect(ref System.Drawing.Rectangle rect)
 {
     GL.Rect(rect.Left, rect.Top, rect.Right, rect.Bottom);
 }
Esempio n. 3
0
 public static void Rect(ref LayoutFarm.Drawing.RectangleF rect)
 {
     GL.Rect(rect.Left, rect.Top, rect.Right, rect.Bottom);
 }