/usr/share/maxima/5.41.0/tests/docdraw.mac is in maxima-test 5.41.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | docdraw2d(name,[x]):=if wxplot_size # 'wxplot_size then
apply('wxdraw2d,x)
else
(
apply('draw2d,x),
print("Press <enter> to continue."),
readline(stdin)
)$
docdraw3d(name,[x]):=if wxplot_size # 'wxplot_size then
apply('wxdraw3d,x)
else
(
apply('draw3d,x),
print("Press <enter> to continue."),
readline(stdin)
)$
docdraw(name,[x]):=if wxplot_size # 'wxplot_size then
apply('wxdraw,x)
else
(
apply('draw,x),
print("Press <enter> to continue."),
readline(stdin)
)$
|