public interface IShapeFrame extends IGenericCloneable<IShapeFrame>
Represents shape frame's properties.
Modifier and Type | Method and Description |
---|---|
float |
getCenterX()
Returns the X coordinate of a frame's center.
|
float |
getCenterY()
Returns the Y coordinate of a frame's center.
|
byte |
getFlipH()
Determines whether a frame is flipped horizontally.
|
byte |
getFlipV()
Determines whether a frame is flipped vertically.
|
float |
getHeight()
Returns the height of a frame.
|
java.awt.geom.Rectangle2D.Float |
getRectangle()
Returns the coordinates of a frame.
|
float |
getRotation()
Returns the number of degrees a frame is rotated around the z-axis.
|
float |
getWidth()
Returns the width of a frame.
|
float |
getX()
Returns the X coordinate of the upper-left corner of a frame.
|
float |
getY()
Returns the Y coordinate of the upper-left corner of a frame.
|
cloneT
float getX()
Returns the X coordinate of the upper-left corner of a frame.
Read-only float
.
float getY()
Returns the Y coordinate of the upper-left corner of a frame.
Read-only float
.
float getWidth()
Returns the width of a frame.
Read-only float
.
float getHeight()
Returns the height of a frame.
Read-only float
.
float getRotation()
Returns the number of degrees a frame is rotated around the z-axis.
A positive value indicates clockwise rotation; a negative value
indicates counterclockwise rotation.
Read-only float
.
float getCenterX()
Returns the X coordinate of a frame's center.
Read-only float
.
float getCenterY()
Returns the Y coordinate of a frame's center.
Read-only float
.
byte getFlipH()
Determines whether a frame is flipped horizontally.
Read-only NullableBool
.
byte getFlipV()
Determines whether a frame is flipped vertically.
Read-only NullableBool
.
java.awt.geom.Rectangle2D.Float getRectangle()
Returns the coordinates of a frame.
Read-only Rectangle2D.Float
.