Example usage for com.google.gwt.canvas.dom.client Context2d closePath

List of usage examples for com.google.gwt.canvas.dom.client Context2d closePath

Introduction

In this page you can find the example usage for com.google.gwt.canvas.dom.client Context2d closePath.

Prototype

public final native void closePath() ;

Source Link

Document

Closes the current path.

Usage

From source file:org.peergreen.vaadin.diagram.client.ui.IntermediateConnectorUI.java

License:Apache License

@Override
public void draw() {
    // Draw a line from the source port to the current mouse coordinates
    Context2d canvas = getCanvas();
    IPoint coordinates = getModel().getMouseCoordinates();

    canvas.save();/*  w  ww  .  j  av  a2  s .  c  o m*/
    canvas.beginPath();
    canvas.setStrokeStyle("#000");
    canvas.moveTo(sourcePort.getConnectorX(), sourcePort.getConnectorY());
    canvas.lineTo(coordinates.getX(), coordinates.getY());
    canvas.closePath();
    canvas.stroke();
    canvas.restore();
}

From source file:org.primordion.xholon.io.GridPanel.java

License:Open Source License

/**
 * Draw the grid.// w w  w.  jav a 2s  . c  om
 * @param ctx A GWT Context2d object.
 */
protected void drawGrid(Context2d ctx) {
    AbstractGrid currentCell = upperLeft;
    AbstractGrid startOfRow = upperLeft;
    for (int i = 0; i < nRows; i++) {
        for (int j = 0; j < nCols; j++) {
            if (this.isIncognita(currentCell)) {
                ctx.setFillStyle(TERRA_INCOGNITA_COLOR);
                ctx.beginPath();
                ctx.rect(j * cellSize, i * cellSize, cellSize, cellSize);
                ctx.closePath();
                ctx.fill();
            } else {
                if ((xholonConsole != null) && (currentCell == xholonConsole.getContext())) {
                    ctx.setFillStyle(COLOR_CONTEXT);
                } else {
                    ctx.setFillStyle(getColor(currentCell));
                }
                ctx.beginPath();
                ctx.rect(j * cellSize, i * cellSize, cellSize, cellSize);
                ctx.closePath();
                ctx.fill();
                if (useShapes) {
                    drawAgents(ctx, currentCell, j * cellSize, i * cellSize);
                }
            }
            currentCell = (AbstractGrid) currentCell.port[IGrid.P_EAST]; // get next cell
        }
        startOfRow = (AbstractGrid) startOfRow.port[IGrid.P_SOUTH]; // get start of next row
        currentCell = (AbstractGrid) startOfRow;
    }
}

From source file:org.primordion.xholon.io.GridPanel.java

License:Open Source License

/**
 * Draw a 1D CA grid.// w  w w . j a  v  a2  s . co  m
 * @param ctx A GWT Context2d object.
 */
protected void draw1dCaGrid(Context2d ctx) {
    AbstractGrid currentCell = upperLeft;
    AbstractGrid startOfRow = upperLeft;
    for (int i = 0; i < nRows; i++) {
        for (int j = 0; j < nCols; j++) {
            //ctx.setFillStyle(getColor(currentCell));
            if ((xholonConsole != null) && (currentCell == xholonConsole.getContext())) {
                ctx.setFillStyle(COLOR_CONTEXT);
            } else {
                ctx.setFillStyle(getColor(currentCell));
            }
            ctx.beginPath();
            ctx.rect(j * cellSize, i * cellSize, cellSize, cellSize);
            ctx.closePath();
            ctx.fill();
            if (useShapes) {
                drawAgents(ctx, currentCell, j * cellSize, i * cellSize);
            }
            currentCell = (AbstractGrid) currentCell.port[IGrid.P_CARIGHTNEIGHBOR]; // get next cell
        }
        startOfRow = (AbstractGrid) startOfRow.port[IGrid.P_CAFUTURESELF]; // get start of next row
        currentCell = (AbstractGrid) startOfRow;
    }
}

From source file:org.primordion.xholon.io.GridPanel.java

License:Open Source License

/**
 * Draw agents within the current grid cell.
 * Only one agent is drawn, for now./*  w  w w .  j ava2 s  . c o m*/
 * GWT code to draw a triangle:
<code>
Canvas canvas = Canvas.createIfSupported();
Context2d context1 = canvas.getContext2d();
context1.beginPath();
context1.moveTo(25,0);
context1.lineTo(0,20);
context1.lineTo(25,40);
context1.lineTo(25,0);
context1.fill();
context1.closePath();
</code>
 * @param ctx A GWT Context2d object.
 * @param currentCell The grid cell that the agents will draw themselves in.
 * @param x X coordinate of the grid cell.
 * @param y Y coordinate of the grid cell.
 */
