22 lines
317 B
Java
22 lines
317 B
Java
package com.tridium.gx;
|
|
|
|
public interface FontPeer {
|
|
double getAscent();
|
|
|
|
double getDescent();
|
|
|
|
double getHeight();
|
|
|
|
double getLeading();
|
|
|
|
double getMaxAscent();
|
|
|
|
double getMaxDescent();
|
|
|
|
double width(int i);
|
|
|
|
double width(String str);
|
|
|
|
double width(char[] cArr, int i, int i2);
|
|
}
|