meo-skia-canvas
    Preparing search index...

    Interface Path2DBounds

    The rectangle enclosing a path, from Path2D.bounds. Edges and dimensions both, so neither has to be derived.

    🧪 Not in the HTML Canvas standard.

    interface Path2DBounds {
        bottom: number;
        height: number;
        left: number;
        right: number;
        top: number;
        width: number;
    }
    Index
    bottom: number

    Largest y coordinate the path reaches.

    height: number

    bottom - top.

    left: number

    Smallest x coordinate the path reaches.

    right: number

    Largest x coordinate the path reaches.

    top: number

    Smallest y coordinate the path reaches.

    width: number

    right - left.