Package | Description |
---|---|
com.sun.javafx.scene.transform | |
javafx.scene.canvas |
Provides the set of classes for canvas, an immediate mode style of rendering API.
|
javafx.scene.transform |
Provides the set of convenient classes to perform rotating, scaling,
shearing, and translation transformations for
Affine objects. |
Modifier and Type | Method and Description |
---|---|
Affine |
TransformUtils.ImmutableTransform.createInverse() |
Modifier and Type | Method and Description |
---|---|
Affine |
GraphicsContext.getTransform()
Returns a copy of the current transform.
|
Affine |
GraphicsContext.getTransform(Affine xform)
Copies the current transform into the supplied object, creating
a new
Affine object if it is null, and returns the object
containing the copy. |
Modifier and Type | Method and Description |
---|---|
Affine |
GraphicsContext.getTransform(Affine xform)
Copies the current transform into the supplied object, creating
a new
Affine object if it is null, and returns the object
containing the copy. |
void |
GraphicsContext.setTransform(Affine xform)
Sets the current transform.
|
void |
GraphicsContext.transform(Affine xform)
Concatenates the input with the current transform.
|
Modifier and Type | Method and Description |
---|---|
static Affine |
Transform.affine(double mxx,
double myx,
double mxy,
double myy,
double tx,
double ty)
Returns a new
Affine object from 12 number
values representing the 6 specifiable entries of the 3x4
Affine transformation matrix. |
static Affine |
Transform.affine(double mxx,
double mxy,
double mxz,
double tx,
double myx,
double myy,
double myz,
double ty,
double mzx,
double mzy,
double mzz,
double tz)
Returns a new
Affine object from 12 number
values representing the 12 specifiable entries of the 3x4
Affine transformation matrix. |
Affine |
AffineBuilder.build()
Deprecated.
Make an instance of
Affine based on the properties set on this builder. |
Affine |
Affine.clone() |
Affine |
Affine.createInverse() |
Modifier and Type | Method and Description |
---|---|
(package private) void |
Transform.appendTo(Affine a)
Visitor from
Affine class which provides an efficient
append operation for the subclasses. |
(package private) void |
Rotate.appendTo(Affine a) |
(package private) void |
Affine.appendTo(Affine a) |
(package private) void |
Shear.appendTo(Affine a) |
(package private) void |
Translate.appendTo(Affine a) |
(package private) void |
Scale.appendTo(Affine a) |
void |
AffineBuilder.applyTo(Affine x)
Deprecated.
|
(package private) void |
Transform.prependTo(Affine a)
Visitor from
Affine class which provides an efficient
prepend operation for the subclasses. |
(package private) void |
Rotate.prependTo(Affine a) |
(package private) void |
Affine.prependTo(Affine a) |
(package private) void |
Shear.prependTo(Affine a) |
(package private) void |
Translate.prependTo(Affine a) |
(package private) void |
Scale.prependTo(Affine a) |