protected void drawAgents(Context2d ctx, AbstractGrid currentCell, int x, int y) {
    IXholon agent = currentCell.getFirstChild(); // this should remain as getFirstChild()
    if (agent != null) {
        if (useIcons) {
            // Test of drawImage()
            String icon = ((IDecoration) agent.getXhc()).getIcon();
            if (icon != null) {
                drawImage(ctx, icon, x, y, cellSize, cellSize);
                return;
            }
        }
        ctx.setFillStyle(getColor(agent));
        int shape = getShape(agent);
        switch (shape) {
        case GPSHAPE_CIRCLE: // OK
        {
            ctx.beginPath();
            int xcentre = x + (int) (cellSize * 0.5);
            int ycentre = y + (int) (cellSize * 0.5);
            int radius = (int) (cellSize * 0.45);
            ctx.arc(xcentre, ycentre, radius, 0, Math.PI * 2);
            ctx.closePath();
            ctx.fill();
        }
            break;
        case GPSHAPE_TRIANGLE: // OK
        {
            int xCoor[] = { (int) (0.0 * cellSize), (int) (1.0 * cellSize), (int) (0.5 * cellSize) };
            int yCoor[] = { (int) (1.0 * cellSize), (int) (1.0 * cellSize), (int) (0.0 * cellSize) };
            drawPolygon(ctx, x, y, xCoor, yCoor, 3);

            //Polygon triangle = new Polygon(xCoor, yCoor, 3);
            //triangle.translate(x, y);
            //g.fillPolygon(triangle);

            /*ctx.save();
            ctx.translate(x, y);
            ctx.beginPath();
            ctx.moveTo(0.0*cellSize, 1.0*cellSize);
            ctx.lineTo(1.0*cellSize, 1.0*cellSize);
            ctx.lineTo(0.5*cellSize, 0.0*cellSize);
            ctx.lineTo(0.0*cellSize, 1.0*cellSize);
            ctx.fill();
            ctx.closePath();
            ctx.restore();*/
        }
            break;
        case GPSHAPE_RECTANGLE: // OK
        {
            int xCoor[] = { (int) (0.1 * cellSize), (int) (0.9 * cellSize), (int) (0.9 * cellSize),
                    (int) (0.1 * cellSize) };
            int yCoor[] = { (int) (0.9 * cellSize), (int) (0.9 * cellSize), (int) (0.1 * cellSize),
                    (int) (0.1 * cellSize) };
            drawPolygon(ctx, x, y, xCoor, yCoor, 4);

            //Polygon rectangle = new Polygon(xCoor, yCoor, 4);
            //rectangle.translate(x, y);
            //g.fillPolygon(rectangle);

            /*ctx.save();
            ctx.translate(x, y);
            ctx.beginPath();
            ctx.moveTo(0.1*cellSize, 0.9*cellSize);
            ctx.lineTo(0.9*cellSize, 0.9*cellSize);
            ctx.lineTo(0.9*cellSize, 0.1*cellSize);
            ctx.lineTo(0.1*cellSize, 0.1*cellSize);
            ctx.lineTo(0.1*cellSize, 0.9*cellSize);
            ctx.fill();
            ctx.closePath();
            ctx.restore();*/
        }
            break;
        case GPSHAPE_PENTAGON: {
            int xCoor[] = { (int) (0.2 * cellSize), (int) (0.8 * cellSize), (int) (1.0 * cellSize),
                    (int) (0.5 * cellSize), (int) (0.0 * cellSize) };
            int yCoor[] = { (int) (1.0 * cellSize), (int) (1.0 * cellSize), (int) (0.5 * cellSize),
                    (int) (0.0 * cellSize), (int) (0.5 * cellSize) };
            drawPolygon(ctx, x, y, xCoor, yCoor, 5);

            //Polygon pentagon = new Polygon(xCoor, yCoor, 5);
            //pentagon.translate(x, y);
            //g.fillPolygon(pentagon);
        }
            break;
        case GPSHAPE_HEXAGON: {
            int xCoor[] = { (int) (0.25 * cellSize), (int) (0.75 * cellSize), (int) (1.0 * cellSize),
                    (int) (0.75 * cellSize), (int) (0.25 * cellSize), (int) (0.0 * cellSize) };
            int yCoor[] = { (int) (1.0 * cellSize), (int) (1.0 * cellSize), (int) (0.5 * cellSize),
                    (int) (0.0 * cellSize), (int) (0.0 * cellSize), (int) (0.5 * cellSize) };
            drawPolygon(ctx, x, y, xCoor, yCoor, 6);

            //ctx.beginPath();
            //drawPolygon(ctx, x, y, 0.5, 6, 0, false);
            //ctx.fill();

            //Polygon hexagon = new Polygon(xCoor, yCoor, 6);
            //hexagon.translate(x, y);
            //g.fillPolygon(hexagon);
        }
            break;
        case GPSHAPE_OCTOGON: {
            int xCoor[] = { (int) (0.3 * cellSize), (int) (0.7 * cellSize), (int) (1.0 * cellSize),
                    (int) (1.0 * cellSize), (int) (0.7 * cellSize), (int) (0.3 * cellSize),
                    (int) (0.0 * cellSize), (int) (0.0 * cellSize) };
            int yCoor[] = { (int) (1.0 * cellSize), (int) (1.0 * cellSize), (int) (0.7 * cellSize),
                    (int) (0.3 * cellSize), (int) (0.0 * cellSize), (int) (0.0 * cellSize),
                    (int) (0.3 * cellSize), (int) (0.7 * cellSize) };
            drawPolygon(ctx, x, y, xCoor, yCoor, 8);

            //Polygon octogon = new Polygon(xCoor, yCoor, 8);
            //octogon.translate(x, y);
            //g.fillPolygon(octogon);
        }
            break;
        case GPSHAPE_STAR: {
            int xCoor[] = { (int) (0.5 * cellSize), (int) (1.0 * cellSize), (int) (0.8 * cellSize),
                    (int) (1.0 * cellSize), (int) (0.7 * cellSize), (int) (0.5 * cellSize),
                    (int) (0.3 * cellSize), (int) (0.0 * cellSize), (int) (0.2 * cellSize),
                    (int) (0.0 * cellSize) };
            int yCoor[] = { (int) (0.8 * cellSize), (int) (1.0 * cellSize), (int) (0.7 * cellSize),
                    (int) (0.4 * cellSize), (int) (0.4 * cellSize), (int) (0.0 * cellSize),
                    (int) (0.4 * cellSize), (int) (0.4 * cellSize), (int) (0.7 * cellSize),
                    (int) (1.0 * cellSize) };
            drawPolygon(ctx, x, y, xCoor, yCoor, 10);

            //Polygon star = new Polygon(xCoor, yCoor, 10);
            //star.translate(x, y);
            //g.fillPolygon(star);
        }
            break;
        case GPSHAPE_TURTLE: {
            int xCoor[] = { (int) (0.5 * cellSize), (int) (1.0 * cellSize), (int) (0.5 * cellSize),
                    (int) (0.0 * cellSize) };
            int yCoor[] = { (int) (0.7 * cellSize), (int) (1.0 * cellSize), (int) (0.0 * cellSize),
                    (int) (1.0 * cellSize) };
            drawPolygon(ctx, x, y, xCoor, yCoor, 4);

            //Polygon turtle = new Polygon(xCoor, yCoor, 4);
            //turtle.translate(x, y);
            //g.fillPolygon(turtle);
        }
            break;
        case GPSHAPE_SMALLCIRCLE: {
            ctx.beginPath();
            int xcentre = x + (int) (cellSize * 0.5);
            int ycentre = y + (int) (cellSize * 0.5);
            int radius = (int) (cellSize * 0.25);
            ctx.arc(xcentre, ycentre, radius, 0, Math.PI * 2);
            ctx.closePath();
            ctx.fill();
        }
            break;
        case GPSHAPE_SMALLRECTANGLE: {
            int xCoor[] = { (int) (0.25 * cellSize), (int) (0.75 * cellSize), (int) (0.75 * cellSize),
                    (int) (0.25 * cellSize) };
            int yCoor[] = { (int) (0.75 * cellSize), (int) (0.75 * cellSize), (int) (0.25 * cellSize),
                    (int) (0.25 * cellSize) };
            drawPolygon(ctx, x, y, xCoor, yCoor, 4);
        }
            break;
        case GPSHAPE_REVERSETRIANGLE: {
            int xCoor[] = { (int) (0.0 * cellSize), (int) (1.0 * cellSize), (int) (0.5 * cellSize) };
            int yCoor[] = { (int) (0.0 * cellSize), (int) (0.0 * cellSize), (int) (1.0 * cellSize) };
            drawPolygon(ctx, x, y, xCoor, yCoor, 3);
        }
            break;
        case GPSHAPE_CROSS: {
            int xCoor[] = { (int) (0.33 * cellSize), (int) (0.67 * cellSize), (int) (0.67 * cellSize),
                    (int) (1.0 * cellSize), (int) (1.0 * cellSize), (int) (0.67 * cellSize),
                    (int) (0.67 * cellSize), (int) (0.33 * cellSize), (int) (0.33 * cellSize),
                    (int) (0.0 * cellSize), (int) (0.0 * cellSize), (int) (0.33 * cellSize) };
            int yCoor[] = { (int) (0.0 * cellSize), (int) (0.0 * cellSize), (int) (0.33 * cellSize),
                    (int) (0.33 * cellSize), (int) (0.67 * cellSize), (int) (0.67 * cellSize),
                    (int) (1.0 * cellSize), (int) (1.0 * cellSize), (int) (0.67 * cellSize),
                    (int) (0.67 * cellSize), (int) (0.33 * cellSize), (int) (0.33 * cellSize) };
            drawPolygon(ctx, x, y, xCoor, yCoor, 12);
        }
            break;
        case GPSHAPE_DIAMOND: {
            int xCoor[] = { (int) (0.5 * cellSize), (int) (1.0 * cellSize), (int) (0.5 * cellSize),
                    (int) (0.0 * cellSize) };
            int yCoor[] = { (int) (0.0 * cellSize), (int) (0.5 * cellSize), (int) (1.0 * cellSize),
                    (int) (0.5 * cellSize) };
            drawPolygon(ctx, x, y, xCoor, yCoor, 4);
        }
            break;
        case GPSHAPE_WYE: {
            int xCoor[] = { (int) (0.25 * cellSize), (int) (0.5 * cellSize), (int) (0.75 * cellSize),
                    (int) (1.0 * cellSize), (int) (0.75 * cellSize), (int) (0.75 * cellSize),
                    (int) (0.25 * cellSize), (int) (0.25 * cellSize), (int) (0.0 * cellSize), };
            int yCoor[] = { (int) (0.0 * cellSize), (int) (0.25 * cellSize), (int) (0.0 * cellSize),
                    (int) (0.25 * cellSize), (int) (0.75 * cellSize), (int) (1.0 * cellSize),
                    (int) (1.0 * cellSize), (int) (0.75 * cellSize), (int) (0.25 * cellSize), };
            drawPolygon(ctx, x, y, xCoor, yCoor, 9);
        }
            break;
        case GPSHAPE_LRTRIANGLE: {
            int xCoor[] = { (int) (0.0 * cellSize), (int) (0.0 * cellSize), (int) (1.0 * cellSize) };
            int yCoor[] = { (int) (0.0 * cellSize), (int) (1.0 * cellSize), (int) (0.5 * cellSize) };
            drawPolygon(ctx, x, y, xCoor, yCoor, 3);
        }
            break;
        case GPSHAPE_RLTRIANGLE: {
            int xCoor[] = { (int) (1.0 * cellSize), (int) (1.0 * cellSize), (int) (0.0 * cellSize) };
            int yCoor[] = { (int) (0.0 * cellSize), (int) (1.0 * cellSize), (int) (0.5 * cellSize) };
            drawPolygon(ctx, x, y, xCoor, yCoor, 3);
        }
            break;
        case GPSHAPE_JAVASCRIPTCODE:
            this.makeJsShape(ctx, ((IDecoration) agent.getXhc()).getSymbol().substring(JSCODE_INDICATOR_LEN), x,
                    y, cellSize);
            break;
        case GPSHAPE_NOSHAPE:
            break;
        default: // the agent's shape directly specifies the number of sides
        {
            ctx.beginPath();
            drawPolygon(ctx, x, y, cellSize * 0.5, shape, 0, false);
            ctx.fill();
        }

        }
    }
}

