Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在做一个学校编程项目,需要按百分比知道一个具体的点。例如:
点 1 = 10,5 点 2 = 16,8
现在我需要从两个点和一个距离百分比计算一个新点。例如距离为 25%。
我已经在互联网上进行了很多搜索,但我不明白我需要如何计算这个。
如果您的意思是距离是它们之间距离的 25%,并且新点介于两者之间:
你可以使用这个:
point1=x1,y1 & point2=x2,y2 & new_point=xn,yn & ratio=r
然后:
xn=(1-r) x1+r x2
yn=(1-r) y1+r y2