1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
EusLisp for Debian
==================
This package contains the EusLisp interpreter for intelligent robot
programming.
Files
=====
EUSDIR is set to /usr/share/euslisp, and all source programs are
installed under *eusdir* from euslisp-dev package.
Please note that the shared library includes libeusgeo.so, libeusx.so
and libeusgl.so are installed user /usr/lib/euslisp/, to met with
Debian release policies.
How to run sample program
=========================
$ eusx
eusx$ load "demo/view"
eusx$ setq a (make-cube 50 40 30)
eusx$ draw a
eusx$ setq b (make-cylinder 10 50)
eusx$ setq c (body+ a b)
eusx$ dotimes (i 30) (send c :rotate 0.1 :x) (cls) (hid c) (unix:sleep 1000)
|