|
From: Robert D. <rob...@gm...> - 2016-03-31 19:30:12
|
On 2016-03-31, Gunter Königsmann <gu...@pe...> wrote: > Draw by itself works fine: > The same is true for implicit_plot: > But after doing this repeating the draw command results in: > > Maxima encountered a Lisp error: > > EVAL/APPLY: Too few arguments (6 instead of at least 7) given to > PRINT-SQUARE Well, since implicit_plot is just one Lisp file, and draw contains a lot of Lisp, one could avoid this particular error by putting in suitable CL package incantations. It's just necessary to define a symbol package for each one, put (in-package :my-package) in each Lisp file, and (I think) export the user-visible functions or other symbols. It is just a small matter of programming. best Robert Dodier |