java.lang.Object
javafx.scene.transform.Transform
javafx.scene.transform.Rotate
- All Implemented Interfaces:
Cloneable,EventTarget
This class represents an
Affine object that rotates coordinates
around an anchor point. This operation is equivalent to translating the
coordinates so that the anchor point is at the origin (S1), then rotating them
about the new origin (S2), and finally translating so that the
intermediate origin is restored to the coordinates of the original
anchor point (S3).
The matrix representing the rotation transformation around an axis (x,y,z)
by an angle t is as follows:
[ cos(t) -sin(t) 0 x-x*cos(t)+y*sin(t) ]
[ sin(t) cos(t) 0 y-x*sin(t)-y*cos(t) ]
[ 0 0 1 z ]
For example, to rotate a text 30 degrees around the Z-axis at anchor point of (50,30):
Text text = new Text("This is a test");
text.setX(10);
text.setY(50);
text.setFont(new Font(20));
text.getTransforms().add(new Rotate(30, 50, 30));
- Since:
- JavaFX 2.0
-
Property Summary
PropertiesTypePropertyDescriptionfinal DoublePropertyDefines the angle of rotation measured in degrees.final ObjectProperty<Point3D> Defines the axis of rotation at the pivot point.final DoublePropertyDefines the X coordinate of the rotation pivot point.final DoublePropertyDefines the Y coordinate of the rotation pivot point.final DoublePropertyDefines the Z coordinate of the rotation pivot point.Properties inherited from class javafx.scene.transform.Transform
identity, onTransformChanged, type2D -
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionRotate()Creates a default Rotate transform (identity).Rotate(double angle) Creates a two-dimensional Rotate transform.Rotate(double angle, double pivotX, double pivotY) Creates a two-dimensional Rotate transform with pivot.Rotate(double angle, double pivotX, double pivotY, double pivotZ) Creates a simple Rotate transform with three-dimensional pivot.Creates a three-dimensional Rotate transform with pivot.Creates a three-dimensional Rotate transform. -
Method Summary
Modifier and TypeMethodDescriptionfinal DoublePropertyDefines the angle of rotation measured in degrees.final ObjectProperty<Point3D> Defines the axis of rotation at the pivot point.clone()Returns a deep copy of this transform.createConcatenation(Transform transform) Returns the concatenation of this transform and the specified transform.Returns the inverse transform of this 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.final doublegetAngle()Gets the value of theangleproperty.final Point3DgetAxis()Gets the value of theaxisproperty.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 doubleGets the value of thepivotXproperty.final doubleGets the value of thepivotYproperty.final doubleGets the value of thepivotZproperty.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.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.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.final DoublePropertyDefines the X coordinate of the rotation pivot point.final DoublePropertyDefines the Y coordinate of the rotation pivot point.final DoublePropertyDefines the Z coordinate of the rotation pivot point.final voidsetAngle(double value) Sets the value of theangleproperty.final voidSets the value of theaxisproperty.final voidsetPivotX(double value) Sets the value of thepivotXproperty.final voidsetPivotY(double value) Sets the value of thepivotYproperty.final voidsetPivotZ(double value) Sets the value of thepivotZproperty.toString()Returns a string representation of thisRotateobject.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.protected voidThis method must be called by all transforms whenever any of their parameters changes.Methods inherited from class javafx.scene.transform.Transform
addEventFilter, addEventHandler, affine, affine, buildEventDispatchChain, column, column, deltaTransform, deltaTransform, determinant, getElement, getOnTransformChanged, 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, translate, type2DProperty
-
Property Details
-
angle
Defines the angle of rotation measured in degrees.- See Also:
-
pivotX
Defines the X coordinate of the rotation pivot point.- Default value:
- 0.0
- See Also:
-
pivotY
Defines the Y coordinate of the rotation pivot point.- Default value:
- 0.0
- See Also:
-
pivotZ
Defines the Z coordinate of the rotation pivot point.- Default value:
- 0.0
- See Also:
-
axis
Defines the axis of rotation at the pivot point.- See Also:
-
-
Field Details
-
X_AXIS
Specifies the X-axis as the axis of rotation. -
Y_AXIS
Specifies the Y-axis as the axis of rotation. -
Z_AXIS
Specifies the Z-axis as the axis of rotation.
-
-
Constructor Details
-
Rotate
public Rotate()Creates a default Rotate transform (identity). -
Rotate
public Rotate(double angle) Creates a two-dimensional Rotate transform. The pivot point is set to (0,0)- Parameters:
angle- the angle of rotation measured in degrees
-
Rotate
Creates a three-dimensional Rotate transform. The pivot point is set to (0,0,0)- Parameters:
angle- the angle of rotation measured in degreesaxis- the axis of rotation
-
Rotate
public Rotate(double angle, double pivotX, double pivotY) Creates a two-dimensional Rotate transform with pivot.- Parameters:
angle- the angle of rotation measured in degreespivotX- the X coordinate of the rotation pivot pointpivotY- the Y coordinate of the rotation pivot point
-
Rotate
public Rotate(double angle, double pivotX, double pivotY, double pivotZ) Creates a simple Rotate transform with three-dimensional pivot.- Parameters:
angle- the angle of rotation measured in degreespivotX- the X coordinate of the rotation pivot pointpivotY- the Y coordinate of the rotation pivot pointpivotZ- the Z coordinate of the rotation pivot point
-
Rotate
Creates a three-dimensional Rotate transform with pivot.- Parameters:
angle- the angle of rotation measured in degreespivotX- the X coordinate of the rotation pivot pointpivotY- the Y coordinate of the rotation pivot pointpivotZ- the Z coordinate of the rotation pivot pointaxis- the axis of rotation
-
-
Method Details
-
setAngle
public final void setAngle(double value) Sets the value of theangleproperty.- Property description:
- Defines the angle of rotation measured in degrees.
- Parameters:
value- the value for theangleproperty- See Also:
-
getAngle
public final double getAngle()Gets the value of theangleproperty.- Property description:
- Defines the angle of rotation measured in degrees.
- Returns:
- the value of the
angleproperty - See Also:
-
angleProperty
Defines the angle of rotation measured in degrees.- Returns:
- the
angleproperty - See Also:
-
setPivotX
public final void setPivotX(double value) Sets the value of thepivotXproperty.- Property description:
- Defines the X coordinate of the rotation 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 rotation pivot point.
- Default value:
- 0.0
- Returns:
- the value of the
pivotXproperty - See Also:
-
pivotXProperty
Defines the X coordinate of the rotation 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 rotation 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 rotation pivot point.
- Default value:
- 0.0
- Returns:
- the value of the
pivotYproperty - See Also:
-
pivotYProperty
Defines the Y coordinate of the rotation pivot point.- Default value:
- 0.0
- Returns:
- the
pivotYproperty - See Also:
-
setPivotZ
public final void setPivotZ(double value) Sets the value of thepivotZproperty.- Property description:
- Defines the Z coordinate of the rotation pivot point.
- Default value:
- 0.0
- Parameters:
value- the value for thepivotZproperty- See Also:
-
getPivotZ
public final double getPivotZ()Gets the value of thepivotZproperty.- Property description:
- Defines the Z coordinate of the rotation pivot point.
- Default value:
- 0.0
- Returns:
- the value of the
pivotZproperty - See Also:
-
pivotZProperty
Defines the Z coordinate of the rotation pivot point.- Default value:
- 0.0
- Returns:
- the
pivotZproperty - See Also:
-
setAxis
Sets the value of theaxisproperty.- Property description:
- Defines the axis of rotation at the pivot point.
- Parameters:
value- the value for theaxisproperty- See Also:
-
getAxis
Gets the value of theaxisproperty.- Property description:
- Defines the axis of rotation at the pivot point.
- Returns:
- the value of the
axisproperty - See Also:
-
axisProperty
Defines the axis of rotation at the pivot point.- Returns:
- the
axisproperty - See Also:
-
getMxx
public double getMxx()Description copied from class:TransformGets the X coordinate scaling element of the 3x4 matrix. -
getMxy
public double getMxy()Description copied from class:TransformGets the XY coordinate element of the 3x4 matrix. -
getMxz
public double getMxz()Description copied from class:TransformGets the XZ coordinate element of the 3x4 matrix. -
getTx
public double getTx()Description copied from class:TransformGets the X coordinate translation element of the 3x4 matrix. -
getMyx
public double getMyx()Description copied from class:TransformGets the YX coordinate element of the 3x4 matrix. -
getMyy
public double getMyy()Description copied from class:TransformGets the Y coordinate scaling element of the 3x4 matrix. -
getMyz
public double getMyz()Description copied from class:TransformGets the YZ coordinate element of the 3x4 matrix. -
getTy
public double getTy()Description copied from class:TransformGets the Y coordinate translation element of the 3x4 matrix. -
getMzx
public double getMzx()Description copied from class:TransformGets the ZX coordinate element of the 3x4 matrix. -
getMzy
public double getMzy()Description copied from class:TransformGets the ZY coordinate element of the 3x4 matrix. -
getMzz
public double getMzz()Description copied from class:TransformGets the Z coordinate scaling element of the 3x4 matrix. -
getTz
public double getTz()Description copied from class:TransformGets the Z coordinate translation element of the 3x4 matrix. -
createConcatenation
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 classTransform- Parameters:
transform- transform to be concatenated with this transform- Returns:
- The concatenated transform
-
createInverse
Description copied from class:TransformReturns the inverse transform of this transform.- Overrides:
createInversein classTransform- Returns:
- the inverse transform
- Throws:
NonInvertibleTransformException- if this transform cannot be inverted
-
clone
Description copied from class:TransformReturns a deep copy of this transform. -
transform
Description copied from class:TransformTransforms the specified point by this transform. This method can be used only for 2D transforms. -
transform
Description copied from class:TransformTransforms the specified point by this transform. -
deltaTransform
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 classTransform- Parameters:
x- vector magnitude in the direction of the X axisy- vector magnitude in the direction of the Y axis- Returns:
- the transformed relative magnitude vector represented
by a
Point2Dinstance
-
deltaTransform
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 classTransform- Parameters:
x- vector magnitude in the direction of the X axisy- vector magnitude in the direction of the Y axisz- vector magnitude in the direction of the Z axis- Returns:
- the transformed relative magnitude vector represented
by a
Point3Dinstance
-
inverseTransform
Description copied from class:TransformTransforms the specified point by the inverse of this transform. This method can be used only for 2D transforms.- Overrides:
inverseTransformin classTransform- Parameters:
x- the X coordinate of the pointy- the Y coordinate of the point- Returns:
- the inversely transformed point
-
inverseTransform
Description copied from class:TransformTransforms the specified point by the inverse of this transform.- Overrides:
inverseTransformin classTransform- Parameters:
x- the X coordinate of the pointy- the Y coordinate of the pointz- the Z coordinate of the point- Returns:
- the inversely transformed point
-
inverseDeltaTransform
Description 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 classTransform- Parameters:
x- vector magnitude in the direction of the X axisy- vector magnitude in the direction of the Y axis- Returns:
- the inversely transformed relative magnitude vector represented
by a
Point2Dinstance
-
inverseDeltaTransform
Description 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 classTransform- Parameters:
x- vector magnitude in the direction of the X axisy- vector magnitude in the direction of the Y axisz- vector magnitude in the direction of the Z axis- Returns:
- the inversely transformed relative magnitude vector represented
by a
Point3Dinstance
-
toString
Returns a string representation of thisRotateobject. -
transformChanged
protected void transformChanged()Description copied from class:TransformThis method must be called by all transforms whenever any of their parameters changes. It is typically called when any of the transform's properties is invalidated (it is OK to skip the call if an invalid property is set).- Overrides:
transformChangedin classTransform
-