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.
假设您有一个坐标可以在 0.0 到 1.0 之间的任何位置(见蓝线),但我需要将其偏移为红线。
即当它是 0.75 时它应该是 0.75 + offsetValue,当它是 0.25 时它应该是 0.25 - offsetValue。
你会怎么做?谢谢!
使用类似-sin(blue_value * 2 * PI)或sin(-1 * blue_value * 2 * PI)
-sin(blue_value * 2 * PI)
sin(-1 * blue_value * 2 * PI)
您想要的是 0-2PI 的负正弦曲线。
检查这个