public class BezierKnotRecord extends VectorPathRecord
Bezier Knot Record Class
Constructor and Description |
---|
BezierKnotRecord()
Initializes a new instance of the
BezierKnotRecord class. |
BezierKnotRecord(byte[] data)
Initializes a new instance of the
BezierKnotRecord class. |
Modifier and Type | Method and Description |
---|---|
PointF[] |
getPathPoints()
Gets or sets the path points.
|
Point[] |
getPoints()
Gets or sets the points.
|
short |
getType()
Gets the type.
|
boolean |
isClosed()
Gets or sets a value indicating whether this instance is closed.
|
boolean |
isLinked()
Gets or sets a value indicating whether this instance is linked.
|
boolean |
isOpen()
Gets or sets a value indicating whether this instance is open.
|
void |
setClosed(boolean value)
Gets or sets a value indicating whether this instance is closed.
|
void |
setLinked(boolean value)
Gets or sets a value indicating whether this instance is linked.
|
void |
setOpen(boolean value)
Gets or sets a value indicating whether this instance is open.
|
void |
setPathPoints(PointF[] value)
Gets or sets the path points.
|
void |
setPoints(Point[] value)
Gets or sets the points.
|
public BezierKnotRecord()
Initializes a new instance of the BezierKnotRecord
class.
public BezierKnotRecord(byte[] data)
Initializes a new instance of the BezierKnotRecord
class.
data
- The record data.public final PointF[] getPathPoints()
Gets or sets the path points.
Value: The path points.public final void setPathPoints(PointF[] value)
Gets or sets the path points.
Value: The path points.public final Point[] getPoints()
Gets or sets the points.
Value: The points.public final void setPoints(Point[] value)
Gets or sets the points.
Value: The points.public final boolean isClosed()
Gets or sets a value indicating whether this instance is closed.
Value:true
if this instance is closed; otherwise, false
.public final void setClosed(boolean value)
Gets or sets a value indicating whether this instance is closed.
Value:true
if this instance is closed; otherwise, false
.public final boolean isLinked()
Gets or sets a value indicating whether this instance is linked.
Value:true
if this instance is linked; otherwise, false
.public final void setLinked(boolean value)
Gets or sets a value indicating whether this instance is linked.
Value:true
if this instance is linked; otherwise, false
.public final boolean isOpen()
Gets or sets a value indicating whether this instance is open.
Value:true
if this instance is open; otherwise, false
.public final void setOpen(boolean value)
Gets or sets a value indicating whether this instance is open.
Value:true
if this instance is open; otherwise, false
.public short getType()
Gets the type.
Value: The type.getType
in class VectorPathRecord