Constructor and Description |
---|
Transforms() |
Modifier and Type | Method and Description |
---|---|
static IShape |
createTransformedShape(Transform t,
IShape src)
Creates and returns a new shape that is the supplied shape transformed by this transform's
matrix.
|
static <T extends Transform> |
multiply(AffineTransform a,
AffineTransform b,
T into)
Multiplies the supplied two affine transforms, storing the result in
into . |
static <T extends Transform> |
multiply(AffineTransform a,
double m00,
double m01,
double m10,
double m11,
double tx,
double ty,
T into)
Multiplies the supplied two affine transforms, storing the result in
into . |
static <T extends Transform> |
multiply(double m00,
double m01,
double m10,
double m11,
double tx,
double ty,
AffineTransform b,
T into)
Multiplies the supplied two affine transforms, storing the result in
into . |
static <T extends Transform> |
multiply(double am00,
double am01,
double am10,
double am11,
double atx,
double aty,
double bm00,
double bm01,
double bm10,
double bm11,
double btx,
double bty,
T into)
Multiplies the supplied two affine transforms, storing the result in
into . |
public static IShape createTransformedShape(Transform t, IShape src)
public static <T extends Transform> T multiply(AffineTransform a, AffineTransform b, T into)
into
. into
may refer to the same instance as a
or b
.into
for chaining.public static <T extends Transform> T multiply(AffineTransform a, double m00, double m01, double m10, double m11, double tx, double ty, T into)
into
. into
may refer to the same instance as a
.into
for chaining.public static <T extends Transform> T multiply(double m00, double m01, double m10, double m11, double tx, double ty, AffineTransform b, T into)
into
. into
may refer to the same instance as b
.into
for chaining.public static <T extends Transform> T multiply(double am00, double am01, double am10, double am11, double atx, double aty, double bm00, double bm01, double bm10, double bm11, double btx, double bty, T into)
into
.into
for chaining.Copyright © 2017. All rights reserved.