gpt4 book ai didi

c++ - 在线段上的水平和垂直翻转

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:47:25 25 4
gpt4 key购买 nike

我有一组定义直线的点 (x,y)(c++ vector )。我如何实现一个函数来返回相同的线,相对于它自己的大小水平和垂直翻转?

最佳答案

我假设您的意思是您没有相对于某个固定原点翻转;您正在相对于直线的质心翻转。

这是一些伪代码:

Get the min and max y and x in the vector
Height = yMax - yMin
Width = xMax - xMin
yCentroid = yMin + (Height / 2)
xCentroid = xMin + (Width / 2)

for each point...
xNew = xMax - (xOld - xMin)
yNew = yMax - (yOld - yMin)

例如,如果我们有一条从 (-5, 3) 到 (7, 4) 再到 (11, -1) 的简单三点线,这会给我们一条从 (11, 0) 到(-1, -1) 到 (-5, 4)。这在下面的蓝色示例中显示。

它也适用于几个点,如下面的绿色示例所示。

Excel plot of algorithm results

关于c++ - 在线段上的水平和垂直翻转,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15251774/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com