Class PointF

java.lang.Object
me.clarius.sdk.PointF

public class PointF extends Object
Point with X and Y coordinates with double precision.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    double
    X coordinate.
    double
    Y coordinate.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Default constructor.
    PointF(double x, double y)
    Constructor with parameters.
  • Method Summary

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • x

      public double x
      X coordinate.
    • y

      public double y
      Y coordinate.
  • Constructor Details

    • PointF

      public PointF()
      Default constructor.
    • PointF

      public PointF(double x, double y)
      Constructor with parameters.
      Parameters:
      x - X coordinate.
      y - Y coordinate.