< prev index next >

modules/javafx.graphics/src/main/java/javafx/scene/transform/Translate.java

Print this page

        

@@ -35,15 +35,15 @@
 
 
 /**
  * This class represents an {@code Affine} object that translates coordinates
  * by the specified factors. The matrix representing the translating
- * transformation is as follows:
+ * transformation by distances {@code x}, {@code y} and {@code z} is as follows:
  * <pre>
- *              [   1    0    0    x  ]
- *              [   0    1    0    y  ]
- *              [   0    0    1    z  ]
+ *              [   1   0   0   x   ]
+ *              [   0   1   0   y   ]
+ *              [   0   0   1   z   ]
  * </pre>
  * @since JavaFX 2.0
  */
 
 public class Translate extends Transform {
< prev index next >