< prev index next >

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

Print this page

        

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