Generated by
JDiff

Class com.itextpdf.kernel.geom.Point

Documentation changed from old to new.

Removed Constructors
Point( Point)  
Point( int, int )  
 

Changed Constructors
Point( double, double ) Documentation changed from old to new.
Instantiates a new Point instance based on passed x and y.
Point( void) Documentation changed from old to new.
Instantiates a new Point instance with 0 x and y.
 

Removed Methods
double  distance( double, double , double , double )  
double  distanceSq( double, double , double , double )  
double  distanceSq( Point)  
double  distanceSq( double, double )  
void  setLocation( Point)  
void  setLocation( int, int )  
void  translate( double, double )  
 

Changed Methods
Point  getLocation() Documentation changed from old to new.
Gets location of point by creating a new copy.
double  getX() Documentation changed from old to new.
Gets x coordinate of the point.
double  getY() Documentation changed from old to new.
Gets y coordinate of the point.
void  move( double, double ) Documentation changed from old to new.
Moves the point by the specified offset.
double  distance( Point) Documentation changed from old to new.
The distance between this point and the second point.
double  distance( double, double ) Documentation changed from old to new.
The distance between this point and the second point which is defined by passed x and y coordinates.
void  setLocation( double, double ) Documentation changed from old to new.
Sets x and y double coordinates of the point.
 

Removed Fields
double  x  
double  y