public void prependScale (double sx, double sy)

Prepends the 2D scale to this instance. It is equivalent to prepend(new Scale(sx, sy)).

The operation modifies this transform in a way that applying it to a node has the same effect as adding two transforms to its getTransforms() list, the specified scale first and this transform second.

From the matrix point of view, the transformation matrix of this transform is multiplied on the left by the transformation matrix of the specified scale.

Parameters:
sx    the X coordinate scale factor
sy    the Y coordinate scale factor

Since:  JavaFX 8.0