public void appendScale (double sx, double sy)

Appends the 2D scale to this instance. It is equivalent to append(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, this transform first and the specified scale second.

From the matrix point of view, the transformation matrix of this transform is multiplied on the right 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