在 Autodesk Maya 中查找中心点
如何在 Autodesk Maya 中找到中心点...我知道使用中心枢轴,但我找不到该点..如何找到使用 Autodesk Maya 创建的 3D 对象的确切坐标?谢谢。
how to find the centre point in autodesk maya...I know use the centre pivot but i can't find the point..how to find the exact coordinate of the 3d object created using autodesk maya? thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(8)
只需进入菜单,修改>中心枢轴。这将使您的枢轴转到模型的中心。
Just go to the menus, Modify > Center Pivot. This will make your pivot go to the center of your model.
这个问题实际上有两种可能的答案。
对象的“中心”可能意味着:
对象边界框的中心:您可以按如下方式获得(使用 python)
对象枢轴的位置:这与对象的位置不同,因为您可以移动轴而不更改 Maya 报告的平移编号。世界空间枢轴位置可以通过以下方式获得:
There are actually two possible answers to the question.
The 'center' of the object could mean:
The center of the object's bounding box : you could get this as follows (using python)
the location of the object's pivot: This is not the same as the object's position, since you can move the pivot without changing the translation number that maya reports. The world-space pivot location can be gotten with:
如果您对中心枢轴命令放置枢轴的位置感到满意,并且只想知道它在世界空间中的位置,则可以
使用 PyMEL 执行以下操作(假设您已选择对象):
或使用 maya.cmds:
或使用梅尔
If you're happy with where the center pivot command puts the pivot and you just want to know where in worldspace it is, you could do the following (assuming you have the object selected)
using PyMEL:
or using maya.cmds:
or using MEL
实际上有一个名为
objectCenter()
的命令,这将为您提供特定点或对象的真实世界空间。
将 maya.cmds 导入为 cmd
http://download.autodesk.com /global/docs/maya2013/en_us/CommandsPython/index.html
香农
There's actually a command called
objectCenter()
This will give you true world space of a specific point or object.
import maya.cmds as cmds
http://download.autodesk.com/global/docs/maya2013/en_us/CommandsPython/index.html
Shannon
选择对象并选择:动画>动画创建变形器>簇。
现在,簇变形器将出现在对象的精确中心,用“C”表示,您可以将顶点捕捉到需要居中的任何簇。簇的实际中心点将位于“C”下方。
Select the object and select: Animation > Create Deformers > Cluster.
A cluster deformer will now appear at the exact center of your object, denoted by a 'C', you can vertex-snap to the cluster whatever you need to have centered. The actual centerpoint of the cluster will be just below the 'C'.
在 Maya 中选择对象并在右侧面板中查看。
In maya select object and look in panel on the right.
选择对象,然后在脚本编辑器中运行此命令:
这将在历史记录面板中打印 X、Y 和 Z 坐标。
Select the object, and then run this in the script editor:
This will print the X, Y, and Z coordinates in the history panel.
选择对象“修改中心轴..”
如果不起作用,只需选择对象并按“插入键”,在您的键中
木板。然后它将允许您设置枢轴..只需拖放您要设置的位置...
如果您有任何疑问,请随时分享....
Select the object, "Modify-Center pivot.."
In case of not working, just select the object and press 'Insert key, in your key
board. then it will allow you to set pivot..just drag and drop the place where u want to set...
If you have any doubt feel free to share....