将线分成相等的部分
这是一道几何题。
我在两点 A 和 B 之间有一条线,想将其分成 k 个相等的部分。我需要分隔 A 和 B 之间线的点的坐标。
非常感谢任何帮助。
多谢!
This is a geometry question.
I have a line between two points A and B and want separate it into k equal parts. I need the coordinates of the points that partition the line between A and B.
Any help is highly appreciated.
Thanks a lot!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你只需要 A 和 B 的加权平均值。
或者,在二维中
因此,要将线分成 k 个相等的部分,请进行循环并找到 C,对于 t=0/k,t=1/k,t=2/k,...,t=k/k
You just need a weighted average of A and B.
or, in 2-D
So, to divide the line into k equal parts, make a loop and find C, for t=0/k, t=1/k, t=2/k, ... , t=k/k
打印:
看起来不错,但我的程序不起作用:D。
但你的方法很有效,谢谢
prints:
which looks fine but then my program doesn't work :D.
but your method works so thanks