Example usage for java.awt.geom CubicCurve2D getP1

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

Introduction

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

Prototype

public abstract Point2D getP1();

Source Link

Document

Returns the start point.

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);/*w w w .  j av  a  2 s  . c om*/

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