Example usage for java.awt.geom Ellipse2D.Double getPathIterator

List of usage examples for java.awt.geom Ellipse2D.Double getPathIterator

Introduction

In this page you can find the example usage for java.awt.geom Ellipse2D.Double getPathIterator.

Prototype

public PathIterator getPathIterator(AffineTransform at) 

Source Link

Document

Returns an iteration object that defines the boundary of this Ellipse2D .

Usage

From source file:Main.java

public static void main(String args[]) {
    Ellipse2D.Double e = new Ellipse2D.Double(1.0, 2.0, 2.0, 2.0);

    e.getPathIterator(AffineTransform.getQuadrantRotateInstance(1));
}