Package gnu.java.awt

Examples of gnu.java.awt.GradientPaintContext


                                    AffineTransform xform,
                                    RenderingHints hints)
  {
    Point2D xp1 = xform.transform(getPoint1(), null);
    Point2D xp2 = xform.transform(getPoint2(), null);
    return new GradientPaintContext((float) xp1.getX(), (float) xp1.getY(), c1,
            (float) xp2.getX(), (float) xp2.getY(), c2, cyclic);
  }
View Full Code Here

TOP

Related Classes of gnu.java.awt.GradientPaintContext

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.