Uses of Class
edu.umd.cs.piccolo.nodes.PPath

Packages that use PPath
Package
Description
This package contains nodes that may be useful for Piccolo applications.
  • Uses of PPath in edu.umd.cs.piccolo.nodes

    Methods in edu.umd.cs.piccolo.nodes that return PPath
    Modifier and Type
    Method
    Description
    static PPath
    PPath.createEllipse(float x, float y, float width, float height)
    Creates a PPath object in the shape of an ellipse.
    static PPath
    PPath.createLine(float x1, float y1, float x2, float y2)
    Creates a PPath in the shape of a line.
    static PPath
    PPath.createPolyline(float[] xp, float[] yp)
    Creates a PPath for the poly-line for the given points.
    static PPath
    PPath.createPolyline(Point2D[] points)
    Creates a PPath for the poly-line for the given points.
    static PPath
    PPath.createRectangle(float x, float y, float width, float height)
    Creates a PPath object in the shape of a rectangle.
    static PPath
    PPath.createRoundRectangle(float x, float y, float width, float height, float arcWidth, float arcHeight)
    Creates a PPath object in the shape of a rounded rectangle.