< prev index next >

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

Print this page

        

@@ -35,15 +35,16 @@
 
 
 /**
  * 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:
  * <pre>
- *              [ 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   ]
  * </pre>
  * @since JavaFX 2.0
  */
 public class Scale extends Transform {
     /**
< prev index next >