Class Point


  • public class Point
    extends Object
    Simple utility class to store a single point of a shape. It can be serialized into a JSON string.
    Author:
    Marco Orlandin (dejawho2@users.sourceforge.net)
    • Constructor Detail

      • Point

        public Point()
      • Point

        public Point​(int x,
                     int y)
    • Method Detail

      • getX

        public int getX()
      • setX

        public void setX​(int x)
      • getY

        public int getY()
      • setY

        public void setY​(int y)