Package org.fonteditor.options.display

Examples of org.fonteditor.options.display.DisplayOptions


   * Change the order of paths so that black paths are at the bottom...
   * Optimise - only do this if it is necessary...
   */
  private static void reorderPaths(FEGlyph glyph)
  {
    DisplayOptions gdo = DisplayOptions.getGDOForScaling();

    glyph.makeGlyphIfNeeded(gdo);

    // make instructionstream from path list...
    final InstructionStream is_in = glyph.getInstructionStream();
View Full Code Here


    this.name = name;
    fega = new GlyphArray(max);
  }

  public void scaleRipped() {
    DisplayOptions gdo = DisplayOptions.getGDOForScaling();

    for (int i = min; i < max; i++) {
      FEGlyph glyph = fega.getGlyph(i);

      // Translate...
View Full Code Here

  private void setHintingCues(HintingCues hinting_cues) {
    this.hinting_cues = hinting_cues;
  }

  private void setupHintingCues() {
    DisplayOptions gdo = DisplayOptions.getGDOForScaling();
    FEGlyph glyph;
   
    glyph = fega.getGlyph('o');

    int min_lower_o = glyph.getMinY(gdo);
View Full Code Here

TOP

Related Classes of org.fonteditor.options.display.DisplayOptions

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.