File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
nextage_tutorials/euslisp Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change 102102 (:rarm (send* (send self :rhand-init ) :close-holder args))
103103 (:arms (send* (send self :lhand-init ) :close-holder args)
104104 (send* (send self :rhand-init ) :close-holder args))))
105+ (:open-scissors (&optional (arm :arms ) &rest args)
106+ (case arm
107+ (:larm (send* (send self :lhand-init ) :open-scissors args))
108+ (:rarm (send* (send self :rhand-init ) :open-scissors args))
109+ (:arms (send* (send self :lhand-init ) :open-scissors args)
110+ (send* (send self :rhand-init ) :open-scissors args))))
111+ (:close-scissors (&optional (arm :arms ) &rest args)
112+ (case arm
113+ (:larm (send* (send self :lhand-init ) :close-scissors args))
114+ (:rarm (send* (send self :rhand-init ) :close-scissors args))
115+ (:arms (send* (send self :lhand-init ) :close-scissors args)
116+ (send* (send self :rhand-init ) :close-scissors args))))
105117 )
106118
107119(defun nextage-init ()
You can’t perform that action at this time.
0 commit comments