Package org.fonteditor.sliders

Examples of org.fonteditor.sliders.SliderManager


      return;
    }

    // Step 1 - hint according to baselines and top lines...

    final SliderManager s_m_h = (SliderManager) s.getSliderManagerHorizontal();
    final int new_letter_o_bottom = hinting_map.getElement(3).getValueNew();
    hintBasicBaseToBottom(glyph, gdo, s_m_h, new_letter_o_bottom);
    hintBasicBaseToTop(glyph, gdo, s_m_h, new_letter_o_bottom);

    // Step 2 - hint according to top and bottom of characters...
View Full Code Here


  private static void hintHorizontally(FEGlyph glyph, DisplayOptions gdo, Sliders s) {
    if (!hint_x) {
      return;
    }

    final SliderManager s_m_v = (SliderManager) s.getSliderManagerVertical();
    hintBasicRight(glyph, gdo, s_m_v);
    hintBasicLeft(glyph, gdo, s_m_v);

    hintX(glyph, gdo, s_m_v);
  }
View Full Code Here

TOP

Related Classes of org.fonteditor.sliders.SliderManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.