...
void
Scroll pagebreak |
---|
Examples
Code Block | ||
---|---|---|
| ||
// Draw connecting lines around the four head markers, and then |
...
// remove some of them. |
...
setMarkerConnection "LFHD" "LBHD" -color 0 255 0; |
...
setMarkerConnection "LBHD" "RBHD" -color 0 255 0; |
...
setMarkerConnection "RBHD" "RFHD" -color 0 255 0; |
...
setMarkerConnection "LFHD" "RFHD" -color 0 255 0; |
...
...
// Now remove the connection from the LBHD to the RBHD |
...
removeMarkerConnection "LBHD" "RBHD"; |
...
...
// And remove all connections originating from the LFHD |
...
removeMarkerConnection "LFHD"; |
Additional information
Related commands
...