java.lang.Object
javafx.scene.transform.Transform
javafx.scene.transform.Shear
- All Implemented Interfaces:
- Cloneable,- EventTarget
public class Shear extends Transform
This class represents an 
Affine object that shears coordinates
 by the specified multipliers. The matrix representing the shearing transformation
 around a pivot point (pivotX, pivotY) with multiplication factors x
 and y is as follows:
 
              [   1   x   0   -x*pivotY   ]
              [   y   1   0   -y*pivotX   ]
              [   0   0   1       0       ]
 
 For example:
 Text text = new Text("Using Shear for pseudo-italic font");
 text.setX(20);
 text.setY(50);
 text.setFont(new Font(20));
 text.getTransforms().add(new Shear(-0.35, 0));
 - Since:
- JavaFX 2.0
- 
Property SummaryProperties Type Property Description DoublePropertypivotXDefines the X coordinate of the shear pivot point.DoublePropertypivotYDefines the Y coordinate of the shear pivot point.DoublePropertyxDefines the multiplier by which coordinates are shifted in the direction of the positive X axis as a factor of their Y coordinate.DoublePropertyyDefines the multiplier by which coordinates are shifted in the direction of the positive Y axis as a factor of their X coordinate.Properties declared in class javafx.scene.transform.Transformidentity, onTransformChanged, type2D
- 
Constructor Summary
- 
Method SummaryModifier and Type Method Description Shearclone()Returns a deep copy of this transform.doublegetPivotX()Gets the value of the property pivotX.doublegetPivotY()Gets the value of the property pivotY.doublegetX()Gets the value of the property x.doublegetY()Gets the value of the property y.DoublePropertypivotXProperty()Defines the X coordinate of the shear pivot point.DoublePropertypivotYProperty()Defines the Y coordinate of the shear pivot point.voidsetPivotX(double value)Sets the value of the property pivotX.voidsetPivotY(double value)Sets the value of the property pivotY.voidsetX(double value)Sets the value of the property x.voidsetY(double value)Sets the value of the property y.StringtoString()Returns a string representation of thisShearobject.DoublePropertyxProperty()Defines the multiplier by which coordinates are shifted in the direction of the positive X axis as a factor of their Y coordinate.DoublePropertyyProperty()Defines the multiplier by which coordinates are shifted in the direction of the positive Y axis as a factor of their X coordinate.Methods declared in class javafx.scene.transform.TransformaddEventFilter, addEventHandler, affine, affine, column, column, createConcatenation, createInverse, deltaTransform, deltaTransform, deltaTransform, deltaTransform, determinant, getElement, getMxx, getMxy, getMxz, getMyx, getMyy, getMyz, getMzx, getMzy, getMzz, getOnTransformChanged, getTx, getTy, getTz, identityProperty, inverseDeltaTransform, inverseDeltaTransform, inverseDeltaTransform, inverseDeltaTransform, inverseTransform, inverseTransform, inverseTransform, inverseTransform, inverseTransform, inverseTransform2DPoints, inverseTransform3DPoints, isIdentity, isType2D, onTransformChangedProperty, removeEventFilter, removeEventHandler, rotate, row, row, scale, scale, setOnTransformChanged, shear, shear, similarTo, toArray, toArray, transform, transform, transform, transform, transform, transform2DPoints, transform3DPoints, transformChanged, translate, type2DPropertyMethods declared in class java.lang.Objectequals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods declared in interface javafx.event.EventTargetbuildEventDispatchChain
- 
Property Details- 
xDefines the multiplier by which coordinates are shifted in the direction of the positive X axis as a factor of their Y coordinate. Typical values are in the range -1 to 1, exclusive.- Default value:
- 0.0
- See Also:
- getX(),- setX(double)
 
- 
yDefines the multiplier by which coordinates are shifted in the direction of the positive Y axis as a factor of their X coordinate. Typical values are in the range -1 to 1, exclusive.- Default value:
- 0.0
- See Also:
- getY(),- setY(double)
 
