Preparing search index...

    The line join style for a stroked path — how corners between connected path segments are rendered. Mirrors the SVG stroke-linejoin attribute. Pass to VectorStrokeBuilder#setJoin.

    Lens Scripting Version 370

    var sb = VectorStrokeBuilder.create(6);
    sb.setJoin(VectorComposite.LineJoin.Round);
    var stroke = sb.build();
    Index

    Enumeration Members

    Enumeration Members

    Bevel: number

    A straight line connecting the outer edges of the two segments, cutting off the corner.

    Lens Scripting Version 370

    Miter: number

    A sharp (mitered) corner. When the miter length exceeds the miter limit, the corner falls back to a bevel. This is the SVG default.

    Lens Scripting Version 370

    Round: number

    A circular arc joining the outer edges of the two segments.

    Lens Scripting Version 370