Searched defs:newTX (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/font/
H A DGlyphVector.java394 * position. A <code>null</code> argument for <code>newTX</code>
400 * @param newTX the new transform of the glyph at <code>glyphIndex</code>
406 public abstract void setGlyphTransform(int glyphIndex, AffineTransform newTX); argument
/openjdk7/jdk/src/share/classes/sun/font/
H A DStandardGlyphVector.java468 public void setGlyphTransform(int ix, AffineTransform newTX) { argument
474 if (newTX == null || newTX.isIdentity()) {
479 gti.setGlyphTransform(ix, newTX); // sets flags
1438 void setGlyphTransform(int glyphIndex, AffineTransform newTX) { argument
1452 if (newTX == null || newTX.isIdentity()) {
1458 newTX.getMatrix(temp);

Completed in 36 milliseconds