Example usage for java.awt.geom Arc2D setAngles

List of usage examples for java.awt.geom Arc2D setAngles

Introduction

In this page you can find the example usage for java.awt.geom Arc2D setAngles.

Prototype

public void setAngles(double x1, double y1, double x2, double y2) 

Source Link

Document

Sets the starting angle and angular extent of this arc using two sets of coordinates.

Usage

From source file:Main.java

public void paint(Graphics g) {
    Graphics2D g2 = (Graphics2D) g;
    int w = getSize().width;
    int h = getSize().height;

    Arc2D arc = new Arc2D.Double(0.0, 0.5, w, h, 0.0, 60.0, Arc2D.CHORD);
    arc.setAngles(0.4, 0.5, 0.6, 0.3);
    g2.draw(arc);//from   w w w.  j a  v  a2 s  . co m

    arc = new Arc2D.Float(0.0f, 0.0f, w, h, 80.0f, 110.0f, Arc2D.PIE);

    g2.fill(arc);

    arc = new Arc2D.Float(0.0f, 0.0f, w, h, 210.0f, 130.0f, Arc2D.OPEN);

    g2.draw(arc);
}