mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-11-29 10:38:47 +08:00
improve agge line join
This commit is contained in:
parent
e0f07515d6
commit
a53865125d
@ -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
|
||||
|
@ -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四种位置。
|
||||
|
Loading…
Reference in New Issue
Block a user