nurbsPlane -p 0 0 0 -ax 0 0 1 -w 140 -lr 1 -d 3 -u 70 -v 70 -ch 0; objectMoveCommand; int $i, $myRadius; int $x1, $y1; for ($i=0; $i<360; $i=$i+30) { for ($myRadius=10; $myRadius<=36; $myRadius++) { $x1=($myRadius*cos(deg_to_rad($i)))+36.5; $y1=($myRadius*sin(deg_to_rad($i)))+36.5; print ("angle is : " + $i + ", x is : " + $x1 + ", y is :" + $y1 + "\n"); select -r nurbsPlane1.cv[$x1][$y1]; move -r 0 0 -20; } }; // this script credited to Jonathan Tramba WS03/4