Examples of circle()


Examples of com.badlogic.gdx.graphics.glutils.ShapeRenderer.circle()

    if (drawBones) {
      shapes.setColor(boneOriginColor);
      for (int i = 0, n = bones.size; i < n; i++) {
        Bone bone = bones.get(i);
        shapes.setColor(Color.GREEN);
        shapes.circle(skeletonX + bone.worldX, skeletonY + bone.worldY, 3 * scale, 8);
      }
    }

    shapes.end();
  }
View Full Code Here

Examples of com.google.gwt.i18n.client.gen.Shapes.circle()

  }

  public void testShapesFamily() {
    Shapes shapes = GWT.create(Shapes.class);
    // test overload
    assertEquals("aya irclecay", shapes.circle());
    ColorsAndShapesAndConcepts s = GWT.create(ColorsAndShapesAndConcepts.class);
    assertEquals("aya irclecay", s.circle());
    // test converge
    assertEquals("any primary color", s.shapeColor());
    assertEquals("trees", s.green());
View Full Code Here

Examples of com.itextpdf.text.pdf.PdfAppearance.circle()

       
        tpOff.setLineWidth(strokeWidth);
        tpOn.setLineWidth(strokeWidth);
       
        tpOff.circle(width / 2, height / 2, diameter / 2 - strokeWidth / 2);
        tpOn.circle(width / 2, height / 2, diameter / 2 - strokeWidth / 2);
       
        if (! normal) {
            tpOff.fillStroke();
            tpOn.fillStroke();
        } else {
View Full Code Here

Examples of com.itextpdf.text.pdf.PdfAppearance.circle()

            tpOn.stroke();
        }
       
        setFillColor(tpOn, color);
        if (! normal) {
            tpOn.circle(width / 2, height / 2, diameter * 0.23f);
        } else {
            tpOn.circle(width / 2, height / 2, diameter * 0.20f);
        }
        tpOn.fill();
       
View Full Code Here

Examples of com.itextpdf.text.pdf.PdfAppearance.circle()

       
        setFillColor(tpOn, color);
        if (! normal) {
            tpOn.circle(width / 2, height / 2, diameter * 0.23f);
        } else {
            tpOn.circle(width / 2, height / 2, diameter * 0.20f);
        }
        tpOn.fill();
       
        if (normal) {
            field.setAppearance(PdfAnnotation.APPEARANCE_NORMAL, OFF_STATE, tpOff);
View Full Code Here

Examples of com.itextpdf.text.pdf.PdfContentByte.circle()

            PdfGState gState = new PdfGState();
            gState.setFillOpacity(alpha);
            gState.setStrokeOpacity(alpha);
            cb.setGState(gState);
        }
        cb.circle(x, -y, size);
        if (borderSize > 0) {
            cb.fillStroke();
        } else {
            cb.fill();
        }
View Full Code Here

Examples of com.lowagie.text.pdf.PdfAppearance.circle()

            PdfAppearance tpOn = cb.createAppearance(20, 20);
           
            tpOff.circle(10, 10, 9);
            tpOff.stroke();

            tpOn.circle(10, 10, 9);
            tpOn.stroke();
            tpOn.circle(10, 10, 3);
            tpOn.fillStroke();

            radio.setFieldName("CreditCard");
View Full Code Here

Examples of com.lowagie.text.pdf.PdfAppearance.circle()

            tpOff.circle(10, 10, 9);
            tpOff.stroke();

            tpOn.circle(10, 10, 9);
            tpOn.stroke();
            tpOn.circle(10, 10, 3);
            tpOn.fillStroke();

            radio.setFieldName("CreditCard");
            radio.setValueAsName("MasterCard");
View Full Code Here

Examples of com.lowagie.text.pdf.PdfAppearance.circle()

            PdfAppearance tpOn = cb.createAppearance(20, 20);
           
            tpOff.circle(10, 10, 9);
            tpOff.stroke();

            tpOn.circle(10, 10, 9);
            tpOn.stroke();
            tpOn.circle(10, 10, 3);
            tpOn.fillStroke();

            radio.setFieldName("CreditCard");
View Full Code Here

Examples of com.lowagie.text.pdf.PdfAppearance.circle()

            tpOff.circle(10, 10, 9);
            tpOff.stroke();

            tpOn.circle(10, 10, 9);
            tpOn.stroke();
            tpOn.circle(10, 10, 3);
            tpOn.fillStroke();

            radio.setFieldName("CreditCard");
            radio.setValueAsName("MasterCard");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.