Class GlyphRenderer.Point

  • Enclosing class:
    GlyphRenderer

    private static class GlyphRenderer.Point
    extends java.lang.Object
    This class represents one point of a glyph.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private boolean endOfContour  
      private boolean onCurve  
      private int x  
      private int y  
    • Constructor Summary

      Constructors 
      Constructor Description
      Point​(int xValue, int yValue)  
      Point​(int xValue, int yValue, boolean onCurveValue, boolean endOfContourValue)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • x

        private int x
      • y

        private int y
      • onCurve

        private boolean onCurve
      • endOfContour

        private boolean endOfContour
    • Constructor Detail

      • Point

        Point​(int xValue,
              int yValue,
              boolean onCurveValue,
              boolean endOfContourValue)
      • Point

        Point​(int xValue,
              int yValue)
    • Method Detail

      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object