Cairo.NativeMethods.cairo_in_fill C# (CSharp) Метод

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

private cairo_in_fill ( IntPtr cr, double x, double y ) : bool
cr System.IntPtr
x double
y double
Результат bool
        internal static extern bool cairo_in_fill(IntPtr cr, double x, double y);

Usage Example

Пример #1
0
 public bool InFill(double x, double y)
 {
     return(NativeMethods.cairo_in_fill(state, x, y));
 }
All Usage Examples Of Cairo.NativeMethods::cairo_in_fill
NativeMethods