improve agge line join

This commit is contained in:
lixianjing 2024-06-27 15:09:25 +08:00
parent e0f07515d6
commit a53865125d
2 changed files with 3 additions and 2 deletions

View File

@ -357,7 +357,7 @@ namespace agge
else
{
b2 = y2 - k2 * x2;
x = (y + b2) / k2;
x = (y - b2) / k2;
}
}
else
@ -386,7 +386,7 @@ namespace agge
else
{
b1 = y1 - k1 * x1;
x = (y + b1) / k1;
x = (y - b1) / k1;
}
}
else

View File

@ -2,6 +2,7 @@
2024/06/27
* 修复overlay导致对话框高亮消失的问题和overlay的焦点切换问题(感谢智明提供补丁)
* 修复了在agge模式下当line_join为miter时出现的绘制错误(感谢泽武提供补丁)
2024/06/26
* icon\_at 增加 left\_top/left\_bottom/right\_top/right\_bottom四种位置。