Stroke
class Stroke : NSObject
Represents a sequence of touch points between a pen (resp. touch) down and pen (resp. touch) up event.
-
List of touch points as
StrokePoint
.Declaration
Swift
var points: [StrokePoint] { get }
-
Unavailable. Use
init(points:)
instead. -
Initializes and returns a
Stroke
object using the sequence of touch points provided.Declaration
Swift
init(points: [StrokePoint])