当前位置: 首页>>代码示例>>Python>>正文


Python Matrix.rotation_transform方法代码示例

本文整理汇总了Python中Matrix.rotation_transform方法的典型用法代码示例。如果您正苦于以下问题:Python Matrix.rotation_transform方法的具体用法?Python Matrix.rotation_transform怎么用?Python Matrix.rotation_transform使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Matrix的用法示例。


在下文中一共展示了Matrix.rotation_transform方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: graph_event_cb

# 需要导入模块: import Matrix [as 别名]
# 或者: from Matrix import rotation_transform [as 别名]
 def graph_event_cb(event, v1=v1, axis=axis, center=center, cur_angle = [0]):
     if not event.button is None:
         angle = event.xdata
         if angle is None:
             angle = 0       # Click outside graph bounds
         import Matrix
         tf = Matrix.rotation_transform(axis, angle-cur_angle[0], center)
         xf = Matrix.chimera_xform(tf)
         v1.openState.localXform(xf)
         cur_angle[0] = angle
         ax.cur_position.set_xdata((angle,angle))
         ax.figure.canvas.draw()
开发者ID:davem22101,项目名称:semanticscience,代码行数:14,代码来源:measure.py

示例2: parameter_xform

# 需要导入模块: import Matrix [as 别名]
# 或者: from Matrix import rotation_transform [as 别名]
def parameter_xform(rotq, rotc, trans):

    import Matrix as m
    ttf = m.translation_matrix(trans)
    sa2 = m.norm(rotq[:3])
    ca2 = rotq[3]
    from math import atan2, pi
    angle = 2*atan2(sa2,ca2) * 180.0/pi
    axis = m.normalize_vector(rotq[:3])
    rtf = m.rotation_transform(axis, angle, rotc)
    tf = m.multiply_matrices(ttf, rtf)
    xf = m.chimera_xform(tf)
    return xf
开发者ID:davem22101,项目名称:semanticscience,代码行数:15,代码来源:fly.py


注:本文中的Matrix.rotation_transform方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。