Uses of Class
com.storedobject.svg.TransformMatrix
Packages that use TransformMatrix
-
Uses of TransformMatrix in com.storedobject.svg
Methods in com.storedobject.svg that return TransformMatrixModifier and TypeMethodDescriptionTransformMatrix.flipHorizontally()Flips the transformation matrix horizontally around the node's center.TransformMatrix.flipHorizontallyAroundOrigin()Flips the transformation matrix horizontally around the origin.TransformMatrix.flipVertically()Flips the transformation matrix vertically around the node's center.TransformMatrix.flipVerticallyAroundOrigin()Flips the transformation matrix vertically around the origin.TransformMatrix.moveTo(double x, double y) Moves the top-left corner of the node to the specified (x, y) coordinate.Moves the top-left corner of the node to the specifiedPoint.TransformMatrix.reset()Resets the transformation matrix to the identity matrix.TransformMatrix.rotate(double degrees) Rotates the transformation matrix by a given angle around the origin.TransformMatrix.rotateAround(double angleDegrees, double x, double y) Rotates the transformation matrix by a given angle around a specified point (x, y).TransformMatrix.rotateAround(double angleDegrees, Point point) Rotates the transformation matrix by a given angle around a specifiedPoint.TransformMatrix.rotateAroundCenter(double angleDegrees) Rotates the transformation matrix by a given angle around the node's center.TransformMatrix.scale(double scale) Scales the transformation matrix uniformly by the given factor.TransformMatrix.scale(double sx, double sy) Scales the transformation matrix by the given factors sx and sy.TransformMatrix.scaleHeightTo(double targetHeight) Scales the node's height to the specified target height.TransformMatrix.scaleTo(double targetWidth, double targetHeight) Scales the node to the specified target width and height.TransformMatrix.scaleWidthTo(double targetWidth) Scales the node's width to the specified target width.TransformMatrix.shear(double kx, double ky) Applies a shear transformation to the transformation matrix.final TransformMatrix<?> Node.transform()Retrieves the transformation matrix associated with this node.TransformMatrix.translate(double tx, double ty) Translates the transformation matrix by a given offset (tx, ty).Translates the transformation matrix by a given offset specified as aPoint.