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
TypePropertyDescriptionfinal DoubleProperty
Defines the distance by which coordinates are translated in the X axis directionfinal DoubleProperty
Defines the distance by which coordinates are translated in the Y axis directionfinal DoubleProperty
Defines the distance by which coordinates are translated in the Z axis directionProperties declared in class javafx.scene.transform.Transform
identity, onTransformChanged, type2D
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionclone()
Returns a deep copy of this transform.Returns the inverse transform of this transform.final double
getX()
Gets the value of the property x.final double
getY()
Gets the value of the property y.final double
getZ()
Gets the value of the property z.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 specifiedPoint2D
instance by the inverse of this transform.inverseDeltaTransform
(Point3D point) Transforms the relative magnitude vector represented by the specifiedPoint3D
instance 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 void
setX
(double value) Sets the value of the property x.final void
setY
(double value) Sets the value of the property y.final void
setZ
(double value) Sets the value of the property z.toString()
Returns a string representation of thisTranslate
object.final DoubleProperty
Defines the distance by which coordinates are translated in the X axis directionfinal DoubleProperty
Defines the distance by which coordinates are translated in the Y axis directionfinal DoubleProperty
Defines the distance by which coordinates are translated in the Z axis directionMethods declared in class javafx.scene.transform.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, 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, 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 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
Defines the distance by which coordinates are translated in the X axis direction- See 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
Defines the distance by which coordinates are translated in the Y axis direction- See 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
Defines the distance by which coordinates are translated in the Z axis direction- See Also:
-
createInverse
Description copied from class:Transform
Returns the inverse transform of this transform.- Overrides:
createInverse
in classTransform
- Returns:
- the inverse transform
-
clone
Description copied from class:Transform
Returns a deep copy of this transform. -
inverseTransform
Description copied from class:Transform
Transforms the specified point by the inverse of this transform. This method can be used only for 2D transforms.- Overrides:
inverseTransform
in 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:Transform
Transforms the specified point by the inverse of this transform.- Overrides:
inverseTransform
in 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:Transform
Transforms 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:
inverseDeltaTransform
in 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
Point2D
instance
-
inverseDeltaTransform
Description copied from class:Transform
Transforms the relative magnitude vector represented by the specifiedPoint2D
instance 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:
inverseDeltaTransform
in classTransform
- Parameters:
point
- the relative magnitude vector- Returns:
- the inversely transformed relative magnitude vector represented
by a
Point2D
instance
-
inverseDeltaTransform
Description copied from class:Transform
Transforms 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:
inverseDeltaTransform
in 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
Point3D
instance
-
inverseDeltaTransform
Description copied from class:Transform
Transforms the relative magnitude vector represented by the specifiedPoint3D
instance by the inverse of this transform. The vector is transformed without applying the translation components of the affine transformation matrix.- Overrides:
inverseDeltaTransform
in classTransform
- Parameters:
point
- the relative magnitude vector- Returns:
- the inversely transformed relative magnitude vector represented
by a
Point3D
instance
-
toString
Returns a string representation of thisTranslate
object.
-