Lines Matching defs:trans
1100 double trans = 0;
1108 trans += sign * (ssinfo[newn] - ssinfo[n]);
1113 trans *= pointSize;
1116 at.preConcatenate(AffineTransform.getTranslateInstance(0, trans));
1151 // trans = 1/2 of ascent * x
1879 * @param trans the <code>AffineTransform</code> associated with the
1882 * @throws IllegalArgumentException if <code>trans</code> is
1886 public Font deriveFont(int style, AffineTransform trans){
1890 applyTransform(trans, newValues);
1913 * @param trans the <code>AffineTransform</code> associated with the
1916 * @throws IllegalArgumentException if <code>trans</code> is
1920 public Font deriveFont(AffineTransform trans){
1922 applyTransform(trans, newValues);
2667 private static void applyTransform(AffineTransform trans, AttributeValues values) {
2668 if (trans == null) {
2671 values.setTransform(trans);