コード例 #1
0
  // -------------//
  // computeLine //
  // -------------//
  public void computeLine() {
    line = new BasicLine();

    for (GlyphSection section : glyph.getMembers()) {
      StickSection ss = (StickSection) section;
      line.includeLine(ss.getLine());
    }

    if (logger.isFineEnabled()) {
      logger.fine(
          line
              + " pointNb="
              + line.getNumberOfPoints()
              + " meanDistance="
              + (float) line.getMeanDistance());
    }
  }