I am making an app where I need to draw a sine wave between two given points. I have Google'd, and Google'd, and I haven't found anything that I have found suitable. So my question is, is there an efficient way in android to use some pre defined points to draw a smooth wave like form? thank you for any help in advance

link|improve this question

I am not sure what you are asking here. There are at least three ways to interpret what you just said. Do you: 1. Want the equation for a parametric curve passing through 2 points which has sinusoidal oscillations? 2. Want to interpolate a triangle wave with a sine wave? 3. Just want to know how to quickly plot a sine wave? – Mikola Jun 28 '11 at 3:31
looking for the interpolation if you know. the wavelength is the same for the whole wave, but the amplitude is random for each point – DingleNutZ Jun 28 '11 at 3:41
1  
that doesn't make much sense. What you are asking for is not a sine wave then, but is in fact something else. If you can vary the amplitude freely, you can make any function you want. – Mikola Jun 28 '11 at 3:46
feedback

1 Answer

up vote 0 down vote accepted

You can use the android.graphics.Path class to construct a set of quadratic or cubic Bézier spline curves between your set of control points.

link|improve this answer
thankyou! will implement that tonight! – DingleNutZ Jun 28 '11 at 5:04
feedback

Your Answer

 
or
required, but never shown

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