画2条平行线

发布于 2024-08-25 19:43:37 字数 71 浏览 7 评论 0原文

如何计算绘制两条平行线的点。

我知道平行线中心的起点和终点。为了让事情变得有点困难,它需要支持直线和贝塞尔曲线。

How can I calculate the points to draw 2 parallel lines.

I know the start and end points for the centre of the parallel lines. To makes thing a little bit harder, it needs to support straight and Bezier curved lines.

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

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

发布评论

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

评论(1

雨夜星沙 2024-09-01 19:43:37

这个问题很模糊,但有一种可能性。希望有帮助。

对于线段 (x1,y1)-(x2,y2),您可以计算另一个线段,以角度 a 表示的方向远离 n 个像素

x1b = x1 + n cos a
y1b = y1 - n sin a
x2b = x2 + n cos a
y2b = y2 - n sin a

The question is vague, but here's a possibility. Hope that helps.

For a segment (x1,y1)-(x2,y2) you can calculate another segment, n pixels away in a direction represented by angle a this way

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