本文整理匯總了Python中Polygon.Polygon.rotbyrotmat方法的典型用法代碼示例。如果您正苦於以下問題:Python Polygon.rotbyrotmat方法的具體用法?Python Polygon.rotbyrotmat怎麽用?Python Polygon.rotbyrotmat使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Polygon.Polygon
的用法示例。
在下文中一共展示了Polygon.rotbyrotmat方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: print
# 需要導入模塊: from Polygon import Polygon [as 別名]
# 或者: from Polygon.Polygon import rotbyrotmat [as 別名]
#=======================
#c. Camera Orientations.
#=======================
print("=======================")
print("c. Camera Orientations.")
print("=======================")
from numpy.linalg import inv
fltTheta = -30
wx = 0
wy = 1
wz = 0
#Compute Camera Orientations.
quatmat_1 = np.array(np.eye(3))
quatmat_2 = poly.rotbyrotmat(quatmat_1, fltTheta, wx, wy, wz, 1)
quatmat_3 = poly.rotbyrotmat(quatmat_2, fltTheta, wx, wy, wz, 1)
quatmat_4 = poly.rotbyrotmat(quatmat_3, fltTheta, wx, wy, wz, 1)
print("The Camera Orientation at Frame 1 (quatmat_1) is:\n")
print quatmat_1
print("\n")
print("The Camera Orientation at Frame 2 (quatmat_2) is:\n")
print(quatmat_2)
print("\n")
print("The Camera Orientation at Frame 3 (quatmat_3) is:\n")
print(quatmat_3)
print("\n")
print("The Camera Orientation at Frame 4 (quatmat_4) is:\n")
print(quatmat_4)
print("\n")