public class

Point

extends Object
java.lang.Object
   ↳ com.pdftron.pdf.Point

Class Overview

The Class Point.

Summary

Fields
public double x The x coordinate
public double y The y coordinate
Public Constructors
Point()
Instantiates a new point.
Point(double x, double y)
Instantiates a new point with given coordinates
Point(double[] points)
Instantiates a new point with given coordinates
[Expand]
Inherited Methods
From class java.lang.Object

Fields

public double x

The x coordinate

public double y

The y coordinate

Public Constructors

public Point ()

Instantiates a new point.

public Point (double x, double y)

Instantiates a new point with given coordinates

Parameters
x input x coordinate
y input y coordinate

public Point (double[] points)

Instantiates a new point with given coordinates

Parameters
points must be of length 2, containing the x and y coordinates