You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for opening your first issue here! If you're reporting a 🐞 bug, please make sure you include steps to reproduce it.
To help make it easier for us to investigate your issue, please follow the contributing guidelines.
We get a lot of issues on this repo, so please be patient and we will get back to you as soon as we can.
问题描述
当使用path来绘制图案,图案里面但凡涉及到圆弧也就是A命令绘制的,尤其是半圆这样的大圆弧,总是只能绘制3/4样子,我使用重复绘制倒是可以将路径表示出来,但是这样里面的路径又不能闭合,导致填充的效果不是自己想要的
重现链接
//
重现步骤
let node = graph!.createNode({
tools: [
{
name: 'node-editor',
args: {
attrs: {
backgroundColor: '#ff0000',
},
x: '20%',
},
},
],
width: 24 * 4,
height: 16 * 4,
当我换成
那么就能绘制完美的圆弧,但是实际大小又不能变换
预期行为
实际我想要的就是半圆和直线连上,而不是这样只画了3/4样子,这样可以填充,感觉就是这个refD转换A命令不行,如果使用d:直接的就可以完美绘制完
平台
屏幕截图或视频(可选)
补充说明(可选)
无需业务场景,就是createNode函数使用常规path路径中出现A命令不行
The text was updated successfully, but these errors were encountered: