Class Shear
java.lang.Object
javafx.scene.transform.Transform
javafx.scene.transform.Shear
- All Implemented Interfaces:
Cloneable, EventTarget
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 Summary
PropertiesTypePropertyDescriptionfinal DoublePropertyDefines the X coordinate of the shear pivot point.final DoublePropertyDefines the Y coordinate of the shear pivot point.final DoublePropertyDefines the multiplier by which coordinates are shifted in the direction of the positive X axis as a factor of their Y coordinate.final DoublePropertyDefines 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 Transform
identity, onTransformChanged, type2DTypePropertyDescriptionfinal ReadOnlyBooleanPropertyDetermines if this is currently an identity transform.final ObjectProperty<EventHandler<? super TransformChangedEvent>> The onTransformChanged event handler is called whenever the transform changes any of its parameters.final ReadOnlyBooleanPropertyDetermines if this is currently a 2D transform. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionclone()Returns a deep copy of this transform.Returns the inverse transform of this transform.final doubleGets the value of thepivotXproperty.final doubleGets the value of thepivotYproperty.final doublegetX()Gets the value of thexproperty.final doublegetY()Gets the value of theyproperty.final DoublePropertyDefines the X coordinate of the shear pivot point.final DoublePropertyDefines the Y coordinate of the shear pivot point.final voidsetPivotX(double value) Sets the value of thepivotXproperty.final voidsetPivotY(double value) Sets the value of thepivotYproperty.final voidsetX(double value) Sets the value of thexproperty.final voidsetY(double value) Sets the value of theyproperty.toString()Returns a string representation of thisShearobject.final DoublePropertyDefines the multiplier by which coordinates are shifted in the direction of the positive X axis as a factor of their Y coordinate.final DoublePropertyDefines 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 Transform
addEventFilter, addEventHandler, affine, affine, buildEventDispatchChain, column, column, createConcatenation, 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, type2DPropertyModifier and TypeMethodDescriptionfinal <T extends Event>
voidaddEventFilter(EventType<T> eventType, EventHandler<? super T> eventFilter) Registers an event filter for this target.final <T extends Event>
voidaddEventHandler(EventType<T> eventType, EventHandler<? super T> eventHandler) Registers an event handler for this target.static Affineaffine(double mxx, double myx, double mxy, double myy, double tx, double ty) Returns a newAffineobject from 12 number values representing the 6 specifiable entries of the 3x4 Affine transformation matrix.static Affineaffine(double mxx, double mxy, double mxz, double tx, double myx, double myy, double myz, double ty, double mzx, double mzy, double mzz, double tz) Returns a newAffineobject from 12 number values representing the 12 specifiable entries of the 3x4 Affine transformation matrix.Construct an event dispatch chain for this target.double[]column(MatrixType type, int column) Returns an array containing a column of the transformation matrix.double[]column(MatrixType type, int column, double[] array) Returns an array containing a column of the transformation matrix.createConcatenation(Transform transform) Returns the concatenation of this transform and the specified transform.deltaTransform(double x, double y) Transforms the relative magnitude vector by this transform.deltaTransform(double x, double y, double z) Transforms the relative magnitude vector by this transform.deltaTransform(Point2D point) Transforms the relative magnitude vector represented by the specifiedPoint2Dinstance by this transform.deltaTransform(Point3D point) Transforms the relative magnitude vector represented by the specifiedPoint3Dinstance by this transform.doubleComputes determinant of the transformation matrix.doublegetElement(MatrixType type, int row, int column) Gets the specified element of the transformation matrix.doublegetMxx()Gets the X coordinate scaling element of the 3x4 matrix.doublegetMxy()Gets the XY coordinate element of the 3x4 matrix.doublegetMxz()Gets the XZ coordinate element of the 3x4 matrix.doublegetMyx()Gets the YX coordinate element of the 3x4 matrix.doublegetMyy()Gets the Y coordinate scaling element of the 3x4 matrix.doublegetMyz()Gets the YZ coordinate element of the 3x4 matrix.doublegetMzx()Gets the ZX coordinate element of the 3x4 matrix.doublegetMzy()Gets the ZY coordinate element of the 3x4 matrix.doublegetMzz()Gets the Z coordinate scaling element of the 3x4 matrix.final EventHandler<? super TransformChangedEvent> Gets the onTransformChanged event handler.doublegetTx()Gets the X coordinate translation element of the 3x4 matrix.doublegetTy()Gets the Y coordinate translation element of the 3x4 matrix.doublegetTz()Gets the Z coordinate translation element of the 3x4 matrix.final ReadOnlyBooleanPropertyDetermines if this is currently an identity transform.inverseDeltaTransform(double x, double y) Transforms the relative magnitude vector by the inverse of this transform.inverseDeltaTransform(double x, double y, double z) Transforms the relative magnitude vector by the inverse of this transform.inverseDeltaTransform(Point2D point) Transforms the relative magnitude vector represented by the specifiedPoint2Dinstance by the inverse of this transform.inverseDeltaTransform(Point3D point) Transforms the relative magnitude vector represented by the specifiedPoint3Dinstance by the inverse of this transform.inverseTransform(double x, double y) Transforms the specified point by the inverse of this transform.inverseTransform(double x, double y, double z) Transforms the specified point by the inverse of this transform.inverseTransform(Bounds bounds) Transforms the specified bounds by the inverse of this transform.inverseTransform(Point2D point) Transforms the specified point by the inverse of this transform.inverseTransform(Point3D point) Transforms the specified point by the inverse of this transform.voidinverseTransform2DPoints(double[] srcPts, int srcOff, double[] dstPts, int dstOff, int numPts) Transforms an array of coordinates by the inverse of this transform.voidinverseTransform3DPoints(double[] srcPts, int srcOff, double[] dstPts, int dstOff, int numPts) Transforms an array of floating point coordinates by the inverse of this transform.final booleanGets the value of theidentityproperty.final booleanisType2D()Gets the value of thetype2Dproperty.final ObjectProperty<EventHandler<? super TransformChangedEvent>> The onTransformChanged event handler is called whenever the transform changes any of its parameters.final <T extends Event>
voidremoveEventFilter(EventType<T> eventType, EventHandler<? super T> eventFilter) Unregisters a previously registered event filter from this target.final <T extends Event>
voidremoveEventHandler(EventType<T> eventType, EventHandler<? super T> eventHandler) Unregisters a previously registered event handler from this target.static Rotaterotate(double angle, double pivotX, double pivotY) Returns aRotateobject that rotates coordinates around a pivot point.double[]row(MatrixType type, int row) Returns an array containing a row of the transformation matrix.double[]row(MatrixType type, int row, double[] array) Returns an array containing a row of the transformation matrix.static Scalescale(double x, double y) Returns aScaleobject representing a scaling transformation.static Scalescale(double x, double y, double pivotX, double pivotY) Returns aScaleobject representing a scaling transformation.final voidsetOnTransformChanged(EventHandler<? super TransformChangedEvent> value) Sets the onTransformChanged event handler which is called whenever the transform changes any of its parameters.static Shearshear(double x, double y) Returns aShearobject representing a shearing transformation.static Shearshear(double x, double y, double pivotX, double pivotY) Returns aShearobject representing a shearing transformation.booleanChecks if this transform is similar to the specified transform.double[]toArray(MatrixType type) Returns an array containing the flattened transformation matrix.double[]toArray(MatrixType type, double[] array) Returns an array containing the flattened transformation matrix.transform(double x, double y) Transforms the specified point by this transform.transform(double x, double y, double z) Transforms the specified point by this transform.Transforms the specified bounds by this transform.Transforms the specified point by this transform.Transforms the specified point by this transform.voidtransform2DPoints(double[] srcPts, int srcOff, double[] dstPts, int dstOff, int numPts) Transforms an array of coordinates by this transform.voidtransform3DPoints(double[] srcPts, int srcOff, double[] dstPts, int dstOff, int numPts) Transforms an array of floating point coordinates by this transform.protected voidThis method must be called by all transforms whenever any of their parameters changes.static Translatetranslate(double x, double y) Returns aTranslateobject representing a translation transformation.final ReadOnlyBooleanPropertyDetermines if this is currently a 2D transform.
-
Property Details
-
x
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
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
Defines the X coordinate of the shear pivot point.- Default value:
- 0.0
- See Also:
-
pivotY
Defines the Y coordinate of the shear pivot point.- Default value:
- 0.0
- See Also:
-
-
Constructor Details
-
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 coordinatey- the multiplier by which coordinates are shifted in the direction of the positive Y axis as a factor of their X 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 coordinatey- the multiplier by which coordinates are shifted in the direction of the positive Y axis as a factor of their X coordinatepivotX- the X coordinate of the shear pivot pointpivotY- the Y coordinate of the shear pivot point
-
-
Method Details
-
setX
public final void setX(double value) Sets the value of thexproperty.- 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
- Parameters:
value- the value for thexproperty- See Also:
-
getX
public final double getX()Gets the value of thexproperty.- 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
- Returns:
- the value of the
xproperty - See Also:
-
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
- Returns:
- the
xproperty - See Also:
-
setY
public final void setY(double value) Sets the value of theyproperty.- 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
- Parameters:
value- the value for theyproperty- See Also:
-
getY
public final double getY()Gets the value of theyproperty.- 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
- Returns:
- the value of the
yproperty - See Also:
-
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
- Returns:
- the
yproperty - See Also:
-
setPivotX
public final void setPivotX(double value) Sets the value of thepivotXproperty.- Property description:
- Defines the X coordinate of the shear pivot point.
- Default value:
- 0.0
- Parameters:
value- the value for thepivotXproperty- See Also:
-
getPivotX
public final double getPivotX()Gets the value of thepivotXproperty.- Property description:
- Defines the X coordinate of the shear pivot point.
- Default value:
- 0.0
- Returns:
- the value of the
pivotXproperty - See Also:
-
pivotXProperty
Defines the X coordinate of the shear pivot point.- Default value:
- 0.0
- Returns:
- the
pivotXproperty - See Also:
-
setPivotY
public final void setPivotY(double value) Sets the value of thepivotYproperty.- Property description:
- Defines the Y coordinate of the shear pivot point.
- Default value:
- 0.0
- Parameters:
value- the value for thepivotYproperty- See Also:
-
getPivotY
public final double getPivotY()Gets the value of thepivotYproperty.- Property description:
- Defines the Y coordinate of the shear pivot point.
- Default value:
- 0.0
- Returns:
- the value of the
pivotYproperty - See Also:
-
pivotYProperty
Defines the Y coordinate of the shear pivot point.- Default value:
- 0.0
- Returns:
- the
pivotYproperty - See Also:
-
createInverse
Description copied from class:TransformReturns the inverse transform of this transform.- Overrides:
createInversein classTransform- Returns:
- the inverse transform
-
clone
-
toString
-