Class FlPoint

java.lang.Object
org.loboevolution.pdfview.font.FlPoint

public class FlPoint extends Object
A floating-point Point, with public fields. Also contains a flag for "open" to indicate that the path this point is a member of has or hasn't been closed.

Author Mike Wessler

  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    boolean
    whether the path this point is a part of is open or closed.
    float
    x coordinate of the point
    float
    y coordinate of the point
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    final void
    reset the values to (0,0) and closed

    Methods inherited from class java.lang.Object

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

    • x

      public float x
      x coordinate of the point
    • y

      public float y
      y coordinate of the point
    • open

      public boolean open
      whether the path this point is a part of is open or closed. used in Type1CFont.java.
  • Constructor Details

    • FlPoint

      public FlPoint()
  • Method Details

    • reset

      public final void reset()
      reset the values to (0,0) and closed