Class Point

java.lang.Object
com.itextpdf.awt.geom.Point2D
com.itextpdf.awt.geom.Point
All Implemented Interfaces:
Serializable, Cloneable

public class Point extends Point2D implements Serializable
See Also:
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      See Also:
    • x

      public double x
    • y

      public double y
  • Constructor Details

    • Point

      public Point()
    • Point

      public Point(int x, int y)
    • Point

      public Point(double x, double y)
    • Point

      public Point(Point p)
  • Method Details

    • equals

      public boolean equals(Object obj)
      Overrides:
      equals in class Point2D
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • getX

      public double getX()
      Specified by:
      getX in class Point2D
    • getY

      public double getY()
      Specified by:
      getY in class Point2D
    • getLocation

      public Point getLocation()
    • setLocation

      public void setLocation(Point p)
    • setLocation

      public void setLocation(int x, int y)
    • setLocation

      public void setLocation(double x, double y)
      Specified by:
      setLocation in class Point2D
    • move

      public void move(int x, int y)
    • move

      public void move(double x, double y)
    • translate

      public void translate(int dx, int dy)
    • translate

      public void translate(double dx, double dy)