# `GSPenProtocol qCurveTo:`

*Instance Method*

Draw a whole sting of quadratic curve segments.

## Declaration

```swift
func quadraticCurve(to points: FTPointArray!)
```

```objc
- (void) qCurveTo:(FTPointArray *) points;
```

```python
qCurveTo_(points: FTPointArray)
```

## Discussion

Usually, implementations of this just call `-qCurveWithPoints:count:` with the points and count of the `FTPointArray`. Therefore, prefer using `-qCurveWithPoints:count:` instead when possible.

