本文介绍了将二次贝塞尔曲线转换为三次贝塞尔曲线的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

将二次贝塞尔曲线(具有3个点)转换为立方贝塞尔(具有4个点)的算法是什么?

What is the algorithm to convert a quadratic bezier (with 3 points) to a cubic one (with 4 points)?

推荐答案

来自:

CP = QP

CP = QP

CP = QP
CP = QP

三次方的两个控制点是:

The two control points for the cubic are:

CP = QP + 2/3 *(QP -QP )

CP = QP + 2/3 *(QP )

CP = QP + 2/3 *(QP-QP)
CP = QP + 2/3 *(QP-QP)

...由于四舍五入而引入了一些错误,但不太可能引起注意。

...There is a slight error introduced due to rounding, but it is unlikely to be noticeable.

这篇关于将二次贝塞尔曲线转换为三次贝塞尔曲线的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-17 21:55