org.diamondspin
Class DSPoint

java.lang.Object
  extended by java.awt.geom.Point2D
      extended by org.diamondspin.DSPoint
All Implemented Interfaces:
Serializable, Cloneable

public class DSPoint
extends Point2D
implements Serializable

DSPoint is a 2D point, with double precision and serializable.

Copyright 2002-2009 DiamondSpin project. All Rights Reserved.

Permission to use, copy, modify and distribute this software and its documentation for educational, research and non-profit purposes, without fee, and without a written agreement is hereby granted, provided that the above copyright notice and the following three paragraphs appear in all copies.

To request Permission to incorporate this software into commercial products contact one of the authors of the project.
  • Frederic Vernier (frederic.vernier@limsi.fr)
  • Chia Shen (chia_shen@harvard.edu)
  • Guillaume Besacier (guillaume.besacier@limsi.fr)
  • Daniel Wigdor (dwigdor@microsoft.com)

IN NO EVENT SHALL THE AUTHORS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE AUTHORS HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

THE AUTHORS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE AUTHORS HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.

Creation date : 17 october 2001

Version:
: 1.0
Author:
: Frederic vernier, (frederic.vernier@gmail.com) under Chia Shen supervision (chia_shen@harvard.edu).
See Also:
Serialized Form

Nested Class Summary
 
Nested classes/interfaces inherited from class java.awt.geom.Point2D
Point2D.Double, Point2D.Float
 
Field Summary
 double x
          The X coordinate of this Point2D.
 double y
          The Y coordinate of this Point2D.
 
Constructor Summary
DSPoint()
          Constructs and initializes a Point2D with coordinates (0, 0).
DSPoint(double X_Arg, double Y_Arg)
          Constructs and initializes a Point2D with the specified coordinates.
 
Method Summary
 double getX()
          Returns the X coordinate of this Point2D in double precision.
 double getY()
          Returns the Y coordinate of this Point2D in double precision.
 void setLocation(double x, double y)
          Sets the location of this Point2D to the specified double coordinates.
 String toString()
          Returns a String that represents the value of this Point2D.
 
Methods inherited from class java.awt.geom.Point2D
clone, distance, distance, distance, distanceSq, distanceSq, distanceSq, equals, hashCode, setLocation
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

x

public double x
The X coordinate of this Point2D.

Since:
1.2

y

public double y
The Y coordinate of this Point2D.

Since:
1.2
Constructor Detail

DSPoint

public DSPoint()
Constructs and initializes a Point2D with coordinates (0, 0).

Since:
1.2

DSPoint

public DSPoint(double X_Arg,
               double Y_Arg)
Constructs and initializes a Point2D with the specified coordinates.

Parameters:
X_Arg - cartesian x coordinate
Y_Arg - cartesian y coordinate
Method Detail

getX

public double getX()
Returns the X coordinate of this Point2D in double precision.

Specified by:
getX in class Point2D
Returns:
the X coordinate of this Point2D.
Since:
1.2

getY

public double getY()
Returns the Y coordinate of this Point2D in double precision.

Specified by:
getY in class Point2D
Returns:
the Y coordinate of this Point2D.
Since:
1.2

setLocation

public void setLocation(double x,
                        double y)
Sets the location of this Point2D to the specified double coordinates.

Specified by:
setLocation in class Point2D
Parameters:
x - the coordinates to which to set this Point2D
y - the coordinates to which to set this Point2D
Since:
1.2

toString

public String toString()
Returns a String that represents the value of this Point2D.

Overrides:
toString in class Object
Returns:
a string representation of this Point2D.
Since:
1.2


Copyright © 2006 Frederic Vernier(LIMSI) Chia Shen(MERL) Guillaume Besacier(LIMSI). All Rights Reserved.