repo.or.cz
/
maxima.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
descriptive.mac: declare local variable to avoid possibility of name collision.
[maxima.git]
/
doc
/
info
/
figures
/
draw_points6.mac
blob
0d1bb760c8dfa8988c20b4aba1a148c2a187aea7
1
load("docdraw.mac");
2
3
x: make_array (fixnum, 10) $
4
y: make_array (fixnum, 10) $
5
z: make_array (fixnum, 10) $
6
for i:0 thru 9 do (
7
x[i]: random(10),
8
y[i]: random(10),
9
z[i]: random(10) ) $
10
docdraw3d("figures/draw_points6",
11
points(x,y,z))$
12
kill(x)$kill(y)$kill(z)$