public void appendShear (double shx, double shy, Point2D pivot)

Appends the shear with pivot to this instance. It is equivalent to append(new Shear(sx, sy, pivot.getX(), pivot.getY())).

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

Parameters:
shx    the XY coordinate element
shy    the YX coordinate element
pivot    the shear pivot point

Exceptions:
NullPointerException    if the specified pivot is null

Since:  JavaFX 8.0