HomeSort by relevance Sort by last modified time
    Searched refs:BitmapCharacter (Results 1 - 6 of 6) sorted by null

  /external/jmonkeyengine/engine/src/core/com/jme3/font/
BitmapCharacterSet.java 47 private IntMap<IntMap<BitmapCharacter>> characters;
62 for (Entry<IntMap<BitmapCharacter>> entry : characters) {
66 IntMap<BitmapCharacter> charset = entry.getValue();
72 protected void writeCharset(OutputCapsule oc, int style, IntMap<BitmapCharacter> charset) throws IOException {
75 BitmapCharacter[] chars = new BitmapCharacter[size];
77 for (Entry<BitmapCharacter> chr : charset){
103 private IntMap<BitmapCharacter> readCharset(InputCapsule ic, int style) throws IOException {
104 IntMap<BitmapCharacter> charset = new IntMap<BitmapCharacter>();
    [all...]
BitmapCharacter.java 43 public class BitmapCharacter implements Savable, Cloneable {
55 public BitmapCharacter() {}
57 public BitmapCharacter(char c) {
62 public BitmapCharacter clone() {
64 BitmapCharacter result = (BitmapCharacter) super.clone();
BitmapFont.java 138 BitmapCharacter c = charSet.getCharacter(curChar);
148 BitmapCharacter c = charSet.getCharacter(newLineLastChar);
219 BitmapCharacter c = charSet.getCharacter((int) theChar);
LetterQuad.java 21 private BitmapCharacter bitmapChar = null;
77 BitmapCharacter getBitmapChar() {
219 BitmapCharacter bm = charSet.getCharacter(c, style);
223 void setBitmapChar(BitmapCharacter bitmapChar) {
320 BitmapCharacter lastChar = previous.getBitmapChar();
Letters.java 77 BitmapCharacter ellipsis = font.getCharSet().getCharacter(block.getEllipsisChar());
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/font/plugins/
BitmapFontLoader.java 36 import com.jme3.font.BitmapCharacter;
119 // New BitmapCharacter
120 BitmapCharacter ch = null;
125 ch = new BitmapCharacter();
161 BitmapCharacter ch = charSet.getCharacter(index);

Completed in 40 milliseconds