Searched defs:Tx (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/
H A DGraphics2D.java1078 * with Tx is a new <code>Transform</code> Cx'. Cx' becomes the
1081 * equivalent to first transforming p by Tx and then transforming
1083 * words, Cx'(p) = Cx(Tx(p)). A copy of the Tx is made, if necessary,
1084 * so further modifications to Tx do not affect rendering.
1085 * @param Tx the <code>AffineTransform</code> object to be composed with
1090 public abstract void transform(AffineTransform Tx); argument
1117 * @param Tx the <code>AffineTransform</code> that was retrieved
1123 public abstract void setTransform(AffineTransform Tx); argument
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DAffineTransform.java485 * @param Tx the <code>AffineTransform</code> object to copy
488 public AffineTransform(AffineTransform Tx) { argument
489 this.m00 = Tx.m00;
490 this.m10 = Tx.m10;
491 this.m01 = Tx.m01;
492 this.m11 = Tx.m11;
493 this.m02 = Tx.m02;
494 this.m12 = Tx.m12;
495 this.state = Tx.state;
496 this.type = Tx
2171 setTransform(AffineTransform Tx) argument
2227 concatenate(AffineTransform Tx) argument
2435 preConcatenate(AffineTransform Tx) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/print/
H A DPeekGraphics.java1639 * with Tx is a new transform Cx'. Cx' becomes the current
1642 * equivalent to first transforming p by Tx and then transforming
1644 * Cx'(p) = Cx(Tx(p)).
1645 * A copy of the Tx is made, if necessary, so further
1646 * modifications to Tx do not affect rendering.
1647 * @param Tx The Transform object to be composed with the current
1653 public void transform(AffineTransform Tx) { argument
1654 mGraphics.transform(Tx);
1659 * @param Tx The Transform object to be used in the rendering process.
1664 public void setTransform(AffineTransform Tx) { argument
[all...]
H A DProxyGraphics2D.java1523 * with Tx is a new transform Cx'. Cx' becomes the current
1526 * equivalent to first transforming p by Tx and then transforming
1528 * Cx'(p) = Cx(Tx(p)).
1529 * A copy of the Tx is made, if necessary, so further
1530 * modifications to Tx do not affect rendering.
1531 * @param Tx The Transform object to be composed with the current
1537 public void transform(AffineTransform Tx) { argument
1538 mGraphics.transform(Tx);
1543 * @param Tx The Transform object to be used in the rendering process.
1548 public void setTransform(AffineTransform Tx) { argument
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DSunGraphics2D.java1526 * with Tx is a new transform Cx'. Cx' becomes the current
1529 * equivalent to first transforming p by Tx and then transforming
1531 * Cx'(p) = Cx(Tx(p)).
1532 * A copy of the Tx is made, if necessary, so further
1533 * modifications to Tx do not affect rendering.
1534 * @param Tx The Transform object to be composed with the current
1561 * @param Tx The Transform object to be used in the rendering process.
1567 public void setTransform(AffineTransform Tx) { argument
1569 transform.setTransform(Tx);
1573 transform.concatenate(Tx);
[all...]

Completed in 52 milliseconds