Class Point

java.lang.Object
com.azure.ai.formrecognizer.models.Point

public final class Point extends Object
Represents the x and y coordinates of a point.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Point(float xCoordinate, float yCoordinate)
    Creates a Point object.
  • Method Summary

    Modifier and Type
    Method
    Description
    float
    Gets the x-coordinate value.
    float
    Gets the y-coordinate value.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • Point

      public Point(float xCoordinate, float yCoordinate)
      Creates a Point object.
      Parameters:
      xCoordinate - The x-axis point coordinate.
      yCoordinate - The y-axis point coordinate.
  • Method Details

    • getX

      public float getX()
      Gets the x-coordinate value.
      Returns:
      The x-axis coordinate value.
    • getY

      public float getY()
      Gets the y-coordinate value.
      Returns:
      The y-axis coordinate value.