From source file:org.primordion.xholon.io.GridPanel.java

License:Open Source License

/**
 * Draw a polygon.//from www.j  a  va  2  s  .  com
 */
protected void drawPolygon(Context2d ctx, int x, int y, int xCoor[], int yCoor[], int sides) {
    ctx.save();
    ctx.translate(x, y);
    ctx.beginPath();
    ctx.moveTo(xCoor[0], yCoor[0]);
    for (int i = 1; i < sides; i++) {
        ctx.lineTo(xCoor[i], yCoor[i]);
    }
    ctx.lineTo(xCoor[0], yCoor[0]);
    ctx.fill();
    ctx.closePath();
    ctx.restore();
}

From source file:org.primordion.xholon.io.GridPanel.java

License:Open Source License

/**
 * Draw a regular polygon./* w w w  .j  a  v a2 s  . c  om*/
 * Example:
<code>
context.beginPath();
polygon(context,350,125,100,6,-Math.PI/2);
context.fillStyle="rgba(51,128,255,0.75)";
context.fill();
context.stroke();
</code>
 * @param ctx A GWT Context2d object.
 * @param x X coordinate of the grid cell.
 * @param y Y coordinate of the grid cell.
 * @param radius 
 * @param sides The number of sides in the polygon. This value must be >= 3.
 * @param startAngle Angle in radians.
 * @param anticlockwise Draw clockwise (false) or anticlockwise (true).
 * @see http://www.storminthecastle.com/2013/07/24/how-you-can-draw-regular-polygons-with-the-html5-canvas-api/
 */
