Interface LineOpts

    interface LineOpts {
        aside?: boolean;
        cap?: "butt" | "round" | "square";
        dashed?: boolean;
        fill?: true | Val<string>;
        join?: "round" | "miter" | "bevel";
        opacity?: Val<number>;
        origin?: Val<V>;
        rotate?: Val<number>;
        scale?: Val<V>;
        stroke?: Val<string>;
        strokeWidth?: Val<number>;
        thin?: boolean;
        translate?: Val<V>;
    }
    Hierarchy
    Index

    Properties

    aside?: boolean
    cap?: "butt" | "round" | "square"
    dashed?: boolean
    fill?: true | Val<string>
    join?: "round" | "miter" | "bevel"
    opacity?: Val<number>
    origin?: Val<V>
    rotate?: Val<number>
    scale?: Val<V>
    stroke?: Val<string>
    strokeWidth?: Val<number>
    thin?: boolean
    translate?: Val<V>