Examples of strokeCircle()


Examples of playn.core.Canvas.strokeCircle()

    canvas.setAlpha(alpha);
   
    float strokeWidth = 16.0f;
    canvas.setStrokeColor(Color.rgb(255, 255, 255));
        canvas.setStrokeWidth(strokeWidth);
        canvas.strokeCircle((float) radius, (float) radius, (float) radius - (strokeWidth / 2.0f));
       
    return circleImage;
  }

  public ImageLayer asImageLayer() {
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.