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
TypePropertyDescriptionfinal DoubleProperty
Defines the X coordinate about which point the scale occurs.final DoubleProperty
Defines the Y coordinate about which point the scale occurs.final DoubleProperty
Defines the Z coordinate about which point the scale occurs.final DoubleProperty
Defines the factor by which coordinates are scaled along the X axis direction.final DoubleProperty
Defines the factor by which coordinates are scaled along the Y axis direction.final DoubleProperty
Defines the factor by which coordinates are scaled along the Z axis direction.Properties declared in class javafx.scene.transform.Transform
identity, onTransformChanged, type2D
-
Constructor Summary
ConstructorDescriptionScale()
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.Returns the inverse transform of this transform.final double
Gets the value of the property pivotX.final double
Gets the value of the property pivotY.final double
Gets the value of the property pivotZ.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.final DoubleProperty
Defines the X coordinate about which point the scale occurs.final DoubleProperty
Defines the Y coordinate about which point the scale occurs.final DoubleProperty
Defines the Z coordinate about which point the scale occurs.final void
setPivotX
(double value) Sets the value of the property pivotX.final void
setPivotY
(double value) Sets the value of the property pivotY.final void
setPivotZ
(double value) Sets the value of the property pivotZ.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 thisScale
object.final DoubleProperty
Defines the factor by which coordinates are scaled along the X axis direction.final DoubleProperty
Defines the factor by which coordinates are scaled along the Y axis direction.final DoubleProperty
Defines the factor by which coordinates are scaled along the Z axis direction.Methods 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, inverseDeltaTransform, inverseDeltaTransform, inverseDeltaTransform, inverseDeltaTransform, inverseTransform, inverseTransform, 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 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 the property x.- Property description:
- Defines the factor by which coordinates are scaled
along the X axis direction. The default value is
1.0
.
-
getX
public final double getX()Gets the value of the property x.- Property description:
- Defines the factor by which coordinates are scaled
along the X axis direction. The default value is
1.0
.
-
xProperty
Defines the factor by which coordinates are scaled along the X axis direction. The default value is1.0
.- See Also:
-
setY
public final void setY(double value) Sets the value of the property y.- Property description:
- Defines the factor by which coordinates are scaled
along the Y axis direction. The default value is
1.0
.
-
getY
public final double getY()Gets the value of the property y.- Property description:
- Defines the factor by which coordinates are scaled
along the Y axis direction. The default value is
1.0
.
-
yProperty
Defines the factor by which coordinates are scaled along the Y axis direction. The default value is1.0
.- See Also:
-
setZ
public final void setZ(double value) Sets the value of the property z.- Property description:
- Defines the factor by which coordinates are scaled
along the Z axis direction. The default value is
1.0
.
-
getZ
public final double getZ()Gets the value of the property z.- Property description:
- Defines the factor by which coordinates are scaled
along the Z axis direction. The default value is
1.0
.
-
zProperty
Defines the factor by which coordinates are scaled along the Z axis direction. The default value is1.0
.- See Also:
-
setPivotX
public final void setPivotX(double value) Sets the value of the property pivotX.- Property description:
- Defines the X coordinate about which point the scale occurs.
- Default value:
- 0.0
-
getPivotX
public final double getPivotX()Gets the value of the property pivotX.- Property description:
- Defines the X coordinate about which point the scale occurs.
- Default value:
- 0.0
-
pivotXProperty
Defines the X coordinate about which point the scale occurs.- Default value:
- 0.0
- See Also:
-
setPivotY
public final void setPivotY(double value) Sets the value of the property pivotY.- Property description:
- Defines the Y coordinate about which point the scale occurs.
- Default value:
- 0.0
-
getPivotY
public final double getPivotY()Gets the value of the property pivotY.- Property description:
- Defines the Y coordinate about which point the scale occurs.
- Default value:
- 0.0
-
pivotYProperty
Defines the Y coordinate about which point the scale occurs.- Default value:
- 0.0
- See Also:
-
setPivotZ
public final void setPivotZ(double value) Sets the value of the property pivotZ.- Property description:
- Defines the Z coordinate about which point the scale occurs.
- Default value:
- 0.0
-
getPivotZ
public final double getPivotZ()Gets the value of the property pivotZ.- Property description:
- Defines the Z coordinate about which point the scale occurs.
- Default value:
- 0.0
-
pivotZProperty
Defines the Z coordinate about which point the scale occurs.- Default value:
- 0.0
- See Also:
-
createInverse
Description copied from class:Transform
Returns the inverse transform of this transform.- Overrides:
createInverse
in classTransform
- Returns:
- the inverse transform
- Throws:
NonInvertibleTransformException
- if this transform cannot be inverted
-
clone
Description copied from class:Transform
Returns a deep copy of this transform. -
toString
Returns a string representation of thisScale
object.
-