View Single Post
  #6  
Old 01-16-2008, 10:25 AM
Wolfgang's Avatar
Wolfgang Wolfgang is offline
Registered User
 
Join Date: Nov 2002
Location: ... near Sindelfingen near Stuttgart, Germany
Posts: 754
Re: Lisp tool for coloring ALMOST perfect...

Quote:
Originally Posted by tom kirkman View Post
Out of curiosity, what is Elan: used for? What does it mean.
It is a lisp package. Same as OLI or LISP or my-package. But in most of the cases the package specification is not needed, because the functions are exported.

so:
PHP Code:
(in-package :my-tools)
(use-
package :oli)
(
progn
  
(SET_PART_COLOR (SD-INQ-CURR-PART) :RGB
    
(GPNT3D (RANDOM 1.0) (RANDOM 1.0) (RANDOM 1.0)) :DONE)
  (
update_screen)) 
would be the same. But then you need a lisp file.. or so. But jaap put it into a new available command, created interactively. Then all the lisp-packages are added explicit.
Reply With Quote