在android中有效绘制正弦波
我正在制作一个应用程序,需要在两个给定点之间绘制正弦波。我已经谷歌了,谷歌了,但我还没有找到任何我认为合适的东西。
android中是否有一种有效的方法来使用一些预定义的点来绘制平滑的波浪状形式?
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.
Is there an efficient way in android to use some pre defined points to draw a smooth wave like form?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 android.graphics.Path 类来构造一组控制点集之间的二次或三次贝塞尔样条曲线。
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.