3DMAX对象最常用的三种变换方式是移动、旋转和缩放。本文将详细介绍这些是如何工作的。
移动:
使用move函数处理移动:
move <object> <vector>
按矢量移动对象:
c = cone() --c is at 0,0,0
move c [0,1,0] --after this line runs, c is at 0,1,0
move c [0,1,0] --after this line runs, c is at 0,2,0
如果要为对象指定绝对位置,可以通过其position属性来实现:
c = cone() --c is at 0,0,0
c.position = [0,10,0] --after this line c is at 0,10,0
c.position = [0,10,0] --after this line c is still at 0,10,0
缩放:
对象的缩放方式与移动方式相同。使用对象和向量调用scale函数,以指示沿每个轴缩放多少
c = cone()
scale c [2,2,2] -- makes c twice as big
scale c [2,2,2] -- makes c twice as big (4 times as big as original)
要进行绝对缩放,请执行以下操作:
c=cone()
c.scale = [2,2,2] -- makes c twice as big
c.scale = [2,2,2] -- doesn't change c more than before
旋转:
旋转变换并不像移动和旋转变换那么简单。事实上,有三种方法可以在MAXScript中表示旋转值:
[角度轴]、[四元数]和[欧拉角]。
角度轴
角度轴旋转将旋转表示为围绕向量的角度。
将矢量想象为对象围绕其旋转的轴。轴穿过对象的枢轴。然后,旋转会使对象围绕轴旋转角度指定的量。
角度轴要求指定旋转角度和旋转矢量。例如:
t = teapot()
rotate t (angleaxis 45 [1, 0, 0])
上述操作将使t(茶壶)围绕x轴旋转45度
四元数
四元数-包含旋转和一组运算
与角度轴一样,四元数既包含旋转角度,也包含旋转轴
t = teapot()
rotate t (quat 45 [1, 0, 0])
欧拉角
使用围绕每个轴的旋转角度(以度为单位)提供3D空间中方向的表示。
角度可以大于360度,因此可以指定多次旋转。
t = teapot()
rotate t (eulerangles 45 0 0)