Package | Description |
---|---|
com.yworks.yfiles.geometry |
Contains definitions, default implementations, structs and support classes that deal with the representation of geometric data.
|
Modifier and Type | Method and Description |
---|---|
static MatrixOrder |
MatrixOrder.fromOrdinal(int ordinal) |
static MatrixOrder |
MatrixOrder.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MatrixOrder[] |
MatrixOrder.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
void |
Matrix2D.multiply(Matrix2D matrix,
MatrixOrder order)
Multiplies this matrix instance by the given instance using the given order.
|
void |
Matrix2D.rotate(double theta,
MatrixOrder order)
Prepends or appends a rotation operation to this matrix around the origin.
|
void |
Matrix2D.rotate(double theta,
PointD center,
MatrixOrder order)
Prepends or appends a rotation operation to this matrix around the specified rotation center.
|
void |
Matrix2D.scale(double x,
double y,
MatrixOrder order)
Appends or prepends a scale operation to this instance.
|
void |
Matrix2D.translate(PointD delta,
MatrixOrder order)
Appends or Prepends a translation to this instance.
|