java.lang.Object
javafx.scene.transform.Transform
javafx.scene.transform.Scale
- All Implemented Interfaces:
Cloneable,EventTarget
This class represents an
Affine object that scales coordinates
by the specified factors. The matrix representing the scaling transformation
around a pivot point (pivotX, pivotY, pivotZ) with scaling factors
x, y and z is as follows:
[ x 0 0 (1-x)*pivotX ]
[ 0 y 0 (1-y)*pivotY ]
[ 0 0 z (1-z)*pivotZ ]
- Since:
- JavaFX 2.0
-
Property Summary
PropertiesTypePropertyDescriptionfinal DoublePropertyDefines the X coordinate about which point the scale occurs.final DoublePropertyDefines the Y coordinate about which point the scale occurs.final DoublePropertyDefines the Z coordinate about which point the scale occurs.final DoublePropertyDefines the factor by which coordinates are scaled along the X axis direction.final DoublePropertyDefines the factor by which coordinates are scaled along the Y axis direction.final DoublePropertyDefines the factor by which coordinates are scaled along the Z axis direction.Properties inherited from class javafx.scene.transform.Transform
identity, onTransformChanged, type2D -
Constructor Summary
ConstructorsConstructorDescriptionScale()Creates a default Scale (identity).Scale(double x, double y) Creates a two-dimensional Scale.Scale(double x, double y, double z) Creates a three-dimensional Scale.Scale(double x, double y, double pivotX, double pivotY) Creates a two-dimensional Scale with pivot.Scale(double x, double y, double z, double pivotX, double pivotY, double pivotZ) Creates a three-dimensional Scale with pivot. -
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.doublegetMxx()Gets the X coordinate scaling element of the 3x4 matrix.doublegetMyy()Gets the Y coordinate scaling 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.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.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 about which point the scale occurs.final DoublePropertyDefines the Y coordinate about which point the scale occurs.final DoublePropertyDefines the Z coordinate about which point the scale occurs.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.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 thisScaleobject.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 factor by which coordinates are scaled along the X axis direction.final DoublePropertyDefines the factor by which coordinates are scaled along the Y axis direction.final DoublePropertyDefines the factor by which coordinates are scaled along the Z axis direction.Methods inherited from class javafx.scene.transform.Transform
addEventFilter, addEventHandler, affine, affine, buildEventDispatchChain, column, column, deltaTransform, deltaTransform, determinant, getElement, getMxy, getMxz, getMyx, getMyz, getMzx, getMzy, 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, transformChanged, translate, type2DProperty
-
Property Details
-
x
Defines the factor by which coordinates are scaled along the X axis direction. The default value is1.0.- See Also:
-
y
Defines the factor by which coordinates are scaled along the Y axis direction. The default value is1.0.- See Also:
-
z
Defines the factor by which coordinates are scaled along the Z axis direction. The default value is1.0.- See Also:
-
pivotX
Defines the X coordinate about which point the scale occurs.- Default value:
- 0.0
- See Also:
-
pivotY
Defines the Y coordinate about which point the scale occurs.- Default value:
- 0.0
- See Also:
-
pivotZ
Defines the Z coordinate about which point the scale occurs.- Default value:
- 0.0
- See Also:
-
-
Constructor Details
-
Scale
public Scale()Creates a default Scale (identity). -
Scale
public Scale(double x, double y) Creates a two-dimensional Scale. The pivot point is set to (0,0)- Parameters:
x- the factor by which coordinates are scaled along the X axisy- the factor by which coordinates are scaled along the Y axis
-
Scale
public Scale(double x, double y, double pivotX, double pivotY) Creates a two-dimensional Scale with pivot.- Parameters:
x- the factor by which coordinates are scaled along the X axisy- the factor by which coordinates are scaled along the Y axispivotX- the X coordinate about which point the scale occurspivotY- the Y coordinate about which point the scale occurs
-
Scale
public Scale(double x, double y, double z) Creates a three-dimensional Scale. The pivot point is set to (0,0,0)- Parameters:
x- the factor by which coordinates are scaled along the X axisy- the factor by which coordinates are scaled along the Y axisz- the factor by which coordinates are scaled along the Z axis
-
Scale
public Scale(double x, double y, double z, double pivotX, double pivotY, double pivotZ) Creates a three-dimensional Scale with pivot.- Parameters:
x- the factor by which coordinates are scaled along the X axisy- the factor by which coordinates are scaled along the Y axisz- the factor by which coordinates are scaled along the Z axispivotX- the X coordinate about which point the scale occurspivotY- the Y coordinate about which point the scale occurspivotZ- the Z coordinate about which point the scale occurs
-
-
Method Details
-
setX
public final void setX(double value) Sets the value of thexproperty.- Property description:
- Defines the factor by which coordinates are scaled
along the X axis direction. The default value is
1.0. - Parameters:
value- the value for thexproperty- See Also:
-
getX
public final double getX()Gets the value of thexproperty.- Property description:
- Defines the factor by which coordinates are scaled
along the X axis direction. The default value is
1.0. - Returns:
- the value of the
xproperty - See Also:
-
xProperty
Defines the factor by which coordinates are scaled along the X axis direction. The default value is1.0.- Returns:
- the
xproperty - See Also:
-
setY
public final void setY(double value) Sets the value of theyproperty.- Property description:
- Defines the factor by which coordinates are scaled
along the Y axis direction. The default value is
1.0. - Parameters:
value- the value for theyproperty- See Also:
-
getY
public final double getY()Gets the value of theyproperty.- Property description:
- Defines the factor by which coordinates are scaled
along the Y axis direction. The default value is
1.0. - Returns:
- the value of the
yproperty - See Also:
-
yProperty
Defines the factor by which coordinates are scaled along the Y axis direction. The default value is1.0.- Returns:
- the
yproperty - See Also:
-
setZ
public final void setZ(double value) Sets the value of thezproperty.- Property description:
- Defines the factor by which coordinates are scaled
along the Z axis direction. The default value is
1.0. - Parameters:
value- the value for thezproperty- See Also:
-
getZ
public final double getZ()Gets the value of thezproperty.- Property description:
- Defines the factor by which coordinates are scaled
along the Z axis direction. The default value is
1.0. - Returns:
- the value of the
zproperty - See Also:
-
zProperty
Defines the factor by which coordinates are scaled along the Z axis direction. The default value is1.0.- Returns:
- the
zproperty - See Also:
-
setPivotX
public final void setPivotX(double value) Sets the value of thepivotXproperty.- Property description:
- Defines the X coordinate about which point the scale occurs.
- 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 about which point the scale occurs.
- Default value:
- 0.0
- Returns:
- the value of the
pivotXproperty - See Also:
-
pivotXProperty
Defines the X coordinate about which point the scale occurs.- 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 about which point the scale occurs.
- 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 about which point the scale occurs.
- Default value:
- 0.0
- Returns:
- the value of the
pivotYproperty - See Also:
-
pivotYProperty
Defines the Y coordinate about which point the scale occurs.- 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 about which point the scale occurs.
- 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 about which point the scale occurs.
- Default value:
- 0.0
- Returns:
- the value of the
pivotZproperty - See Also:
-
pivotZProperty
Defines the Z coordinate about which point the scale occurs.- Default value:
- 0.0
- Returns:
- the
pivotZproperty - See Also:
-
getMxx
public double getMxx()Description copied from class:TransformGets the X coordinate scaling element of the 3x4 matrix. -
getMyy
public double getMyy()Description copied from class:TransformGets the Y coordinate scaling element of the 3x4 matrix. -
getMzz
public double getMzz()Description copied from class:TransformGets the Z coordinate scaling element of the 3x4 matrix. -
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
- 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
- Throws:
NonInvertibleTransformException- if this transform cannot be inverted
-
inverseTransform
public Point3D inverseTransform(double x, double y, double z) throws NonInvertibleTransformException 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
- Throws:
NonInvertibleTransformException- if this transform cannot be inverted
-
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 - Throws:
NonInvertibleTransformException- if this transform cannot be inverted
-
inverseDeltaTransform
public Point3D inverseDeltaTransform(double x, double y, double z) throws NonInvertibleTransformException 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 - Throws:
NonInvertibleTransformException- if this transform cannot be inverted
-
toString
Returns a string representation of thisScaleobject.
-