有没有办法以米为单位获得两个物体之间的距离?
我现在正在尝试这个
units.displayType =#metric
myDistance = distance aObject1 aObject2
label1.text = distance as string
当然,这给了我这些对象之间的距离,但以 3dsmax 为单位......
因此,如果有人知道方法或公式,我将不胜感激,谢谢
有没有办法以米为单位获得两个物体之间的距离?
我现在正在尝试这个
units.displayType =#metric
myDistance = distance aObject1 aObject2
label1.text = distance as string
当然,这给了我这些对象之间的距离,但以 3dsmax 为单位......
因此,如果有人知道方法或公式,我将不胜感激,谢谢
maxscript帮助中有一个专门用于此的完整主题,Units Struct - Accessing System and Display Units
您需要的代码如下所示:
label1.text = units.formatValue myDistance