java.lang.Object
javafx.scene.transform.Transform
javafx.scene.transform.Translate
- All Implemented Interfaces:
Cloneable,EventTarget
This class represents an
Affine object that translates coordinates
by the specified factors. The matrix representing the translating
transformation by distances x, y and z is as follows:
[ 1 0 0 x ]
[ 0 1 0 y ]
[ 0 0 1 z ]
- Since:
- JavaFX 2.0
-
Property Summary
PropertiesTypePropertyDescriptionfinal DoublePropertyDefines the distance by which coordinates are translated in the X axis directionfinal DoublePropertyDefines the distance by which coordinates are translated in the Y axis directionfinal DoublePropertyDefines the distance by which coordinates are translated in the Z axis directionProperties inherited from class javafx.scene.transform.Transform
identity, onTransformChanged, type2D -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionclone()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.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.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 doublegetX()Gets the value of thexproperty.final doublegetY()Gets the value of theyproperty.final doublegetZ()Gets the value of thezproperty.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.final voidsetX(double value) Sets the value of thexproperty.final voidsetY(double value) Sets the value of theyproperty.final voidsetZ(double value) Sets the value of thezproperty.toString()Returns a string representation of thisTranslateobject.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.final DoublePropertyDefines the distance by which coordinates are translated in the X axis directionfinal DoublePropertyDefines the distance by which coordinates are translated in the Y axis directionfinal DoublePropertyDefines the distance by which coordinates are translated in the Z axis directionMethods inherited from class javafx.scene.transform.Transform
addEventFilter, addEventHandler, affine, affine, buildEventDispatchChain, column, column, determinant, getElement, getMxx, getMxy, getMxz, getMyx, getMyy, getMyz, getMzx, getMzy, getMzz, getOnTransformChanged, identityProperty, 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 Details
-
x
Defines the distance by which coordinates are translated in the X axis direction- See Also:
-
y
Defines the distance by which coordinates are translated in the Y axis direction- See Also:
-
z
Defines the distance by which coordinates are translated in the Z axis direction- See Also:
-
-
Constructor Details
-
Translate
public Translate()Creates a default Translate (identity). -
Translate
public Translate(double x, double y) Creates a two-dimensional Translate.- Parameters:
x- the distance by which coordinates are translated in the X axis directiony- the distance by which coordinates are translated in the Y axis direction
-
Translate
public Translate(double x, double y, double z) Creates a three-dimensional Translate.- Parameters:
x- the distance by which coordinates are translated in the X axis directiony- the distance by which coordinates are translated in the Y axis directionz- the distance by which coordinates are translated in the Z axis direction
-
-
Method Details
-
setX
public final void setX(double value) Sets the value of thexproperty.- Property description:
- Defines the distance by which coordinates are translated in the X axis direction
- Parameters:
value- the value for thexproperty- See Also:
-
getX
public final double getX()Gets the value of thexproperty.- Property description:
- Defines the distance by which coordinates are translated in the X axis direction
- Returns:
- the value of the
xproperty - See Also:
-
xProperty
Defines the distance by which coordinates are translated in the X axis direction- Returns:
- the
xproperty - See Also:
-
setY
public final void setY(double value) Sets the value of theyproperty.- Property description:
- Defines the distance by which coordinates are translated in the Y axis direction
- Parameters:
value- the value for theyproperty- See Also:
-
getY
public final double getY()Gets the value of theyproperty.- Property description:
- Defines the distance by which coordinates are translated in the Y axis direction
- Returns:
- the value of the
yproperty - See Also:
-
yProperty
Defines the distance by which coordinates are translated in the Y axis direction- Returns:
- the
yproperty - See Also:
-
setZ
public final void setZ(double value) Sets the value of thezproperty.- Property description:
- Defines the distance by which coordinates are translated in the Z axis direction
- Parameters:
value- the value for thezproperty- See Also:
-
getZ
public final double getZ()Gets the value of thezproperty.- Property description:
- Defines the distance by which coordinates are translated in the Z axis direction
- Returns:
- the value of the
zproperty - See Also:
-
zProperty
Defines the distance by which coordinates are translated in the Z axis direction- Returns:
- the
zproperty - See Also:
-
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. -
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
-
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 represented by the specifiedPoint2Dinstance 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:
point- the relative magnitude vector- 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
-
deltaTransform
Description copied from class:TransformTransforms the relative magnitude vector represented by the specifiedPoint3Dinstance by this transform. The vector is transformed without applying the translation components of the affine transformation matrix.- Overrides:
deltaTransformin classTransform- Parameters:
point- the relative magnitude vector- 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 represented by the specifiedPoint2Dinstance 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:
point- the relative magnitude vector- 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
-
inverseDeltaTransform
Description copied from class:TransformTransforms the relative magnitude vector represented by the specifiedPoint3Dinstance by the inverse of this transform. The vector is transformed without applying the translation components of the affine transformation matrix.- Overrides:
inverseDeltaTransformin classTransform- Parameters:
point- the relative magnitude vector- Returns:
- the inversely transformed relative magnitude vector represented
by a
Point3Dinstance
-
toString
Returns a string representation of thisTranslateobject.
-