The Java Developers Almanac 1.4


Order this book from Amazon.

   
Home > List of Packages > java.awt.geom  [4 examples]

e656. Creating Basic Shapes

    Shape line = new Line2D.Float(x1, y1, x2, y2);
    Shape arc = new Arc2D.Float(x, y, w, h, start, extent, type);
    Shape oval = new Ellipse2D.Float(x, y, w, h);
    Shape rectangle = new Rectangle2D.Float(x, y, w, h);
    Shape roundRectangle = new RoundRectangle2D.Float(x, y, w, h, arcWidth, arcHeight);

 Related Examples
e657. Creating a Shape Using Lines and Curves
e658. Combining Shapes
e659. Scaling, Shearing, Translating, and Rotating a Shape


© 2002 Addison-Wesley.