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

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

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

Usage Example

Пример #1
0
 //[Obsolete("Use InverseTransformPoint instead")]
 public void InverseTransformPoint(ref double x, ref double y)
 {
     NativeMethods.cairo_device_to_user(state, ref x, ref y);
 }
All Usage Examples Of Cairo.NativeMethods::cairo_device_to_user
NativeMethods