firstControlPoint property

Offset firstControlPoint

Gets the first control point of the curve.

Implementation

Offset get firstControlPoint => _firstControlPoint.offset;
void firstControlPoint=(Offset value)

Sets the first control point of the curve.

Implementation

set firstControlPoint(Offset value) {
  _firstControlPoint = PdfPoint.fromOffset(value);
}