public static Cairo.RectangleInt ToCairoRectangleInt (this Rectangle r)
        {
            var r2 = new Cairo.RectangleInt ();

            r2.X = r.X;
            r2.Y = r.Y;
            r2.Width = r.Width;
            r2.Height = r.Height;

            return r2;
        }
Exemplo n.º 2
0
        public static Cairo.RectangleInt ToCairoRectangleInt(this Rectangle r)
        {
            var r2 = new Cairo.RectangleInt();

            r2.X      = r.X;
            r2.Y      = r.Y;
            r2.Width  = r.Width;
            r2.Height = r.Height;

            return(r2);
        }
Exemplo n.º 3
0
 public Cairo.Status XorRectangle(Cairo.RectangleInt rectangle)
 {
     throw null;
 }
Exemplo n.º 4
0
 public Cairo.Status UnionRectangle(Cairo.RectangleInt rectangle)
 {
     throw null;
 }
Exemplo n.º 5
0
 public Cairo.Status SubtractRectangle(Cairo.RectangleInt rectangle)
 {
     throw null;
 }
Exemplo n.º 6
0
 public Cairo.Status IntersectRectangle(Cairo.RectangleInt rectangle)
 {
     throw null;
 }
Exemplo n.º 7
0
 public Cairo.RegionOverlap ContainsPoint(Cairo.RectangleInt rectangle)
 {
     throw null;
 }
Exemplo n.º 8
0
 public Region(Cairo.RectangleInt rect)
 {
 }
Exemplo n.º 9
0
 public static Rectangle ToPintaRectangle(this Cairo.RectangleInt r)
 {
     return(new Rectangle(r.X, r.Y, r.Width, r.Height));
 }