resetMaxFile #noPrompt --重置文件
theV = normalize [5,10,0] --矢量旋转,标准化为 单位向量
theStep = 10 --旋转 单位
--旋转从0到360度
for a = 0 to 360-theStep by theStep do
(
rm = rotateXMatrix a --根据变量 a 创建一个旋转矩阵
theRotV = theV * rm --使用矩阵 改造原有的载体
format "%: %/n" a theRotV --将结果 打印到 监听器上
c = cylinder() --创建一个圆柱体
c.dir = theRotV --沿矢量方向,看看是什么样子
)