public class Point
extends java.lang.Object
| Constructor and Description |
|---|
Point()
Create a new point at the origin (0.0, 0.0).
|
Point(double nh,
double nv)
Create a new point at the specified coordinates.
|
| Modifier and Type | Method and Description |
|---|---|
void |
delete() |
Point |
distanceTransform(Matrix arg0)
Distance Transform the Point Object by the values in the Matrix parameter, which is a transformation without any translation.
|
boolean |
equals(java.lang.Object rhs) |
double |
getH()
The horizontal coordinate of the point.
|
double |
getV()
The vertical coordinate of the point.
|
void |
setH(double value)
The horizontal coordinate of the point.
|
void |
setV(double value)
The vertical coordinate of the point.
|
java.lang.String |
toString() |
Point |
transform(Matrix arg0)
Transform the Point Object by the values in the Matrix parameter.
|
public Point()
public Point(double nh,
double nv)
nh - the horizontal coordinatenv - the vertical coordinatepublic void delete()
public boolean equals(java.lang.Object rhs)
equals in class java.lang.Objectpublic void setH(double value)
public double getH()
public void setV(double value)
public double getV()
public Point transform(Matrix arg0)
public Point distanceTransform(Matrix arg0)
public java.lang.String toString()
toString in class java.lang.Object