使用 Paint.setStrokeJoin() 和 Paint.setStrokeMiter()

发布于 2024-11-04 19:14:36 字数 401 浏览 0 评论 0原文

我很好奇这些方法的作用以及如何使用它们,因为除了 Javadocs 中的单句描述之外似乎没有任何细节:

setStrokeJoin

setStrokeMiter

有人有一些示例代码或良好的描述吗?

I'm curious about what these methods do and how to use them as there doesnt seem to be any details beyond the single sentence descriptions in the Javadocs:

setStrokeJoin

setStrokeMiter

Anybody have some example code or a good description?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

醉南桥 2024-11-11 19:14:36

setStrokeJoin 允许设置粗线连接的三种渲染模式。 ROUND 表示使用圆形截面来绕过扭结,BEVEL 表示使用另一个短直线段垂直于半角,MITRE表示两条连接线的外轮廓被拉长直至相交。然而,当角度非常尖锐时,该点可能会变得很远,因此通常会设置一个限制,如果达到一定的锐度,则从 MITRE 切换到 BEVEL。该限制由setStrokeMiter控制。

输入图像描述这里

setStrokeJoin allows to set three modes how a line join of thick lines is rendered. ROUND means a circular section is used to go around the kink, BEVEL means another short straigt segment is used perpendicular to the halve angle, and MITER means the outer contour of the two joining lines is elongated until it intersects. However, when the angle is really sharp, that point can go very far away, so usually a limit is set that switches from MITER to BEVEL, if certain sharpness is reached. This limit is controlled by setStrokeMiter.

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文