Class Ellipse2dfx

    • Constructor Detail

      • Ellipse2dfx

        public Ellipse2dfx()
        Construct an empty ellipse.
      • Ellipse2dfx

        public Ellipse2dfx​(Point2D<?,​?> min,
                           Point2D<?,​?> max)
        Construct an ellipse with the given minimum and maximum corners for its bounding box.
        Parameters:
        min - is the min corner of the ellipse.
        max - is the max corner of the ellipse.
      • Ellipse2dfx

        public Ellipse2dfx​(double x,
                           double y,
                           double width,
                           double height)
        Construct an ellipse with the given minimum corner and sizes for its bounding box.
        Parameters:
        x - x coordinate of the minimum corner of the ellipse's bounding box.
        y - y coordinate of the minimum corner of the ellipse's bounding box.
        width - width of the ellipse's bounding box.
        height - height of the ellipse's bounding box.
      • Ellipse2dfx

        public Ellipse2dfx​(Ellipse2afp<?,​?,​?,​?,​?,​?> ellipse)
        Constructor by copy.
        Parameters:
        ellipse - the ellipse to copy.