All Packages Class Hierarchy This Package Previous Next Index
Class GraphicPlotter.PointUC
java.lang.Object
|
+----GraphicPlotter.PointUC
- public final class PointUC
- extends Object
A two dimensional user (Cartesian) coordinates point.
-
x
- The x-coordinate.
-
y
- The y-coordinate.
-
PointUC()
- Construct a point with default field values.
-
PointUC(double, double)
- Construct a point with the given field values.
-
PointUC(PointUC)
- Construct a point from another one.
-
assign(PointUC)
- Set the fields of this object equal to those of a given object.
-
equals(PointUC)
- Return whether the fields of another object are equal in value to
the fields of this one.
-
init()
- Set the point fields to their default values.
-
toString()
- Return the string representation.
x
public double x
- The x-coordinate.
y
public double y
- The y-coordinate.
PointUC
public PointUC()
- Construct a point with default field values.
PointUC
public PointUC(PointUC p)
- Construct a point from another one.
PointUC
public PointUC(double x,
double y)
- Construct a point with the given field values.
assign
public PointUC assign(PointUC p)
- Set the fields of this object equal to those of a given object.
- Returns:
- this
equals
public boolean equals(PointUC p)
- Return whether the fields of another object are equal in value to
the fields of this one.
init
public PointUC init()
- Set the point fields to their default values.
- Returns:
- this
toString
public String toString()
- Return the string representation.
- Overrides:
- toString in class Object
All Packages Class Hierarchy This Package Previous Next Index