- 
pivotXDefines the X coordinate of the shear pivot point.- Default value:
- 0.0
- See Also:
- getPivotX(),- setPivotX(double)
 
- 
pivotYDefines the Y coordinate of the shear pivot point.- Default value:
- 0.0
- See Also:
- getPivotY(),- setPivotY(double)
 
 
- 
- 
Constructor Details- 
Shearpublic Shear()Creates a default Shear (identity).
- 
Shearpublic Shear(double x, double y)Creates a new instance of Shear. The pivot point is set to (0,0)- Parameters:
- x- the multiplier by which coordinates are shifted in the direction of the positive X axis as a factor of their Y coordinate
- y- the multiplier by which coordinates are shifted in the direction of the positive Y axis as a factor of their X coordinate
 
- 
Shearpublic Shear(double x, double y, double pivotX, double pivotY)Creates a new instance of Shear with pivot.- Parameters:
- x- the multiplier by which coordinates are shifted in the direction of the positive X axis as a factor of their Y coordinate
- y- the multiplier by which coordinates are shifted in the direction of the positive Y axis as a factor of their X coordinate
- pivotX- the X coordinate of the shear pivot point
- pivotY- the Y coordinate of the shear pivot point
 
 
- 
- 
Method Details- 
setXpublic final void setX(double value)Sets the value of the property x.- Property description:
- Defines the multiplier by which coordinates are shifted in the direction of the positive X axis as a factor of their Y coordinate. Typical values are in the range -1 to 1, exclusive.
- Default value:
- 0.0
 
- 
getXpublic final double getX()Gets the value of the property x.- Property description:
- Defines the multiplier by which coordinates are shifted in the direction of the positive X axis as a factor of their Y coordinate. Typical values are in the range -1 to 1, exclusive.
- Default value:
- 0.0
 
- 
xPropertyDefines the multiplier by which coordinates are shifted in the direction of the positive X axis as a factor of their Y coordinate. Typical values are in the range -1 to 1, exclusive.- Default value:
- 0.0
- See Also:
- getX(),- setX(double)
 
- 
setYpublic final void setY(double value)Sets the value of the property y.- Property description:
- Defines the multiplier by which coordinates are shifted in the direction of the positive Y axis as a factor of their X coordinate. Typical values are in the range -1 to 1, exclusive.
- Default value:
- 0.0
 
- 
getYpublic final double getY()Gets the value of the property y.- Property description:
- Defines the multiplier by which coordinates are shifted in the direction of the positive Y axis as a factor of their X coordinate. Typical values are in the range -1 to 1, exclusive.
- Default value:
- 0.0
 
- 
yPropertyDefines the multiplier by which coordinates are shifted in the direction of the positive Y axis as a factor of their X coordinate. Typical values are in the range -1 to 1, exclusive.- Default value:
- 0.0
- See Also:
- getY(),- setY(double)
 
- 
setPivotXpublic final void setPivotX(double value)Sets the value of the property pivotX.- Property description:
- Defines the X coordinate of the shear pivot point.
- Default value:
- 0.0
 
- 
getPivotXpublic final double getPivotX()Gets the value of the property pivotX.- Property description:
- Defines the X coordinate of the shear pivot point.
- Default value:
- 0.0
 
- 
pivotXPropertyDefines the X coordinate of the shear pivot point.- Default value:
- 0.0
- See Also:
- getPivotX(),- setPivotX(double)
 
- 
setPivotYpublic final void setPivotY(double value)Sets the value of the property pivotY.- Property description:
- Defines the Y coordinate of the shear pivot point.
- Default value:
- 0.0
 
- 
getPivotYpublic final double getPivotY()Gets the value of the property pivotY.- Property description:
- Defines the Y coordinate of the shear pivot point.
- Default value:
- 0.0
 
- 
pivotYPropertyDefines the Y coordinate of the shear pivot point.- Default value:
- 0.0
- See Also:
- getPivotY(),- setPivotY(double)
 
- 
cloneDescription copied from class:TransformReturns a deep copy of this transform.
- 
toStringReturns a string representation of thisShearobject.
 
-