--- old/modules/javafx.graphics/src/main/java/javafx/scene/transform/Scale.java 2018-07-31 08:50:37.545061600 +0300 +++ new/modules/javafx.graphics/src/main/java/javafx/scene/transform/Scale.java 2018-07-31 08:50:37.274023100 +0300 @@ -37,11 +37,12 @@ /** * This class represents an {@code Affine} object that scales coordinates * by the specified factors. The matrix representing the scaling transformation - * is as follows: + * around a pivot point {@code (pivotX, pivotY, pivotZ)} with scaling factors + * {@code x}, {@code y} and {@code z} is as follows: *
- *              [ x   0   0   (1-x)*pivotX ]
- *              [ 0   y   0   (1-y)*pivotY ]
- *              [ 0   0   z   (1-z)*pivotZ ]
+ *              [   x   0   0   (1-x)*pivotX   ]
+ *              [   0   y   0   (1-y)*pivotY   ]
+ *              [   0   0   z   (1-z)*pivotZ   ]
  * 
* @since JavaFX 2.0 */