Skip to content

Instantly share code, notes, and snippets.

@garaemon
Created July 9, 2015 09:39
Show Gist options
  • Save garaemon/899cc23ebd424e33aeba to your computer and use it in GitHub Desktop.
Save garaemon/899cc23ebd424e33aeba to your computer and use it in GitHub Desktop.
その場足踏みのfootsteps
(defun sonoba (n)
(let ((footsteps nil))
(dotimes (i n)
(push (make-coords :name :lleg) footsteps)
(push (make-coords :name :rleg :pos (float-vector 0 -200 0)) footsteps))
(reverse footsteps))
)
(send *ri* :set-foot-steps (sonoba 8))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment