语法
- float convert(coordinate, fromSystem, toSystem, type, x, y, z)
- float[] convert(fromSystem, toSystem, type, coordinates)
参数
- coordinate - 选择器{x | y | z} - 要转换的坐标组件。
- fromSystem - 选择器{scope | pivot | object | world} - 要转换的坐标系。
- toSystem - 选择器{scope | pivot | object | world} - 要转换到的坐标系。
- type - 选择器{pos | orient} - 将 coordinates 数组或 (x, y, z) 元组的解释选择为坐标或角度。
- x, y, z - 浮点型
coordinates - float[]
fromSystem 中要转换为 toSystem 的位置(坐标)/方向(角度,以度为单位)。
返回
元组 (x, y, z) 的选定 coordinate 组件或 coordinates 数组,从 fromSystem 坐标系转换为 toSystem 坐标系。 坐标可以描述角度或位置。
描述
convert 函数用于在不同坐标系之间转换位置和方向。
相关内容
示例
|