Package org.eclipse.swt.internal.gdip

Examples of org.eclipse.swt.internal.gdip.PointF


    }

    int brush = Gdip.PathGradientBrush_new(path.handle);
    if (brush == 0)
      SWT.error(SWT.ERROR_NO_HANDLES);
    PointF point = new PointF();
    point.X = centerPoint[0];
    point.Y = centerPoint[1];
    Gdip.PathGradientBrush_SetCenterPoint(brush, point);

    int colorRef = centerColor.handle;
View Full Code Here

TOP

Related Classes of org.eclipse.swt.internal.gdip.PointF

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.