Find more posts tagged with
Sort by:
1 - 6 of
61
#
# to loop trough many crucial lines at one selection :
*createmarkpanel lines 1 'Select all lines to put temp-node at center';
set line_sh [ hm_getmark lines 1 ];
set ile_li [ llength $line_sh ]
if { ! [ Null line_list ] } {
for {set i 0} {$i <$ile_li} {incr i} {
set liID [ lindex $line_sh $i ] ;
eval *createmark lines 1 $liID
*createbestcirclecenternode lines 1 0 1 0;
*clearmark lines 1
}
};
puts "Enter: tcl is harder than you think"
Open command.tcl file you will see the script