Package | Description |
---|---|
radar.org.newdawn.slick.geom |
Contains polygon triangulation code taken from the Slick2D library.
|
Modifier and Type | Method and Description |
---|---|
Transform |
Transform.concatenate(Transform tx)
Update this Transform by concatenating the given Transform to this one.
|
static Transform |
Transform.createRotateTransform(float angle)
Create a new rotation Transform
|
static Transform |
Transform.createRotateTransform(float angle,
float x,
float y)
Create a new rotation Transform around the specified point
|
static Transform |
Transform.createScaleTransform(float xScale,
float yScale)
Create an new scaling Transform
|
static Transform |
Transform.createTranslateTransform(float xOffset,
float yOffset)
Create a new translation Transform
|
Modifier and Type | Method and Description |
---|---|
Transform |
Transform.concatenate(Transform tx)
Update this Transform by concatenating the given Transform to this one.
|
Constructor and Description |
---|
Transform(Transform other)
Copy a transform
|
Transform(Transform t1,
Transform t2)
Concatanate to transform into one
|