java.lang.Object
javafx.scene.transform.Transform
javafx.scene.transform.Scale
- All Implemented Interfaces:
- Cloneable,- EventTarget
public class Scale extends Transform
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 SummaryProperties Type Property Description DoublePropertypivotXDefines the X coordinate about which point the scale occurs.DoublePropertypivotYDefines the Y coordinate about which point the scale occurs.DoublePropertypivotZDefines the Z coordinate about which point the scale occurs.DoublePropertyxDefines the factor by which coordinates are scaled along the X axis direction.DoublePropertyyDefines the factor by which coordinates are scaled along the Y axis direction.DoublePropertyzDefines the factor by which coordinates are scaled along the Z axis direction.Properties declared in class javafx.scene.transform.Transformidentity, onTransformChanged, type2D
- 
Constructor SummaryConstructors Constructor Description Scale()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 SummaryModifier and Type Method Description Scaleclone()Returns a deep copy of this transform.ScalecreateInverse()Returns the inverse transform of this transform.doublegetPivotX()Gets the value of the property pivotX.doublegetPivotY()Gets the value of the property pivotY.doublegetPivotZ()Gets the value of the property pivotZ.doublegetX()Gets the value of the property x.doublegetY()Gets the value of the property y.doublegetZ()Gets the value of the property z.DoublePropertypivotXProperty()Defines the X coordinate about which point the scale occurs.DoublePropertypivotYProperty()Defines the Y coordinate about which point the scale occurs.DoublePropertypivotZProperty()Defines the Z coordinate about which point the scale occurs.voidsetPivotX(double value)Sets the value of the property pivotX.voidsetPivotY(double value)Sets the value of the property pivotY.voidsetPivotZ(double value)Sets the value of the property pivotZ.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 thisScaleobject.DoublePropertyxProperty()Defines the factor by which coordinates are scaled along the X axis direction.DoublePropertyyProperty()Defines the factor by which coordinates are scaled along the Y axis direction.DoublePropertyzProperty()Defines the factor by which coordinates are scaled along the Z axis direction.Methods declared in class javafx.scene.transform.TransformaddEventFilter, addEventHandler, affine, affine, 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, type2DPropertyMethods declared in class java.lang.Objectequals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods declared in interface javafx.event.EventTargetbuildEventDispatchChain
- 
Property Details- 
xDefines the factor by which coordinates are scaled along the X axis direction. The default value is1.0.- See Also:
- getX(),- setX(double)
 
- 
yDefines the factor by which coordinates are scaled along the Y axis direction. The default value is1.0.- See Also:
- getY(),- setY(double)
 
- 
zDefines the factor by which coordinates are scaled along the Z axis direction. The default value is1.0.- See Also:
- getZ(),- setZ(double)
 
- 
pivotXDefines the X coordinate about which point the scale occurs.- Default value:
- 0.0
- See Also:
- getPivotX(),- setPivotX(double)
 
- 
pivotYDefines the Y coordinate about which point the scale occurs.- Default value:
- 0.0
- See Also:
- getPivotY(),- setPivotY(double)
 
- 
pivotZDefines the Z coordinate about which point the scale occurs.- Default value:
- 0.0
- See Also:
- getPivotZ(),- setPivotZ(double)
 
 
- 
- 
Constructor Details- 
Scalepublic Scale()Creates a default Scale (identity).
- 
Scalepublic 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 axis
- y- the factor by which coordinates are scaled along the Y axis
 
- 
Scalepublic 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 axis
- y- the factor by which coordinates are scaled along the Y axis
- pivotX- the X coordinate about which point the scale occurs
- pivotY- the Y coordinate about which point the scale occurs
 
- 
Scalepublic 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 axis
- y- the factor by which coordinates are scaled along the Y axis
- z- the factor by which coordinates are scaled along the Z axis
 
- 
Scalepublic 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 axis
- y- the factor by which coordinates are scaled along the Y axis
- z- the factor by which coordinates are scaled along the Z axis
- pivotX- the X coordinate about which point the scale occurs
- pivotY- the Y coordinate about which point the scale occurs
- pivotZ- the Z coordinate about which point the scale occurs
 
 
- 
- 
Method Details- 
setXpublic 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.
 
- 
getXpublic 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.
 
- 
xPropertyDefines the factor by which coordinates are scaled along the X axis direction. The default value is1.0.- See Also:
- getX(),- setX(double)
 
- 
setYpublic 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.
 
- 
getYpublic 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.
 
- 
yPropertyDefines the factor by which coordinates are scaled along the Y axis direction. The default value is1.0.- See Also:
- getY(),- setY(double)
 
- 
setZpublic 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.
 
- 
getZpublic 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.
 
- 
zPropertyDefines the factor by which coordinates are scaled along the Z axis direction. The default value is1.0.- See Also:
- getZ(),- setZ(double)
 
- 
setPivotXpublic 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
 
- 
getPivotXpublic 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
 
- 
pivotXPropertyDefines the X coordinate about which point the scale occurs.- Default value:
- 0.0
- See Also:
- getPivotX(),- setPivotX(double)
 
- 
setPivotYpublic 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
 
- 
getPivotYpublic 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
 
- 
pivotYPropertyDefines the Y coordinate about which point the scale occurs.- Default value:
- 0.0
- See Also:
- getPivotY(),- setPivotY(double)
 
- 
setPivotZpublic 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
 
- 
getPivotZpublic 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
 
- 
pivotZPropertyDefines the Z coordinate about which point the scale occurs.- Default value:
- 0.0
- See Also:
- getPivotZ(),- setPivotZ(double)
 
- 
createInverseDescription copied from class:TransformReturns the inverse transform of this transform.- Overrides:
- createInversein class- Transform
- Returns:
- the inverse transform
- Throws:
- NonInvertibleTransformException- if this transform cannot be inverted
 
- 
cloneDescription copied from class:TransformReturns a deep copy of this transform.
- 
toStringReturns a string representation of thisScaleobject.
 
-