使用PyGLM或NumPy在python中转换vmath等效语句的方法

时间:2019-06-20 12:57:36

标签: python numpy glm

使用NumPypyGLM的Python中的等效语句是什么?

vmath::translate(0.0f, 0.0f, -4.0f) * vmath::translate(1.2f, 2.2f, -1.0f)

这来自一个较大的语句块,我很难转换为不熟悉这两个库的Python。搜索和手册对我的结果影响不大。

vmath::mat4 mv_matrix = vmath::translate(0.0f, 0.0f, -4.0f) *
                        vmath::translate(sinf(2.1f * f) * 0.5f,
                                         cosf(1.7f * f) * 0.5f,
                                         sinf(1.3f * f) * cosf(1.5f * f) * 2.0f) *
                        vmath::rotate((float)currentTime * 45.0f, 0.0f, 1.0f, 0.0f) *
                        vmath::rotate((float)currentTime * 81.0f, 1.0f, 0.0f, 0.0f);

如果我也可以问。 Python中的 vmath :: rotate()也是什么?谢谢。

1 个答案:

答案 0 :(得分:1)

import numpy.matlib 
import numpy as np 

a = np.array([0.0, 0.0, -4.0])
b = np.array([1.2, 2.2, 1.0])

product = np.dot(a,b)
print product

要轮换,您可以选择以下答案https://stackoverflow.com/a/6802723/1547872