public interface IOrderedShape
Represents an ordered shape. An ordered shape is a continuous set of points having a start point and end point. The continuous set of points connected using a specific rule.
Modifier and Type | Method and Description |
---|---|
PointF |
getEndPoint()
Gets the ending shape point.
|
PointF |
getStartPoint()
Gets the starting shape point.
|
boolean |
isClosed()
Gets a value indicating whether ordered shape is closed.
|
void |
reverse()
Reverses the order of points for this shape.
|
void |
setClosed(boolean value)
Sets a value indicating whether ordered shape is closed.
|
PointF getStartPoint()
Gets the starting shape point.
PointF getEndPoint()
Gets the ending shape point.
boolean isClosed()
Gets a value indicating whether ordered shape is closed. When processing closed ordered shape the starting and ending points have no meaning.
true
if this ordered shape is closed; otherwise, false
.void setClosed(boolean value)
value
- true
if this ordered shape is closed; otherwise, false
.void reverse()
Reverses the order of points for this shape.