我有一个基于教程编写的程序:
from direct.showbase.ShowBase import ShowBase
class MyApp(ShowBase):
def __init__(self):
ShowBase.__init__(self)
# Load the environment model.
self.environ = self.loader.loadModel("models/misc/rgbCube")
# Reparent the model to render.
self.environ.reparentTo(self.render)
# Apply scale and position transforms on the model.
self.environ.setScale(10, 10, 10)
self.environ.setPos(-8, 42, 0)
app = MyApp()
app.run()
我想要类似的东西:
self.environ.rotate(要旋转的轴,以度为单位)
我在谷歌上进行了广泛的搜索,唯一看起来像它会起作用的是:http: //www.panda3d.org/manual/index.php/Position,_Rotation_and_Scale_Intervals 你猜怎么着!它没有。您能否指点我一个深入解释 Hpr 的网站,或者只是在这里解释一下?谢谢。