protected void drawPolygon(Context2d ctx, int x, int y, double radius, int sides, double startAngle,
        boolean anticlockwise) {
    if (sides < 3)
        return;
    double a = (Math.PI * 2) / sides;
    a = anticlockwise ? -a : a;
    ctx.save();
    ctx.translate(x, y);
    ctx.rotate(startAngle);
    ctx.moveTo(radius, 0);
    for (int i = 1; i < sides; i++) {
        //double xcoor = radius * Math.cos(a * i);
        //double ycoor = radius * Math.sin(a * i);
        //System.out.println("i:" + i + " xcoor:" + xcoor + " ycoor:" + ycoor);
        //ctx.lineTo(xcoor, ycoor);
        ctx.lineTo(radius * Math.cos(a * i), radius * Math.sin(a * i));
    }
    ctx.closePath();
    ctx.restore();
}

From source file:org.rstudio.studio.client.workbench.views.vcs.dialog.graph.GraphLine.java

License:Open Source License

private void draw(Canvas canvas, GraphTheme theme) {
    int height = theme.getRowHeight();
    int colWidth = theme.getColumnWidth();
    double pad = theme.getVerticalLinePadding();

    canvas.setCoordinateSpaceHeight(height);
    canvas.setCoordinateSpaceWidth(colWidth * getTotalWidth(theme));
    Context2d ctx = canvas.getContext2d();

    //ctx.clearRect(0, 0, colWidth * columns_.length, height);

    ctx.translate(colWidth / 2.0, 0);//from   w w  w  .  j av a 2  s .co m

    int startPos = -1;
    int endPos = -1;
    int nexusColumn = -1;
    for (int i = 0; i < columns_.length; i++) {
        GraphColumn c = columns_[i];

        if (!c.start)
            startPos++;
        if (!c.end)
            endPos++;

        ctx.setStrokeStyle(theme.getColorForId(c.id));
        ctx.setLineWidth(theme.getStrokeWidth());
        ctx.setLineJoin(LineJoin.ROUND);

        if (!c.nexus && !c.start && !c.end) {
            // Just draw a line from start to end position

            ctx.beginPath();
            ctx.moveTo(startPos * colWidth, 0);
            ctx.lineTo(startPos * colWidth, pad);
            // This next lineTo helps ensure that the shape of the line looks
            // congruous to any specials on the same line
            ctx.lineTo(Math.min(startPos, endPos) * colWidth, height / 2.0);
            ctx.lineTo(endPos * colWidth, height - pad);
            ctx.lineTo(endPos * colWidth, height);
            ctx.stroke();
        } else {
            // something special

            if (c.nexus) {
                nexusColumn = i;
                ctx.setFillStyle(theme.getColorForId(c.id));
            }

            if (!c.start) {
                // draw from i to nexusColumn;
                ctx.beginPath();
                ctx.moveTo(startPos * colWidth, 0);
                ctx.lineTo(startPos * colWidth, pad);
                ctx.lineTo(nexusColumn * colWidth, height / 2.0);
                ctx.stroke();
            }

            if (!c.end) {
                // draw from nexusColumn to endPosition
                ctx.beginPath();
                ctx.moveTo(nexusColumn * colWidth, height / 2.0);
                ctx.lineTo(endPos * colWidth, height - pad);
                ctx.lineTo(endPos * colWidth, height);
                ctx.stroke();
            }

        }
    }

    // draw a circle on the nexus
    ctx.beginPath();
    ctx.arc(nexusColumn * colWidth, height / 2.0, theme.getCircleRadius() + theme.getStrokeWidth(), 0,
            Math.PI * 2);
    ctx.closePath();
    ctx.fill();

    ctx.beginPath();
    ctx.arc(nexusColumn * colWidth, height / 2.0, theme.getCircleRadius(), 0, Math.PI * 2);
    ctx.closePath();
    ctx.setFillStyle("white");
    ctx.fill();

}

