Class Shear
- javafx.scene.transform.Transform
-
- javafx.scene.transform.Shear
All Implemented Interfaces:
public class Shear extends Transform
Affine object that shears coordinates by the specified multipliers. The matrix representing the shearing transformation 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 Summary
All MethodsInstance MethodsConcrete Methods Type Property and 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 inherited from class javafx.scene.transform.Transform
identity, onTransformChanged, type2D
-
-
Constructor Summary
Constructors Constructor and Description Shear()Creates a default Shear (identity).Shear(double x, double y)Creates a new instance of Shear.Shear(double x, double y, double pivotX, double pivotY)Creates a new instance of Shear with pivot.
-
Method Summary
All MethodsInstance MethodsConcrete Methods Modifier and Type Method and Description Shearclone()Returns a deep copy of this transform.TransformcreateConcatenation(Transform transform)Returns the concatenation of this transform and the specified transform.TransformcreateInverse()Returns the inverse transform of this transform.Point2DdeltaTransform(double x, double y)Transforms the relative magnitude vector by this transform.Point3DdeltaTransform(double x, double y, double z)Transforms the relative magnitude vector by this transform.doublegetMxy()Gets the XY coordinate element of the 3x4 matrix.doublegetMyx()Gets the YX coordinate element of the 3x4 matrix.doublegetPivotX()Gets the value of the property pivotX.doublegetPivotY()Gets the value of the property pivotY.doublegetTx()Gets the X coordinate translation element of the 3x4 matrix.doublegetTy()Gets the Y coordinate translation element of the 3x4 matrix.doublegetX()Gets the value of the property x.doublegetY()Gets the value of the property y.Point2DinverseDeltaTransform(double x, double y)Transforms the relative magnitude vector by the inverse of this transform.Point3DinverseDeltaTransform(double x, double y, double z)Transforms the relative magnitude vector by the inverse of this transform.Point2DinverseTransform(double x, double y)Transforms the specified point by the inverse of this transform.Point3DinverseTransform(double x, double y, double z)Transforms the specified point by the inverse of this transform.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.Point2Dtransform(double x, double y)Transforms the specified point by this transform.Point3Dtransform(double x, double y, double z)Transforms the specified point by this transform.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 inherited from class javafx.scene.transform.Transform
addEventFilter, addEventHandler, affine, affine, buildEventDispatchChain, column, column, deltaTransform, deltaTransform, determinant, getElement, getMxx, getMxz, getMyy, getMyz, getMzx, getMzy, getMzz, getOnTransformChanged, getTz, identityProperty, inverseDeltaTransform, inverseDeltaTransform, inverseTransform, inverseTransform, inverseTransform, inverseTransform2DPoints, inverseTransform3DPoints, isIdentity, isType2D, onTransformChangedProperty, removeEventFilter, removeEventHandler, rotate, row, row, scale, scale, setOnTransformChanged, shear, shear, similarTo, toArray, toArray, transform, transform, transform, transform2DPoints, transform3DPoints, transformChanged, translate, type2DProperty
-
-
Property Detail
-
x
public final DoubleProperty xProperty
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
See Also:
-
y
public final DoubleProperty yProperty
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
See Also:
-
pivotX
public final DoubleProperty pivotXProperty
Defines the X coordinate of the shear pivot point.Default value:
0.0
See Also:
-
pivotY
public final DoubleProperty pivotYProperty
Defines the Y coordinate of the shear pivot point.Default value:
0.0
See Also:
-
-
Constructor Detail
-
Shear
public Shear()
Creates a default Shear (identity).
-
Shear
public 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
-
Shear
public 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
-
-
Method Detail
-
setX
public 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
-
getX
public 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
-
xProperty
public final DoubleProperty xProperty()
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
See Also:
-
setY
public 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
-
getY
public 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
-
yProperty
public final DoubleProperty yProperty()
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
See Also:
-
setPivotX
public 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
-
getPivotX
public 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
-
pivotXProperty
public final DoubleProperty pivotXProperty()
Defines the X coordinate of the shear pivot point.Default value:
0.0
See Also:
-
setPivotY
public 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
-
getPivotY
public 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
-
pivotYProperty
public final DoubleProperty pivotYProperty()
Defines the Y coordinate of the shear pivot point.Default value:
0.0
See Also:
-
getMxy
public double getMxy()
Description copied from class:TransformGets the XY coordinate element of the 3x4 matrix.
-
getMyx
public double getMyx()
Description copied from class:TransformGets the YX coordinate element of the 3x4 matrix.
-
getTx
public double getTx()
Description copied from class:TransformGets the X coordinate translation element of the 3x4 matrix.
-
getTy
public double getTy()
Description copied from class:TransformGets the Y coordinate translation element of the 3x4 matrix.
-
createConcatenation
public Transform createConcatenation(Transform transform)
Description copied from class:TransformReturns the concatenation of this transform and the specified transform. Applying the resulting transform to a node has the same effect as adding the two transforms to itsgetTransforms()list,thistransform first and the specifiedtransformsecond.Overrides:
createConcatenationin classTransformParameters:
transform- transform to be concatenated with this transformReturns:
The concatenated transform
-
createInverse
public Transform createInverse()
Description copied from class:TransformReturns the inverse transform of this transform.Overrides:
createInversein classTransformReturns:
the inverse transform
-
clone
public Shear clone()
Description copied from class:TransformReturns a deep copy of this transform.
-
transform
public Point2D transform(double x, double y)Description copied from class:TransformTransforms the specified point by this transform. This method can be used only for 2D transforms.
-
transform
public Point3D transform(double x, double y, double z)Description copied from class:TransformTransforms the specified point by this transform.
-
deltaTransform
public Point2D deltaTransform(double x, double y)Description copied from class:TransformTransforms the relative magnitude vector by this transform. The vector is transformed without applying the translation components of the affine transformation matrix. This method can be used only for a 2D transform.Overrides:
deltaTransformin classTransformParameters:
x- vector magnitude in the direction of the X axisReturns:
the transformed relative magnitude vector represented by a
Point2Dinstance
-
deltaTransform
public Point3D deltaTransform(double x, double y, double z)Description copied from class:TransformTransforms the relative magnitude vector by this transform. The vector is transformed without applying the translation components of the affine transformation matrix.Overrides:
deltaTransformin classTransformParameters:
x- vector magnitude in the direction of the X axisReturns:
the transformed relative magnitude vector represented by a
Point3Dinstance
-
inverseTransform
public Point2D inverseTransform(double x, double y) throws NonInvertibleTransformExceptionDescription copied from class:TransformTransforms the specified point by the inverse of this transform. This method can be used only for 2D transforms.Overrides:
inverseTransformin classTransformParameters:
x- the X coordinate of the pointReturns:
the inversely transformed point
Throws:
NonInvertibleTransformException- if this transform cannot be inverted
-
inverseTransform
public Point3D inverseTransform(double x, double y, double z) throws NonInvertibleTransformExceptionDescription copied from class:TransformTransforms the specified point by the inverse of this transform.Overrides:
inverseTransformin classTransformParameters:
x- the X coordinate of the pointReturns:
the inversely transformed point
Throws:
NonInvertibleTransformException- if this transform cannot be inverted
-
inverseDeltaTransform
public Point2D inverseDeltaTransform(double x, double y) throws NonInvertibleTransformExceptionDescription copied from class:TransformTransforms the relative magnitude vector by the inverse of this transform. The vector is transformed without applying the translation components of the affine transformation matrix. This method can be used only for a 2D transform.Overrides:
inverseDeltaTransformin classTransformParameters:
x- vector magnitude in the direction of the X axisReturns:
the inversely transformed relative magnitude vector represented by a
Point2DinstanceThrows:
NonInvertibleTransformException- if this transform cannot be inverted
-
inverseDeltaTransform
public Point3D inverseDeltaTransform(double x, double y, double z) throws NonInvertibleTransformExceptionDescription copied from class:TransformTransforms the relative magnitude vector by the inverse of this transform. The vector is transformed without applying the translation components of the affine transformation matrix.Overrides:
inverseDeltaTransformin classTransformParameters:
x- vector magnitude in the direction of the X axisReturns:
the inversely transformed relative magnitude vector represented by a
Point3DinstanceThrows:
NonInvertibleTransformException- if this transform cannot be inverted
-
toString
public String toString()
Returns a string representation of thisShearobject.
-
© 2008, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from JavaFX API Documentation.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Java, JavaFX and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.