本文整理匯總了Python中common.mtx2rvec方法的典型用法代碼示例。如果您正苦於以下問題:Python common.mtx2rvec方法的具體用法?Python common.mtx2rvec怎麽用?Python common.mtx2rvec使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類common
的用法示例。
在下文中一共展示了common.mtx2rvec方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: render
# 需要導入模塊: import common [as 別名]
# 或者: from common import mtx2rvec [as 別名]
def render(self, dst):
t = self.t
self.t += 1.0/30.0
sx, sy = self.grid_size
center = np.array([0.5*sx, 0.5*sy, 0.0])
phi = pi/3 + sin(t*3)*pi/8
c, s = cos(phi), sin(phi)
ofs = np.array([sin(1.2*t), cos(1.8*t), 0]) * sx * 0.2
eye_pos = center + np.array([cos(t)*c, sin(t)*c, s]) * 15.0 + ofs
target_pos = center + ofs
R, self.tvec = common.lookat(eye_pos, target_pos)
self.rvec = common.mtx2rvec(R)
self.draw_quads(dst, self.white_quads, (245, 245, 245))
self.draw_quads(dst, self.black_quads, (10, 10, 10))
示例2: render
# 需要導入模塊: import common [as 別名]
# 或者: from common import mtx2rvec [as 別名]
def render(self, dst):
t = self.t
self.t += 1.0 / 30.0
sx, sy = self.grid_size
center = np.array([0.5 * sx, 0.5 * sy, 0.0])
phi = pi / 3 + sin(t * 3) * pi / 8
c, s = cos(phi), sin(phi)
ofs = np.array([sin(1.2 * t), cos(1.8 * t), 0]) * sx * 0.2
eye_pos = center + np.array([cos(t) * c, sin(t) * c, s]) * 15.0 + ofs
target_pos = center + ofs
R, self.tvec = common.lookat(eye_pos, target_pos)
self.rvec = common.mtx2rvec(R)
self.draw_quads(dst, self.white_quads, (245, 245, 245))
self.draw_quads(dst, self.black_quads, (10, 10, 10))