public void prependShear (double shx, double shy, double pivotX, double pivotY)

Prepends the shear with pivot to this instance. It is equivalent to prepend(new Shear(sx, sy, pivotX, pivotY)).

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 shear 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 shear.

Parameters:
shx    the XY coordinate element
shy    the YX coordinate element
pivotX    the X coordinate of the shear pivot point
pivotY    the Y coordinate of the shear pivot point

Since:  JavaFX 8.0