< prev index next >

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

Print this page

        

*** 35,49 **** /** * This class represents an {@code Affine} object that scales coordinates * by the specified factors. The matrix representing the scaling transformation ! * is as follows: * <pre> ! * [ x 0 0 (1-x)*pivotX ] ! * [ 0 y 0 (1-y)*pivotY ] ! * [ 0 0 z (1-z)*pivotZ ] * </pre> * @since JavaFX 2.0 */ public class Scale extends Transform { /** --- 35,50 ---- /** * This class represents an {@code Affine} object that scales coordinates * by the specified factors. The matrix representing the scaling transformation ! * around a pivot point {@code (pivotX, pivotY, pivotZ)} with scaling factors ! * {@code x}, {@code y} and {@code z} is as follows: * <pre> ! * [ x 0 0 (1-x)*pivotX ] ! * [ 0 y 0 (1-y)*pivotY ] ! * [ 0 0 z (1-z)*pivotZ ] * </pre> * @since JavaFX 2.0 */ public class Scale extends Transform { /**
< prev index next >