File: README.Debian

package info (click to toggle)
euslisp 9.32%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 55,268 kB
  • sloc: ansic: 41,693; lisp: 3,339; makefile: 286; sh: 238; asm: 138; python: 53
file content (27 lines) | stat: -rw-r--r-- 681 bytes parent folder | download | duplicates (3)
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)