0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Mayaで頂点のx座標だけ全部0にするだけのMEL

Last updated at Posted at 2021-05-08

Autodesk Mayaでモデリングしていると
何故かXキーを押してスナップモードにしていても頂点のx座標が微妙に0になってくれないことが時々ある。
何故なのかよく分からない…。

mayaのゴミ野郎.JPG

標準機能で直せるのかもしれないけど、直し方がよく分かららないのでいつも、自分は頂点を選択した状態で以下のようなMELを実行して解決している。
どこかに保存して置いて毎度毎度忘れてしまうのでQiitaに投稿しておこう。

string $vtxName[] = `ls -sl`;
string $vtxNo[] = `filterExpand -selectionMask 31 $vtxName`;
for($n in $vtxNo)
{
  float $pos[] = `xform -q -ws -t $n`;
  xform -t 0 $pos[1] $pos[2] $n;
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?