1

我正在学习cocos2d(python)。当我在网页上观看cocos2d文档时(cocos2d文档)。有一些代码如下:

action = Bezier(bezier_conf.path1, 5)   # Moves the sprite using the
sprite.do(action)                       # bezier path 'bezier_conf.path1'
                                      # in 5 seconds

没有更多的代码。我不明白什么是'bezier_conf.path1'以及我用来定义它的值。

4

1 回答 1

1

你需要安装包

pip install --upgrade bezier

小例子

import numpy as np
import bezier

n1 = np.array([[0.0, 1.0],[1.5, 1.0],[1.0, 0.0],])
n2 = np.array([[0.0, 0.0],[1.0, 1.0],[1.0, 2.5],])
curve1 = bezier.Curve(n1, degree=2)
curve2 = bezier.Curve.from_nodes(n2)
intersections = curve1.intersect(curve2)

print (intersections)

在此示例中计算两条曲线之间的交点。您需要为您的代码导入贝塞尔曲线。

于 2017-07-20T03:52:47.527 回答