---- (define draw-line (lambda (object-1 object-2) (make <Line> :parent (parent-of object-1) :coords (append (head-of object-1) (tail-of object-2)) :arrow 'last) )) (define redraw-line (lambda (object-1 object-2 assoc-list) (let ((line (assq object-2 assoc-list))) (destroy (car (cdr line))) (set-cdr! line (list (draw-line object-1 object-2))) ) )) --- Is there a better way to do this? Thanks for any help. -- Kevin K. Lewis | My opinions may be unreasonable lewikk_at_aud.alcatel.com | but such is the voice of inspirationReceived on Fri Jul 26 1996 - 14:11:56 CEST
This archive was generated by hypermail 2.3.0 : Mon Jul 21 2014 - 19:38:59 CEST