cairo_rectangle() приватный Метод

private cairo_rectangle ( IntPtr cr, double x, double y, double width, double height ) : void
cr IntPtr
x double
y double
width double
height double
Результат void
Пример #1
0
        public void ClipExtendRectangle()
        {
            double x1, y1, x2, y2;

            NativeMethods.cairo_clip_extents(handle, out x1, out y1, out x2, out y2);
            NativeMethods.cairo_rectangle(handle, x1, y1, x2 - x1, y2 - y1);
        }
Пример #2
0
 public void Rectangle(double x, double y, double width, double height)
 {
     NativeMethods.cairo_rectangle(state, x, y, width, height);
 }
Пример #3
0
 public void Rectangle(double x, double y, double width, double height)
 {
     CheckDisposed();
     NativeMethods.cairo_rectangle(handle, x, y, width, height);
 }