Class Translate
- javafx.scene.transform.Transform
-
- javafx.scene.transform.Translate
All Implemented Interfaces:
public class Translate extends Transform
Affine object that translates coordinates by the specified factors. The matrix representing the translating transformation is as follows: [ 1 0 0 x ]
[ 0 1 0 y ]
[ 0 0 1 z ]
Since:
JavaFX 2.0
-
Property Summary
All MethodsInstance MethodsConcrete Methods Type Property and Description DoublePropertyxDefines the distance by which coordinates are translated in the X axis directionDoublePropertyyDefines the distance by which coordinates are translated in the Y axis directionDoublePropertyzDefines the distance by which coordinates are translated in the Z axis direction-
Properties inherited from class javafx.scene.transform.Transform
identity, onTransformChanged, type2D
-
-
Constructor Summary
Constructors Constructor and Description Translate()Creates a default Translate (identity).Translate(double x, double y)Creates a two-dimensional Translate.Translate(double x, double y, double z)Creates a three-dimensional Translate.
-
Method Summary
All MethodsInstance MethodsConcrete Methods Modifier and Type Method and Description Translateclone()Returns a deep copy of this transform.TransformcreateConcatenation(Transform transform)Returns the concatenation of this transform and the specified transform.TranslatecreateInverse()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.Point2DdeltaTransform(Point2D point)Transforms the relative magnitude vector represented by the specifiedPoint2Dinstance by this transform.Point3DdeltaTransform(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.doublegetX()Gets the value of the property x.doublegetY()Gets the value of the property y.doublegetZ()Gets the value of the property z.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.Point2DinverseDeltaTransform(Point2D point)Transforms the relative magnitude vector represented by the specifiedPoint2Dinstance by the inverse of this transform.Point3DinverseDeltaTransform(Point3D point)Transforms the relative magnitude vector represented by the specifiedPoint3Dinstance 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.voidsetX(double value)Sets the value of the property x.voidsetY(double value)Sets the value of the property y.voidsetZ(double value)Sets the value of the property z.StringtoString()Returns a string representation of thisTranslateobject.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 distance by which coordinates are translated in the X axis directionDoublePropertyyProperty()Defines the distance by which coordinates are translated in the Y axis directionDoublePropertyzProperty()Defines the distance by which coordinates are translated in the Z axis direction-
Methods 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 Detail
-
x
public final DoubleProperty xProperty
Defines the distance by which coordinates are translated in the X axis directionSee Also:
-
y
public final DoubleProperty yProperty
Defines the distance by which coordinates are translated in the Y axis directionSee Also:
-
z
public final DoubleProperty zProperty
Defines the distance by which coordinates are translated in the Z axis directionSee Also:
-
-
Constructor Detail
-
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 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 direction
-
-
Method Detail
-
setX
public final void setX(double value)
Sets the value of the property x.Property description:
Defines the distance by which coordinates are translated in the X axis direction
-
getX
public final double getX()
Gets the value of the property x.Property description:
Defines the distance by which coordinates are translated in the X axis direction
-
xProperty
public final DoubleProperty xProperty()
Defines the distance by which coordinates are translated in the X axis directionSee Also:
-
setY
public final void setY(double value)
Sets the value of the property y.Property description:
Defines the distance by which coordinates are translated in the Y axis direction
-
getY
public final double getY()
Gets the value of the property y.Property description:
Defines the distance by which coordinates are translated in the Y axis direction
-
yProperty
public final DoubleProperty yProperty()
Defines the distance by which coordinates are translated in the Y axis directionSee Also:
-
setZ
public final void setZ(double value)
Sets the value of the property z.Property description:
Defines the distance by which coordinates are translated in the Z axis direction
-
getZ
public final double getZ()
Gets the value of the property z.Property description:
Defines the distance by which coordinates are translated in the Z axis direction
-
zProperty
public final DoubleProperty zProperty()
Defines the distance by which coordinates are translated in the Z axis directionSee 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
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 Translate createInverse()
Description copied from class:TransformReturns the inverse transform of this transform.Overrides:
createInversein classTransformReturns:
the inverse transform
-
clone
public Translate 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 Point2D deltaTransform(Point2D point)
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 classTransformParameters:
point- the relative magnitude vectorReturns:
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
-
deltaTransform
public Point3D deltaTransform(Point3D point)
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 classTransformParameters:
point- the relative magnitude vectorReturns:
the transformed relative magnitude vector represented by a
Point3Dinstance
-
inverseTransform
public Point2D inverseTransform(double x, double y)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 classTransformParameters:
x- the X coordinate of the pointReturns:
the inversely transformed point
-
inverseTransform
public Point3D inverseTransform(double x, double y, double z)Description 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
-
inverseDeltaTransform
public Point2D inverseDeltaTransform(double x, double y)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 classTransformParameters:
x- vector magnitude in the direction of the X axisReturns:
the inversely transformed relative magnitude vector represented by a
Point2Dinstance
-
inverseDeltaTransform
public Point2D inverseDeltaTransform(Point2D point)
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 classTransformParameters:
point- the relative magnitude vectorReturns:
the inversely transformed relative magnitude vector represented by a
Point2Dinstance
-
inverseDeltaTransform
public Point3D inverseDeltaTransform(double x, double y, double z)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 classTransformParameters:
x- vector magnitude in the direction of the X axisReturns:
the inversely transformed relative magnitude vector represented by a
Point3Dinstance
-
inverseDeltaTransform
public Point3D inverseDeltaTransform(Point3D point)
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 classTransformParameters:
point- the relative magnitude vectorReturns:
the inversely transformed relative magnitude vector represented by a
Point3Dinstance
-
toString
public String toString()
Returns a string representation of thisTranslateobject.
-
© 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.