skia
    Preparing search index...

    Interface ContourMeasureIter

    CanvasKit is built with Emscripten and Embind. Embind adds the following methods to all objects that are exposed with it. This _type field is necessary for the TypeScript compiler to differentiate between opaque types such as Shader and ColorFilter. It doesn't exist at runtime.

    interface ContourMeasureIter {
        _type: "ContourMeasureIter";
        delete(): void;
        deleteLater(): void;
        isAliasOf(other: any): boolean;
        isDeleted(): boolean;
        next(): ContourMeasure | null;
    }

    Hierarchy (View Summary)

    Index

    Properties

    _type: "ContourMeasureIter"

    Methods

    • Iterates through contours in path, returning a contour-measure object for each contour in the path. Returns null when it is done.

      See SkContourMeasure.h for more details.

      Returns ContourMeasure | null