From source file:org.teavm.samples.benchmark.gwt.BenchmarkStarter.java

License:Apache License

private void render() {
    Context2d context = canvas.getContext2d();
    context.setFillStyle("white");
    context.setStrokeStyle("grey");
    context.fillRect(0, 0, 600, 600);//from ww  w.  j  a  v a2s  .  c  om
    context.save();
    context.translate(0, 600);
    context.scale(1, -1);
    context.scale(100, 100);
    context.setLineWidth(0.01);
    for (Body body = scene.getWorld().getBodyList(); body != null; body = body.getNext()) {
        Vec2 center = body.getPosition();
        context.save();
        context.translate(center.x, center.y);
        context.rotate(body.getAngle());
        for (Fixture fixture = body.getFixtureList(); fixture != null; fixture = fixture.getNext()) {
            Shape shape = fixture.getShape();
            if (shape.getType() == ShapeType.CIRCLE) {
                CircleShape circle = (CircleShape) shape;
                context.beginPath();
                context.arc(circle.m_p.x, circle.m_p.y, circle.getRadius(), 0, Math.PI * 2, true);
                context.closePath();
                context.stroke();
            } else if (shape.getType() == ShapeType.POLYGON) {
                PolygonShape poly = (PolygonShape) shape;
                Vec2[] vertices = poly.getVertices();
                context.beginPath();
                context.moveTo(vertices[0].x, vertices[0].y);
                for (int i = 1; i < poly.getVertexCount(); ++i) {
                    context.lineTo(vertices[i].x, vertices[i].y);
                }
                context.closePath();
                context.stroke();
            }
        }
        context.restore();
    }
    context.restore();
}

