public interface MotionBlur
extends java.awt.image.BufferedImageOp
| Modifier and Type | Method and Description |
|---|---|
float |
getAngle()
Returns the angle of blur.
|
java.awt.geom.Point2D |
getCentre()
Get the centre of the effect as a proportion of the image size.
|
float |
getCentreX()
Get the centre of the effect in the X direction as a proportion of the image size.
|
float |
getCentreY()
Get the centre of the effect in the Y direction as a proportion of the image size.
|
float |
getDistance()
Get the distance of blur.
|
float |
getRotation()
Get the blur rotation.
|
float |
getZoom()
Get the blur zoom.
|
void |
setAngle(float angle)
Specifies the angle of blur.
|
void |
setCentre(java.awt.geom.Point2D centre)
Set the centre of the effect as a proportion of the image size.
|
void |
setCentreX(float centreX)
Set the centre of the effect in the X direction as a proportion of the image size.
|
void |
setCentreY(float centreY)
Set the centre of the effect in the Y direction as a proportion of the image size.
|
void |
setDistance(float distance)
Set the distance of blur.
|
void |
setRotation(float rotation)
Set the blur rotation.
|
void |
setZoom(float zoom)
Set the blur zoom.
|
void setAngle(float angle)
angle - the angle of blur.getAngle()float getAngle()
setAngle(float)void setDistance(float distance)
distance - the distance of blur.getDistance()float getDistance()
setDistance(float)void setRotation(float rotation)
rotation - the angle of rotation.getRotation()float getRotation()
setRotation(float)void setZoom(float zoom)
zoom - the zoom factor.getZoom()float getZoom()
setZoom(float)void setCentreX(float centreX)
centreX - the centergetCentreX()float getCentreX()
setCentreX(float)void setCentreY(float centreY)
centreY - the centergetCentreY()float getCentreY()
setCentreY(float)void setCentre(java.awt.geom.Point2D centre)
centre - the centergetCentre()java.awt.geom.Point2D getCentre()
setCentre(java.awt.geom.Point2D)