创建垂直正弦波
我正在开发一个使用正弦波的游戏。 我在以下示例中使用了水平正弦波 http://www.roseindia.net/java/example/java/swing /create_sine_wave.shtml
如何垂直创建类似的波浪?
I am developing a game which uses sine wave.
I made use of the horizontal sin wave with the following example
http://www.roseindia.net/java/example/java/swing/create_sine_wave.shtml
How do create a similar kind of wave vertically?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
它说
交换 x 和 y 值的顺序。
Where it says
swap the order of x and y values.
尝试交换 X 和 Y 坐标
Try swapping the X and Y coordinates
您可以轻松交换 x 和 y 的值。
这将导致图形坐标发生变化,因此如果之前是水平的,它将变成垂直的,反之亦然。
You can easily swap the values of x and y.
This will result in changing the graph coordinates hence if its horizontal before it'll become vertical and vice verse.