From source file:playn.html.HtmlPath.java

License:Apache License

void replay(Context2d ctx) {
    ctx.beginPath();//from w ww.jav  a 2  s. c o m

    int len = list.length(), i = 0;
    double x = 0, y = 0;
    while (i < len) {
        switch ((int) list.get(i++)) {
        case CMD_MOVE: {
            x = list.get(i++);
            y = list.get(i++);
            ctx.moveTo(x, y);
            break;
        }
        case CMD_LINE: {
            x = list.get(i++);
            y = list.get(i++);
            ctx.lineTo(x, y);
            break;
        }
        case CMD_QUAD: {
            double cpx = list.get(i++);
            double cpy = list.get(i++);
            x = list.get(i++);
            y = list.get(i++);
            ctx.quadraticCurveTo(cpx, cpy, x, y);
            break;
        }
        case CMD_BEZIER: {
            double c1x = list.get(i++), c1y = list.get(i++);
            double c2x = list.get(i++), c2y = list.get(i++);
            x = list.get(i++);
            y = list.get(i++);
            ctx.bezierCurveTo(c1x, c1y, c2x, c2y, x, y);
            break;
        }
        case CMD_CLOSE: {
            ctx.closePath();
            break;
        }

        default:
            throw new AssertionError("Corrupt command list");
        }
    }
}

From source file:stroom.widget.htree.client.RoundedRectangle.java

License:Apache License

public void draw(final Context2d ctx, final double x, final double y, final double width, final double height,
        final double radius, final FillStrokeStyle fill, final FillStrokeStyle stroke) {
    ctx.beginPath();/*from   w  w w .ja va 2  s .  c  o  m*/
    ctx.moveTo(x + radius, y);
    ctx.lineTo(x + width - radius, y);
    ctx.quadraticCurveTo(x + width, y, x + width, y + radius);
    ctx.lineTo(x + width, y + height - radius);
    ctx.quadraticCurveTo(x + width, y + height, x + width - radius, y + height);
    ctx.lineTo(x + radius, y + height);
    ctx.quadraticCurveTo(x, y + height, x, y + height - radius);
    ctx.lineTo(x, y + radius);
    ctx.quadraticCurveTo(x, y, x + radius, y);
    ctx.closePath();

    if (fill != null) {
        ctx.setFillStyle(fill);
        ctx.fill();
    }

    if (stroke != null) {
        ctx.setStrokeStyle(stroke);
        ctx.stroke();
    }
}