Class Translate
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 thex
property.final double
getY()
Gets the value of they
property.final double
getZ()
Gets the value of thez
property.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 thex
property.final void
setY
(double value) Sets the value of they
property.final void
setZ
(double value) Sets the value of thez
property.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 thex
property.- Property description:
- Defines the distance by which coordinates are translated in the X axis direction
- Parameters:
value
- the value for thex
property- See Also:
-
getX
public final double getX()Gets the value of thex
property.- Property description:
- Defines the distance by which coordinates are translated in the X axis direction
- Returns:
- the value of the
x
property - See Also:
-
xProperty
Defines the distance by which coordinates are translated in the X axis direction- Returns:
- the
x
property - See Also:
-
setY
public final void setY(double value) Sets the value of they
property.- Property description:
- Defines the distance by which coordinates are translated in the Y axis direction
- Parameters:
value
- the value for they
property- See Also:
-
getY
public final double getY()Gets the value of they
property.- Property description:
- Defines the distance by which coordinates are translated in the Y axis direction
- Returns:
- the value of the
y
property - See Also:
-
yProperty
Defines the distance by which coordinates are translated in the Y axis direction- Returns:
- the
y
property - See Also:
-
setZ
public final void setZ(double value) Sets the value of thez
property.- Property description:
- Defines the distance by which coordinates are translated in the Z axis direction
- Parameters:
value
- the value for thez
property- See Also:
-
getZ
public final double getZ()Gets the value of thez
property.- Property description:
- Defines the distance by which coordinates are translated in the Z axis direction
- Returns:
- the value of the
z
property - See Also:
-
zProperty
Defines the distance by which coordinates are translated in the Z axis direction- Returns:
- the
z
property - See Also:
-
createInverse
Description copied from class:Transform
Returns the inverse transform of this transform.- Overrides:
createInverse
in classTransform
- Returns:
- the inverse transform
-
clone
-
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
-