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.


Variable Index

 o x
The x-coordinate.
 o y
The y-coordinate.

Constructor Index

 o PointUC()
Construct a point with default field values.
 o PointUC(double, double)
Construct a point with the given field values.
 o PointUC(PointUC)
Construct a point from another one.

Method Index

 o assign(PointUC)
Set the fields of this object equal to those of a given object.
 o equals(PointUC)
Return whether the fields of another object are equal in value to the fields of this one.
 o init()
Set the point fields to their default values.
 o toString()
Return the string representation.

Variables

 o x
 public double x
The x-coordinate.

 o y
 public double y
The y-coordinate.

Constructors

 o PointUC
 public PointUC()
Construct a point with default field values.

 o PointUC
 public PointUC(PointUC p)
Construct a point from another one.

 o PointUC
 public PointUC(double x,
                double y)
Construct a point with the given field values.

Methods

 o assign
 public PointUC assign(PointUC p)
Set the fields of this object equal to those of a given object.

Returns:
this
 o equals
 public boolean equals(PointUC p)
Return whether the fields of another object are equal in value to the fields of this one.

 o init
 public PointUC init()
Set the point fields to their default values.

Returns:
this
 o toString
 public String toString()
Return the string representation.

Overrides:
toString in class Object

All Packages  Class Hierarchy  This Package  Previous  Next  Index