MLKitDigitalInkRecognition Framework Reference
Stay organized with collections
Save and categorize content based on your preferences.
MLKStroke
@interface MLKStroke : 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
Objective-C
@property (nonatomic, readonly) NSArray<MLKStrokePoint *> *_Nonnull points;
-
Unavailable. Use init(points:)
instead.
Declaration
Objective-C
- (nonnull instancetype)init;
-
Initializes and returns a Stroke
object using the sequence of touch points provided.
Declaration
Objective-C
- (nonnull instancetype)initWithPoints:
(nonnull NSArray<MLKStrokePoint *> *)points;
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-07-10 UTC.
[null,null,["Last updated 2024-07-10 UTC."],[[["\u003cp\u003e\u003ccode\u003eMLKStroke\u003c/code\u003e represents a sequence of touch points, from pen/touch down to pen/touch up.\u003c/p\u003e\n"],["\u003cp\u003eIt provides access to a list of touch points as \u003ccode\u003eStrokePoint\u003c/code\u003e objects through the \u003ccode\u003epoints\u003c/code\u003e property.\u003c/p\u003e\n"],["\u003cp\u003eYou should initialize a \u003ccode\u003eMLKStroke\u003c/code\u003e instance using the designated initializer \u003ccode\u003einitWithPoints:\u003c/code\u003e, providing an array of \u003ccode\u003eStrokePoint\u003c/code\u003e objects.\u003c/p\u003e\n"]]],[],null,["# MLKitDigitalInkRecognition Framework Reference\n\nMLKStroke\n=========\n\n\n @interface MLKStroke : NSObject\n\nRepresents a sequence of touch points between a pen (resp. touch) down and pen (resp. touch) up\nevent.\n- `\n ``\n ``\n `\n\n ### [points](#/c:objc(cs)MLKStroke(py)points)\n\n `\n ` \n List of touch points as `StrokePoint`. \n\n #### Declaration\n\n Objective-C \n\n @property (nonatomic, readonly) NSArray\u003c../Classes/MLKStrokePoint.html *\u003e *_Nonnull points;\n\n- `\n ``\n ``\n `\n\n ### [-init](#/c:objc(cs)MLKStroke(im)init)\n\n `\n ` \n Unavailable. Use `init(points:)` instead. \n\n #### Declaration\n\n Objective-C \n\n - (nonnull instancetype)init;\n\n- `\n ``\n ``\n `\n\n ### [-initWithPoints:](#/c:objc(cs)MLKStroke(im)initWithPoints:)\n\n `\n ` \n Initializes and returns a `Stroke` object using the sequence of touch points provided. \n\n #### Declaration\n\n Objective-C \n\n - (nonnull instancetype)initWithPoints:\n (nonnull NSArray\u003c../Classes/MLKStrokePoint.html *\u003e *)points;"]]