如果iPhone中控制点未知,如何绘制经过触摸位置的贝塞尔路径?
我有两个固定点,P1 和 P1。 P2。在触摸时,如何绘制穿过 P1、触摸点和 P2 的贝塞尔路径?
换句话说,如果我们知道了触摸点的位置,有没有办法找到控制点的位置呢?
I have two fixed points, P1 & P2. On touch, How can i draw a Bezier Path passing through P1, Touch point and P2?
In other words, Is there any way to find out the location of control point if we know the touch point location?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想你想要施耐德的贝塞尔曲线拟合算法。它需要一堆点并通过它们拟合一条贝塞尔曲线。
http://iut-arles.univ-provence.fr/web/romain-raffin/sites/romain-raffin/IMG/pdf/PSchndeider_An_Algorithm_for_automatically_fitting_digitized_curves.pdf
I think you want Schneider's bezier curve-fitting algorithm. It takes a bunch of points and fits a bezier curve through them.
http://iut-arles.univ-provence.fr/web/romain-raffin/sites/romain-raffin/IMG/pdf/PSchndeider_An_Algorithm_for_automatically_fitting_digitized_curves.pdf