Update docs to match implementation of $build_and_dump_html_index
[maxima.git] / doc / info / figures / draw_points_joined.mac
blobae16b80c3dab7efa88b922adbe9c2357508dfd1a
1 load("docdraw.mac");
3 docdraw2d("figures/draw_points_joined",
4         xrange = [0,10],
5         yrange = [0,4],
6         point_size = 3,
7         point_type = up_triangle,
8         color = blue,
9         points([[1,1],[5,1],[9,1]]),
10         points_joined = true,
11         point_type = square,
12         line_type = dots,
13         points([[1,2],[5,2],[9,2]]),
14         point_type = circle,
15         color = red,
16         line_width = 7,
17         points([[1,3],[5,3],[9,3]])