Package com.datalogics.PDFL
Class Point
java.lang.Object
com.datalogics.PDFL.Point
Represents a discrete point or space in a PDF. A Point in a PDF document is in the right plane, relative to the origin being the lower left corner of the document.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoiddelete()distanceTransform(Matrix arg0) Distance Transform the Point Object by the values in the Matrix parameter, which is a transformation without any translation.booleandoublegetH()The horizontal coordinate of the point.doublegetV()The vertical coordinate of the point.voidsetH(double value) The horizontal coordinate of the point.voidsetV(double value) The vertical coordinate of the point.toString()Transform the Point Object by the values in the Matrix parameter.
-
Constructor Details
-
Point
public Point()Create a new point at the origin (0.0, 0.0). -
Point
public Point(double nh, double nv) Create a new point at the specified coordinates.- Parameters:
nh- the horizontal coordinatenv- the vertical coordinate
-
-
Method Details
-
delete
public void delete() -
equals
-
setH
public void setH(double value) The horizontal coordinate of the point. -
getH
public double getH()The horizontal coordinate of the point. -
setV
public void setV(double value) The vertical coordinate of the point. -
getV
public double getV()The vertical coordinate of the point. -
transform
Transform the Point Object by the values in the Matrix parameter. -
distanceTransform
Distance Transform the Point Object by the values in the Matrix parameter, which is a transformation without any translation. -
toString
-