Example usage for java.awt.geom CubicCurve2D getFlatness

List of usage examples for java.awt.geom CubicCurve2D getFlatness

Introduction

In this page you can find the example usage for java.awt.geom CubicCurve2D getFlatness.

Prototype

public double getFlatness() 

Source Link

Document

Returns the flatness of this curve.

Usage

From source file:Main.java

public void paint(Graphics g) {
    Graphics2D g2d = (Graphics2D) g;

    CubicCurve2D cubcurve = new CubicCurve2D.Float(30, 400, 150, 400, 200, 500, 350, 450);
    g2d.draw(cubcurve);//from   w ww .ja v a2  s.c o m

    System.out.println(cubcurve.getFlatness());
}