Etape 6

Selectionner toutes les feuilles et utiliser le script suivant pour contraindre en "aim" chaque feuille vers chaque locator

string $command;

string $list[]=`ls -sl`;

int $i,$size=size($list);

for ($i=0; $i < $size; ++$i)

{

$command = "select -r locator_"+$i ;eval $command;

$command = "select -tgl leaf__"+$i ;eval $command;

$command = "aimConstraint -weight 1 -aimVector 1 0 0 -upVector 0 1 0 -worldUpVector 0 1 0";eval $command;

}