Skip to content

和 SVG 中的 fill-rule 属性一致,左边是 nonzero,右边是 evenodd.

由于 earcut 不支持自相交路径,我们使用 libtess.js 来三角化路径。

ts
const star = new Path({
    d: 'M150 0 L121 90 L198 35 L102 35 L179 90 Z',
    fill: '#F67676',
    fillRule: 'evenodd',
    tessellationMethod: TesselationMethod.LIBTESS, // instead of earcut
});

Released under the MIT License.