| java.lang.Object | |
| ↳ | com.pdftron.pdf.Point |
The Class Point.
| 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
| |||||||||||
The x coordinate
The y coordinate
Instantiates a new point.
Instantiates a new point with given coordinates
| x | input x coordinate |
|---|---|
| y | input y coordinate |
Instantiates a new point with given coordinates
| points | must be of length 2, containing the x and y coordinates |
|---|