enumerateInterpolatedPoints(in:strideByParametricStep:using:)
Executes a given block using each point in a range with a parametric step.
Declaration
func enumerateInterpolatedPoints(in range: __PKFloatRange, strideByParametricStep parametricStep: CGFloat, using block: @escaping (PKStrokePoint, UnsafeMutablePointer<ObjCBool>) -> Void)Parameters
- range:
The parametric range in which to enumerate points.
- parametricStep:
The parametric step between points.
- block:
The block to execute for each point. This block takes two parameters:
point—The interpolated point on the spline.stop—A reference to a Boolean value. Setting the value toYESwithin the block stops further enumeration, but the block continues to run until it’s finished.