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?

link|improve this question

64% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Where it says g.drawLine(x1, y1, x2, y2); swap the order of x and y values.

link|improve this answer
Thanks it worked.. Sorry for posting a silly question. – Jana Apr 1 '11 at 7:12
consider accepting the answer then :) – reseter Apr 1 '11 at 7:13
Had to wait 5 minutes for doing it.. Done – Jana Apr 1 '11 at 7:22
feedback

Try swapping the X and Y coordinates

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.