MEL 久しぶりに作成

F_centerをチェックすると センター選択に切り替わる。
オブジェクトを選択しBorderEdgesをクリックすると境界エッジが太線表示される。
オブジェクトを選択しBackfaceCをクリックする裏面が非表示。
任意のオブジェクト、面などを選択しIsolateをチェックすると選択部分のみ表示
頂点などをクリック&ドラッグし連続で個別に移動したい場合Dragをチェック後、頂点選択に切り替え移動ツールを使用すればできる。
以下がMELです。

window -width 500 -height 20 -title "MayaTool001" -rtf 1;
columnLayout -adjustableColumn true;
gridLayout -numberOfColumns 5 -cellWidth 100 -cellHeight 20;
checkBox -height 28 -label "F_center" -offCommand "polySelectConstraint -wholeSensitive on;" -onCommand "polySelectConstraint -wholeSensitive off;";
button -label "BorderEdges" -command "ToggleBorderEdges;";
button -label "BackfaceC" -command "ToggleBackfaceGeometry;";
checkBox -height 28 -label "Isolate" -offCommand "enableIsolateSelect modelPanel4 false;" -onCommand "enableIsolateSelect modelPanel4 true;";
checkBox -height 28 -label "Drag" -offCommand "selectPref -clickDrag false;manipOptions -s 1.5;manipOptions -hs 35;" -onCommand "selectPref -clickDrag true;manipOptions -s 0.1;manipOptions -hs 4;";
setParent..;
showWindow;