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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557
|
\input texinfo @c -*- Mode: Texinfo; Mode: auto-fill -*-
@c %**start of header
@setfilename cl-plplot.info
@settitle Cl-plplot User Manual
@syncodeindex tp cp
@syncodeindex fn cp
@c=======================================================================
@copying
Copyright @copyright{} 2008 Hazen P. Babcock <hbabcockos1 at mac.com>
@quotation
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the ``Software''), to deal in the Software without
restriction, including without limitation the rights to use, copy,
modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
@sc{The software is provided ``as is'', without warranty of any kind,
express or implied, including but not limited to the warranties of
merchantability, fitness for a particular purpose and noninfringement.
In no event shall the authors or copyright holders be liable for any
claim, damages or other liability, whether in an action of contract,
tort or otherwise, arising from, out of or in connection with the
software or the use or other dealings in the software.}
@end quotation
@end copying
@titlepage
@title Cl-plplot User Manual
@vskip 0pt plus 1filll
February, 2008
@page
@vskip 0pt plus 1fill
@insertcopying
@end titlepage
@c=======================================================================
@menu
* Introduction::
* Installation::
* The Low Level Interface to PLplot::
* The High Level Plotting Package::
* Index::
@end menu
@c=======================================================================
@node Introduction
@chapter Introduction
Cl-plplot provides a CFFI based interface to the PLplot graphics
library. The PLplot graphics library supports the drawing of many different
types of 2D and 3D graphs using a large variety of output devices including
X11, postscript and png. PLplot can also be used to make scaled drawing,
diagrams, etc...
At present, cl-plplot consists of two packages, one is low-level interface
to the PLplot library and the other is high-level plotting interface that
attempts to make using PLplot with Lisp easier. It has been tested on
OS-X and debian linux with SBCL. Since it interfaces to the PLplot
library using CFFI, it should work with any combination of lisp
implementation and operating system that is supported by CFFI.
@c=======================================================================
@node Installation
@chapter Installation
Cl-plplot depends on a working installation of the PLplot plotting
library. This is available as a debian package, but it is also not too
hard to compile from source on most systems. You will need PLplot
version 5.8.0 or later.
Once you have installed the PLplot library cl-plplot will hopefully not
have any trouble finding the library. If you do encounter difficulties
with cl-plplot finding the PLplot library, then the you will probably
need to edit the function load-libraries in /cl-plplot/src/system. All
that should be necessary is to provide the appropriate path to the
library file 'libplplotd'.
@c=======================================================================
@node The Low Level Interface to PLplot
@chapter The Low Level Interface to PLplot
@section Introduction
The low level interface @code{:cl-plplot-system}
provides both 'direct' and 'wrapped' access to
the functions in the PLplot library. What this means is that each of
the functions in the PLplot library is available in two ways. The
'direct' form expects that all arguments are in a form appropriate
for handing off to the C library function. In cases where the C
function returns an array or a string it will be returned as C
pointer. On the other hand, the 'wrapped' form will automatically
convert Lisp variables to the appropriate C variables, fill in
any array size arguments and then call the 'direct' form.
In the case where the C function returns an
array or a string the 'wrapped' form will automatically convert
this into the appropriate Lisp type. Furthermore, the 'wrapped' form
takes care of allocating and deallocating the necessary memory to
make the C function call. The 'wrapped' form is recommended for
general use, but the 'direct' form is also available in situations
where speed may be important or you are already using C pointers
and do not want to pay the overhead of converting them back and
forth to Lisp variables.
@section Example (the PLplot arrows function)
@lisp
(defcfun ("plarrows" c-plarrows)
:void
(u *plflt)
(v *plflt)
(x *plflt)
(y *plflt)
(n plint)
(scale plflt)
(dx plflt)
(dy plflt))
(defun plarrows (u v x y scale dx dy)
(let ((c-u (make-ptr u :double #'(lambda (x)
(coerce x 'double-float))))
(c-v (make-ptr v :double #'(lambda (x)
(coerce x 'double-float))))
(c-x (make-ptr x :double #'(lambda (x)
(coerce x 'double-float))))
(n (length y))
(c-y (make-ptr y :double #'(lambda (x)
(coerce x 'double-float)))))
(unwind-protect
(c-plarrows c-u
c-v
c-x
c-y
(funcall #'(lambda (x) (round x)) n)
(funcall #'(lambda (x)
(coerce x 'double-float)) scale)
(funcall #'(lambda (x)
(coerce x 'double-float)) dx)
(funcall #'(lambda (x)
(coerce x 'double-float)) dy))
(progn
(foreign-free c-u)
(foreign-free c-v)
(foreign-free c-x)
(foreign-free c-y)))))
@end lisp
@subheading Notes
@itemize
@item
The name of the PLplot function as defined in the PLplot manual
is used for the 'wrapped' form and the name of the 'direct' has
@code{c-} appended onto the front. This convention is followed
for most PLplot functions.
@item
The function @code{make-ptr} handles the creation of a C array from
a Lisp vector.
@item
The argument @code{n} required by PLplots arrows function is
automatically determined from the length of the vector y
and does not need to be passed in.
@item
The call to the PLplot library function is wrapped with
@code{unwind-protect} so that if the C function fails the memory
occupied by @code{c-u}, @code{c-v}, @code{c-x} and @code{c-y}
is still freed.
@end itemize
@section Exceptions
@itemize
@item
There are a few exceptions to the above naming conventions
for the 'direct' and 'wrapped' forms. Typically these occur
for functions that have very complicated arguments, for example
functions that required callbacks. When in doubt the best
approach is probably to peruse @code{src/system/api.lisp} where
all of the PLplot functions are defined.
@item
Not all of the PLplot library functions are available in cl-plpot.
Some were deemed to be too esoteric, or better handled by an
equivalent Lisp function. However, if you find a function that
you feel should be supported please let me know.
@end itemize
@section Supported PLplot Functions
The current best reference is the manual that comes with PLplot.
TODO: a list of the supported PLplot functions and their arguments.
@c=======================================================================
@node The High Level Plotting Package
@chapter The High Level Plotting Package
@section Introduction
The high level interface @code{:cl-plplot} tries to make PLplot
a little more Lispy using a CLOS based approach. You create
window objects, then associate axis objects, text objects and
plot objects to the window objects. When everything is set you
call the @code{render} method on the window object to display
the plot using the display device of your choice.
This approach was adopted in part to make graphing easier in
a multi-threaded environment. The PLplot library supports drawing
multiple graphs simultaneously using the concept of plot streams.
However using these in a multi-threaded environment would be a
challenge as just about every call to a PLplot library function
would have to prefaced with a function call to set the correct stream.
As all the calls to the PLplot library are gauranteed to happen
during @code{render} one only needs to threadlock around this method
to avoid confusing PLplot.
@section The Object Layout
@example
window object
|--axis object (1 for the x axis, 1 for the y-axis)
| |--axis-label object (0 or more per axis object)
| |--text-item object (1 per axis-label object)
|--axis-label object (0 or more)
|--plot object (0 or more)
|--text-label object (0 or more)
| |--text-item object (1 per text-label object)
|--color-table object (1 per window)
|--extended-color-table object (1 per window)
@end example
Note that this is @strong{NOT} an inheritance diagram. Each
of the above objects is a distinct entity.
@section Object Definitions
@subheading The Window Object
This is the main object without which it is impossible
to actually create a plot. It always contains references to two
axis objects, one for the x-axis and one for the y-axis. It can
also contain references to additional axis-label objects that
might be used to provide a title for the plot as well as any
other axis labeling that is needed, references to plot objects
that will be drawn in the window and references to text labels
to draw in the window. When you call @code{render} on a window
object it determines the coordinate system and size of the
plotting rectangle in which the plots will appear, then calls
the @code{render} methods of the axis-label, text-label and
plot objects to create the final plot.
@subheading The 3D-Window Object
This is the main window object for drawing 3D plots. At
present these include surface mesh plots (3D-mesh) and
solid surface plots (surface-plot). This object inherits
from the Window object and adds a z-axis as well as
altitude and azimuthal viewing angles.
@subheading The Axis Object
This object is used to set minimum
and maximum values to plot in the window, as well as
specifying how to label the axis, major tick interval,
minor tick interval, ticks, grid, ...
@subheading The Axis-label Object
This object is used to draw text relative
to one of the sides of the plotting rectangle. It specifies
where to draw the text relative to one of the edges of the
rectangle as well as in what orientation.
@subheading The 3D-axis-label Object
This object inherits from the axis-label object. It uses a
different convention for specifying which axis to label.
@subheading The Text-label Object
This is like the axis-label object except
that it is typically drawn inside the plotting rectangle
and its location is determined by the plot coordinate
system.
@subheading The 3D-text-label Object
This object inherits from the text-label objects. It is
used to draw '3D' text and as such requires a number of
additional parameters to specify how to draw the text.
@subheading The Text-item Object
This object is used to actually draw the
text. It specifies font, size, color, superscript, ...
@subheading The Plot Object
This object is used to convert data into a
plot. In its most generic form it contains two functions,
one that returns its preference for the x and y (and z if
relevant) ranges of the window coordinate system and another
that draws the object in the current window using
@code{:cl-plplot-system} function calls. Specialized forms
currently include x-y-plot, bar-graph and contour-plot.
@subheading The 3D Plot Object
This object inherits from the plot object. Specialized forms
currently include the 3D-mesh and surface-plot.
@subheading The Color-table Object
This object handles the use of PLplot's color map 0. Typically it
will consist of 16 colors, each of with contains red, green and blue
values as well as symbol (like @code{:blue}) that you can use to refer
to the color. This color table is used by PLplot to draw essentially
all of the 'basic' items, i.e. lines, text, axises. You can have more
then 16 colors but not all of the graphics devices will handle that
many colors. Some in fact may only handle black and white.
@subheading The Extended-color-table Object
This object handles the use of PLplot's color map 1. Typically this
color table will contain anywhere between 128 to 256 different colors,
though, again, not all graphics devices will handle so many
colors. It used for shading plots, such as contour plots, where it is
often desirable to have continuous range of colors rather than a few
blocky colors.
@section Examples
Note: These are also available in @code{src/examples/window-examples.lisp}.
@subheading X versus Y plots
@lisp
(defun x-y-plot ()
(let* ((x (my-make-vector 40 #'(lambda(x) (* 0.1 x))))
(y (my-make-vector 40 #'(lambda(x) (* (* 0.1 x) (* 0.1 x)))))
(p (new-x-y-plot x y))
(w (basic-window)))
(add-plot-to-window w p)
(render w "xwin")))
@end lisp
The vectors x and y are created using the function
@code{y = x^2}. A x-y-plot object is then created to plot the vector x versus the
vector y. Finally a window object is created in which the x-y-plot
object p can be plotted. The x-y-plot object p is added to the window
w by the function @code{add-plot-to-window}. Then the window is drawn
by calling the @code{render} method and specifying what PLplot graphics
device to use for the graphical output ('xwin' is the X11 graphics device).
@subheading Bar Graphs
@lisp
(defun bar-graph ()
(let* ((y (my-make-vector 10 #'(lambda(x) (* (* 0.2 x) (* 0.2 x)))))
(b (new-bar-graph nil y :fill-colors (vector :grey)))
(w (basic-window)))
(add-plot-to-window w b)
(render w "xwin")))
@end lisp
A vector y is created using the function @code{y = (0.2 * x)^2}. This
vector is used to make a bar-graph object in which each of the bars
will be filled with the color grey. As in the X versus Y plot example,
a window w is created, the bar-graph object b is added to this window
and then the window is rendered using the X11 graphics device.
@subheading Contour Plots
@lisp
(defun contour-plot ()
(let ((c (new-contour-plot
(my-make-matrix 50 50 #'(lambda (x y)
(my-contour-plot-fn x y)))
:x-min 0.0 :x-max 1.0 :y-min 0.0 :y-max 1.0
:fill-type :smooth))
(w (basic-window)))
(add-plot-to-window w c)
(render w "xwin")))
@end lisp
A contour plot object is created from a 2D matrix of
data. Additionally the coordinate system of the matrix is specified
with @code{:x-min}, @code{:x-max}, @code{:y-min} and @code{:y-max} and
the contour plot fill type is specified with @code{:fill-type}. The
function @code{my-make-matrix} is defined in @code{src/examples/window-examples.lisp}.
@subheading 3D mesh plots
@lisp
(defun 3d-plot-1 ()
(let ((c (new-3d-mesh nil nil
(my-make-matrix 50 50 #'(lambda (x y)
(my-contour-plot-fn x y)))
:line-color :blue))
(w (basic-3d-window :altitude 30 :azimuth 60)))
(add-plot-to-window w c)
(render w "xwin")))
@end lisp
A 3D-mesh object is created from a 2D matrix of
data. A 3D-window object is created in which to draw the 3D-plot
object, with the viewing angle specified by @code{:altitude} and
@code{:azimuth}. The plot is added to the window and is then
rendered using the X11 graphics device.
@subheading 3D surface plots
@lisp
(defun surface-plot-1 ()
(let ((c (new-surface-plot nil nil
(my-make-matrix 50 50 #'(lambda (x y)
(my-contour-plot-fn x y)))
:line-color :blue))
(w (basic-3d-window :altitude 30 :azimuth 60)))
(add-plot-to-window w c)
(render w "xwin")))
@end lisp
This example is essentially the same as the mesh plot example,
except that we now create a surface-plot object.
@section Cl-plplot Functions in Alphabetical order
@subheading add-axis-label-to-axis
@cindex add-axis-label-to-axis
@subsubheading Argument List
(a-axis a-axis-label)
@subsubheading Documentation
adds a-axis-label to a-axis.
@sp 2
@subheading add-color-to-color-table
@cindex add-color-to-color-table
@subsubheading Argument List
(a-color-table new-color)
@subsubheading Documentation
adds a new color #(r g b :smybol) to the end of a color table.
@sp 2
@subheading add-plot-to-window
@cindex add-plot-to-window
@subsubheading Argument List
(a-window a-plot)
@subsubheading Documentation
add-plot-to-window, adds a-plot to a-window.
@sp 2
@subheading add-text-label-to-window
@cindex add-text-label-to-window
@subsubheading Argument List
(a-window a-text-label)
@subsubheading Documentation
add-text-label-to-window, adds a-text-label to a-window.
@sp 2
@subheading backspace
@cindex backspace
@subsubheading Argument List
none.
@subsubheading Documentation
This (and greek-char, hershey-char, italic-font, normal-font,
number-symbol, overline, roman-font, script-font, subscript,
superscript, underline and unicode-char) exist to insert PLplot escape
sequences into a string. Cl-plplot uses the default PLplot escape
character ``#''.
@sp 2
@subheading basic-window
@cindex basic-window
@subsubheading Argument List
(&key (x-label x-axis) (y-label y-axis) (title cl-plplot) x-axis-min
x-axis-max y-axis-min y-axis-max (background-color *background-color*) (foreground-color *foreground-color*))
@subsubheading Documentation
creates a basic window object with ready-to-go axises.
@sp 2
@subheading basic-3d-window
@cindex basic-3d-window
@subsubheading Argument List
(&key (x-label x-axis) (y-label y-axis) (z-label z-axis) (title cl-plplot) x-axis-min
x-axis-max y-axis-min y-axis-max z-axis-min z-axis-max (altitude 60)
(azimuth 30) (background-color *background-color*) (foreground-color *foreground-color*))
@subsubheading Documentation
creates a basic 3D window object with ready-to-go axises.
@sp 2
@subheading bring-to-front
@cindex bring-to-front
@subsubheading Argument List
(a-window a-plot)
@subsubheading Documentation
organizes the plots so that a-plot is drawn on top.
@sp 2
@subheading default-color-table
@cindex default-color-table
@subsubheading Argument List
none.
@subsubheading Documentation
returns the default color table.
@sp 2
@subheading edit-3D-mesh
@cindex edit-3D-mesh
@subsubheading Argument List
(a-3d-mesh &key line-width line-style line-color grid-type
contour-options curtain)
@subsubheading Documentation
Edits the visual properties of a 3D-mesh plot object.
@itemize @bullet
@item
Set the line width with :line-width (integer, 0 means no line).
@item
Set the line style with :line-style (integer between 1 and 8).
@item
Set the line color with :line-color symbol.
@item
Set the grid type with :grid-type to one of (:gridx, :gridy or
:gridxy).
@item
Set the contour options with :contour-options to one of
(:magnitude-contour, :base-contour or :both).
@item
Set the whether or not display a curtain with :curtain
@end itemize
@sp 2
@subheading edit-3D-window
@cindex edit-3D-window
@subsubheading Argument List
(a-3d-window &key x-axis y-axis z-axis title foreground-color
background-color window-line-width window-font-size viewport-x-min
viewport-x-max viewport-y-min viewport-y-max plots text-labels
color-table altitude azimuth)
@subsubheading Documentation
edit-3D-window, edits the visual properties of a 3D-window.
@itemize @bullet
@item
Set x-axis to a new object of type axis with :x-axis.
@item
Set y-axis to a new object of type axis with :y-axis.
@item
Set z-axis to a new object of type axis with :z-axis.
@item
Set title to a new object of type axis-label with :title.
@item
Set the foreground color with :foreground-color.
@item
Set the background color with :background-color.
@item
Set the pen width for drawing the border with :window-line-width.
@item
Set the font size for the tick labels with :window-font-size.
@item
Set the location of the left border with :viewport-x-min.
@item
Set the location of the right border with :viewport-x-max.
@item
Set the location of the bottom border with :viewport-y-min.
@item
Set the location of the top border with :viewport-y-max.
@item
Set :plots to a list of plot objects to change the plots associated
with a window.
@item
Set :text-labels to a list of text-label objects to change the
text-labels associated with a window.
@item
Set :color-table to a new color table object to change the colors of a
plot.
@item
Set the observer altitude in degrees with :altitude.
@item
Set the observer azimuth in degrees with :azimuth.
@end itemize
@sp 2
@subheading edit-axis
@cindex edit-axis
@subsubheading Argument List
(a-axis &key axis-min axis-max major-tick-interval minor-tick-number properties)
@subsubheading Documentation
edit-axis, edits an axis.
@itemize @bullet
@item
set the minimum value with :axis-min.
@item
set the maximum value with :axis-max.
@item
set the spacing between major ticks with :major-tick-interval.
@item
set the spacing between minor ticks with :minor-tick-interval.
@item
set the properties with :properties. this should be a list containing zero of more of the following symbols:
@itemize @space
@item
:draw - draw axis on both sides of the window.
@item
:draw-bottom/left - draw axis on the bottom/left side of the window.
@item
:draw-top/right - draw axis on the top/right side of the window.
@item
:fixed-point - use fixed point labels.
@item
:major-tick-grid - draw a grid on the graph at the major ticks.
@item
:minor-tick-grid - draw a grid on the graph at the minor ticks.
@item
:invert-ticks - draw ticks inward rather than outwards.
@item
:log-axis - draw the axis on a log scale.
@item
:major-tick-labels-above/right - draw the tick labels above/right of
the ticks.
@item
:major-tick-labels-below/left - draw the tick labels below/left of the
ticks.
@item
:minor-ticks - draw minor ticks.
@item
:major-ticks - draw major ticks.
@end itemize
@end itemize
@sp 2
@subheading edit-axis-label
@cindex edit-axis-label
@subsubheading Argument List
(a-axis-label &key axis-text-item side displacement location orientation)
@subsubheading Documentation
edit-axis-label, edits a axis-label object.
@itemize @bullet
@item
set axis-text-item to a new object of class text-item with
:axis-text-item.
@item
set which axis to draw the label on with :side.
@item
set the displacement from the edge of the the graph with
:displacement.
@item
set the location with along the side of the graph with :location.
@item
set the orientation with (:parallel or :perpendicular) with :orientation.
@end itemize
@sp 2
@subheading edit-3D-axis-label
@cindex edit-3D-axis-label
@subsubheading Argument List
(a-axis-label &key axis-text-item side displacement location
orientation primary/secondary)
@subsubheading Documentation
edit-3D-axis-label, edits a 3D-axis-label object.
@itemize @bullet
@item
set axis-text-item to a new object of class text-item with
:axis-text-item.
@item
set which axis to draw the label on with :side (:x, :y or :z).
@item
set the displacement from the edge of the the graph with
:displacement.
@item
set the location with along the side of the graph with :location.
@item
set the orientation with (:parallel or :perpendicular) with :orientation.
@item
Set which axis to label (:primary or :secondary) with :primary/secondary
@end itemize
@sp 2
@subheading edit-bar-graph
@cindex edit-bar-graph
@subsubheading Argument List
(a-bar-graph &key side-by-side line-colors fill-colors line-width filled)
@subsubheading Documentation
edit-bar-graph, edits the visual properties of a bar-graph.
@itemize @bullet
@item
set whether the bars are plotted side-by-side or on top of each other
with :side-by-side.
@item
set the line colors of the bars with :line-colors.
@item
set the fill colors of the bars with :fill-colors.
@item
set the line width of the bars with :line-width.
@item
set whether or not the bars are filled with :filled.
@end itemize
@sp 2
@subheading edit-contour-plot
@cindex edit-contour-plot
@subsubheading Argument List
(a-contour-plot &key line-color line-width fill-type fill-colors)
@subsubheading Documentation
edit-contour-plot, edits the visual properties of a contour plot.
@itemize @bullet
@item
set the line color with :line-color (this should be a color symbol in
the current color table).
@item
set the line width with :line-width (integer, 0 means no line).
@item
set the fill-type with :fill-type (:none :block :smooth).
@item
set the fill-colors with :fill-colors (should be a vector of color symbols)
@end itemize
@sp 2
@subheading edit-surface-plot
@cindex edit-surface-plot
@subsubheading Argument List
(a-surface-plot &key line-width line-style line-color light-source
surface-options)
@subsubheading Documentation
edit-surface-plot, edits the visual properties of a solid surface
plot.
@itemize @bullet
@item
Set the line width with :line-width (integer, 0 means no line).
@item
Set the line style with :line-style (integer between 1 and 8).
@item
Set the line color with :line-color symbol.
@item
Move the light-source to a new position with :light-source #(x y z).
@item
Change the surface-options with :surface-options to a list including
zero or more of:
@itemize @space
@item
:faceted
@item
:base-contours
@item
:surface-contours
@item
:curtain
@item
:magnitude-coloring
@end itemize
@end itemize
@sp 2
@subheading edit-text-item
@cindex edit-text-item
@subsubheading Argument List
(a-text-item &key the-text text-color text-justification font-size)
@subsubheading Documentation
edit-text-item, edits a text-item object.
@itemize @bullet
@item
set the text with :text.
@item
set the color of the text with :text-color symbol.
@item
set the justification with :text-justification (0.0 = left justified,
1.0 = right justified).
@item
set the font-size with :font-size (relative to the default size).
@end itemize
@sp 2
@subheading edit-text-label
@cindex edit-text-label
@subsubheading Argument List
(a-text-label &key label-text-item text-x text-y text-dx text-dy)
@subsubheading Documentation
edit-text-label, edits a text-label object.
@itemize @bullet
@item
set text-item to a new object of class text-item with
:label-text-item.
@item
set the x location of the text with :text-x.
@item
set the y location of the text with :text-y.
@item
set dx for drawing text at an angle with :text-dx.
@item
set dy for drawing text at an angle with :text-dy.
@end itemize
@sp 2
@subheading edit-3D-text-label
@cindex edit-3D-text-label
@subsubheading Argument List
(a-text-label &key label-text-item text-x text-y text-z text-dx
text-dy text-dz text-sx text-sy text-sz)
@subsubheading Documentation
edit-3D-text-label, edits a 3D-text-label object.
@itemize @bullet
@item
set text-item to a new object of class text-item with
:label-text-item.
@item
set the x location of the text with :text-x.
@item
set the y location of the text with :text-y.
@item
set the z location of the text with :text-z.
@item
set dx for drawing text at an angle with :text-dx.
@item
set dy for drawing text at an angle with :text-dy.
@item
set dz for drawing text at an angle with :text-dz.
@item
set sx for shearing text with :text-sx.
@item
set sy for shearing text with :text-sy.
@item
set sz for shearing text with :text-sz.
@end itemize
@sp 2
@subheading edit-window
@cindex edit-window
@subsubheading Argument List
(a-window &key x-axis y-axis title foreground-color background-color window-line-width window-font-size viewport-x-min viewport-x-max viewport-y-min viewport-y-max plots text-labels color-table)
@subsubheading Documentation
edit-window, edits a window object.
@itemize @bullet
@item
set x-axis to a new object of type axis with :x-axis.
@item
set y-axis to a new object of type axis with :y-axis.
@item
set title to a new object of type axis-label with :title.
@item
set the foreground color with :foreground-color.
@item
set the background color with :background-color.
@item
set the pen width for drawing the border with :window-line-width.
@item
set the font size for the tick labels with :window-font-size.
@item
set the location of the left border with :viewport-x-min.
@item
set the location of the right border with :viewport-x-max.
@item
set the location of the bottom border with :viewport-y-min.
@item
set the location of the top border with :viewport-y-max.
@item
set :plots to a list of plot objects to change the plots associated
with a window.
@item
set :text-labels to a list of text-label objects to change the
text-labels associated with a window.
@item
set :color-table to a new color table object to change the colors of a plot.
@end itemize
@sp 2
@subheading edit-window-axis
@cindex edit-window-axis
@subsubheading Argument List
(a-window which-axis &key axis-min axis-max major-tick-interval minor-tick-number properties)
@subsubheading Documentation
allows the user to edit the axis of a window. which-axis should be one of the symbols :x or :y. see edit-axis for a more detailed explanation of the meaning of the different key words.
@sp 2
@subheading edit-x-y-plot
@cindex edit-x-y-plot
@subsubheading Argument List
(a-x-y-plot &key line-width line-style symbol-size symbol-type color)
@subsubheading Documentation
edit-x-y-plot, edits the visual properties of a x-y-plot.
@itemize @bullet
@item
set the line width with :line-width (integer, 0 means no line).
@item
set the line style with :line-style (integer between 1 and 8).
@item
set the symbol size with :symbol-size (1.0 is the defaul size, 0.0
means no symbols).
@item
set the symbol type with :symbol-type (integer or nil to use the
default types).
@item
set the color with :color symbol.
@end itemize
@sp 2
@subheading get-cursor
@cindex get-cursor
@subsubheading Argument List
(a-window device &key (size-x 600) (size-y 500))
@subsubheading Documentation
get the location (in window coordinates) of the next mouse click. in order to do this the window must first be rendered so that the user has something to click on.
@sp 2
@subheading greek-char
@cindex greek-char
@subsubheading Argument List
none.
@sp 2
@subheading hershey-char
@cindex hershey-char
@subsubheading Argument List
none.
@sp 2
@subheading italic-font
@cindex italic-font
@subsubheading Argument List
none.
@sp 2
@subheading new-3D-mesh
@cindex new-3D-mesh
@subsubheading Argument List
(data-x data-y data-z &key contour-levels (copy t) (line-width 1)
(line-style 1) (line-color *foreground-color*) (grid-type :grid-xy)
contour-options curtain)
@subsubheading Documentation
new-3D-mesh, creates a new 3D mesh (surface) plot object.
@itemize @bullet
@item
data-x specifies the x values of the points in data-z. If data-x is
nil then data-z will be plotted against its row index in x.
@item
data-y specifies the y avlues of the points in data-z. If data-y is
nil then data-z will be plotted against its column index in y.
@item
data-z is a 2D array of z values for the plot.
@item
contour-levels specifies the levels at which to draw contours, if
desired. If this is not specified, default values are chosen.
@item
If copy is true then copies of data-x, data-y and data-z will be made,
otherwise reference will be kept to the original vectors.
@item
line-width should be an integer line width, or zero if no line is
desired
@item
line-style specifies what style line to draw (if a line is drawn),
this should be a number between 1 and 8.
@item
line-color is the color to use for the lines in the plot.
@item
grid-type should be one of :gridx, :gridy or :gridxy. This specifies
whether to draw lines only in x, only in y, or in both dimensions
between the data points.
@item
contour-options should be one of nil, :magnitude-contour,
:base-contour or :both. nil - no contours.
@itemize @space
@item
:magnitude-contour - draw contour lines on the plot.
@item
:base-contour - draw contour lines on the x-y plane below the plot.
@item
:both - draw both magnitude and base contours.
@end itemize
@item
curtain should be t or nil. This specifies whether to draw a 'curtain'
around the edges of the plot."
@end itemize
@sp 2
@subheading new-3D-window
@cindex new-3D-window
@subsubheading Argument List
(&key x-axis y-axis z-axis title (window-line-width 1.0)
(window-font-size *font-size*) (foreground-color *foreground-color*)
(background-color *background-color*) (viewport-x-min 0.1)
(viewport-x-max 0.9) (viewport-y-min 0.1) (viewport-y-max 0.9)
plots text-labels color-table (altitude 60) (azimuth 30))
@subsubheading Documentation
new-3D-window, creates and returns a new 3D-window object.
@itemize @bullet
@item
x-axis is a object of type axis.
@item
y-axis is a object of type axis.
@item
z-axis is a object of type axis.
@item
title is a object of type axis-label.
@item
foreground-color is a color symbol in the current color table.
@item
background-color is a color symbol in the curretn color table.
@item
window-line-width is a floating point number specifying the pen width
to use when drawing the border & the tick marks.
@item
window-font-size is the font size to use for the tick mark labels.
@item
viewport-x-min (0.0 - 1.0) is the location of the left side of the
border in the device window.
@item
viewport-x-max (0.0 - 1.0) is the location of the right side of the
border.
@item
viewport-y-min (0.0 - 1.0) is the location of the bottom side of the
border.
@item
viewport-y-max (0.0 - 1.0) is the location of the top side of the
border.
@item
plots is a list of plot objects.
@item
text-labels is a list of text-label objects.
@item
color-table specifies what color table to use.
@item
altitude specifies the angle by which to rotate the plot around the x
axis.
@item
azimuth specified the angle by which to rotate the plot around the z
axis.
@end itemize
@sp 2
@subheading new-axis
@cindex new-axis
@subsubheading Argument List
(&key axis-min axis-max (major-tick-interval 0) (minor-tick-number 0) (properties *axis-properties*) axis-labels)
@subsubheading Documentation
new-axis, creates and returns an axis object.
@itemize @bullet
@item
axis-min is the minimum value for the axis.
@item
axis-max is the maximum value for the axis.
@item
major-tick-interval is the spacing between major ticks (0 means use
plplot default).
@item
minor-tick-number is the number of minor ticks to put between the
major ticks.
@item
properties is a list of symbols as explained in edit-axis.
@item
axis-labels is a list of axis-label objects.
@end itemize
@sp 2
@subheading new-axis-label
@cindex new-axis-label
@subsubheading Argument List
(axis-text-item side displacement &key (location 0.5) (orientation parallel))
@subsubheading Documentation
new-axis-label, creates and returns a new axis label.
@itemize @bullet
@item
axis-text-item is a object of type text-item.
@item
side is one of :top, :bottom, :left or :right.
@item
displacement specifies the distance from the edge of the graph in
units of the default font-size.
@item
location is the position of the label along the side of the graph (0.0
- 1.0).
@item
orientation is one :parallel or :perpendicular.
@end itemize
@sp 2
@subheading new-3D-axis-label
@cindex new-3D-axis-label
@subsubheading Argument List
(axis-text-item side displacement &key (location 0.5) (orientation
parallel) (primary/secondary :primary))
@subsubheading Documentation
new-3D-axis-label, creates and returns a new 3D axis label.
@itemize @bullet
@item
axis-text-item is a object of type text-item.
@item
side is one of :x, :y or :z.
@item
displacement specifies the distance from the edge of the graph in
units of the default font-size.
@item
location is the position of the label along the side of the graph (0.0
- 1.0).
@item
orientation is one :parallel or :perpendicular.
@item
primary/secondary is one of :primary or :secondary. This specifies
which of two possible choices for each axis should be labeled.
@end itemize
@sp 2
@subheading new-bar-graph
@cindex new-bar-graph
@subsubheading Argument List
(x data &key bar-widths side-by-side line-colors fill-colors (line-width 1.0) (filled t) (copy t))
@subsubheading Documentation
creates a new bar-graph plot object.
@itemize @bullet
@item
x is an array of size (n) specifying the centers of the bars with x[i]
< x[i+1]. if x is nil then data will be plotted against its index.
@item
data should be an array of size (n x m), where m > 0.
@item
bar-widths should be an array of size (n). it will specify the full width of each
bar. defaults are chosen if this is not specified.
@item
side-by-side is t or nil. it specifies whether to draw the bars on top
of each other or next to each other.
@item
line-colors should be an array of symbols of size (m) specifying
colors in the current color table.
@item
fill-colors should be an array of symbols of size (m) specifying what
color to use when filling in the bars.
@item
line-width is a number specifying how wide of a line to draw around
the bar.
@item
filled specifies whether or not the bars are filled.
@item
if copy is true, then copies are made of x, data and widths, otherwise references are kept to the original vectors.
@end itemize
@sp 2
@subheading new-color-table
@cindex new-color-table
@subsubheading Argument List
(&optional rgb-colors)
@subsubheading Documentation
creates a new color table instance from a vector of rgb triples, which also includes a symbol to refer to the color by. for example: #((0 0 0 :black) (128 128 128 :grey) (255 255 255 :white)).
@sp 2
@subheading new-contour-plot
@cindex new-contour-plot
@subsubheading Argument List
(data &key contour-levels (line-color *foreground-color*) (line-width 1) (fill-type none) fill-colors x-min x-max x-mapping y-min y-max y-mapping (copy t))
@subsubheading Documentation
creates a new contour plot.
@itemize @bullet
@item
data is a 2d array of z values.
@item
contour-levels is a 1d vector of floats specifying the levels at which
the contours should appear. if this is nil, then default contours are
created based on the minimum and maximum values in data.
@item
line-color is a symbol specifying which color to use in the current
color table for the contour lines.
@item
line-width is an integer specifying what size line to use for the
contours (or zero for no line).
@item
fill-type is one of :none (contours only), :block (a single color
between each contour) or :smooth (color varies continously between
contours).
@item
fill-colors is a (optional) vector of colors from the current color
table to use when fill-type is :block.
@item
x-min & y-min specify the location of data(0, 0) in plot coordinates.
@item
x-max & y-max specify the location of data(max, max) in plot
coordinates.
@item
x-mapping & y-mapping are either 1d vectors or 2d matrices specifying how to map points in data into plot coordinates. If they are 1d vector, then data(i,j) is mapped to [x-mapping(i), y-mapping(j)]. If they are 2d vectors then data(i,j) is mapped to [x-mapping(i,j), y-mapping(i,j)]. They must be used together and both must be the same type & also match the dimensions of data. They will override x-min, y-min, x-max and y-max if they are specified.
@end itemize
@sp 2
@subheading new-custom-plot-object
@cindex new-custom-plot-object
@subsubheading Argument List
(min-max-function render-function)
@subsubheading Documentation
allows the user to create their own custom plot object.
@itemize @bullet
@item
min-max-function must be either nil or a function of no arguments that
returns the vector #(xmin xmax ymin ymax) that specifies the ideal
window size for this object.
@item
render-function must be a function of one argument that specifies how to render the plot object. generally the rendering will be done with a bunch of calls to functions in the cl-plplot-system module. the current plot number will be passed to this function.
@end itemize
@sp 2
@subheading new-extended-color-table
@cindex new-extended-color-table
@subsubheading Argument List
(&key control-points (color-table-size 128))
@subsubheading Documentation
creates a new extended color table instance from a vector of control points. for example: #((0.0 0.0 0.0 0.0) (1.0 255 255 255)) will create a gray scale color table. see plscmap1l in the plplot documentation for a more thorough explanation.
@sp 2
@subheading new-surface-plot
@cindex new-surface-plot
@subsubheading Argument List
(data-x data-y data-z &key contour-levels (copy t) (line-width 1)
(line-style 1) (line-color *foreground-color*) light-source
surface-options)
@subsubheading Documentation
Creates a new 3D (solid surface) plot.
@itemize @bullet
@item
data-x specifies the x values of the points in data-z. If data-x is
nil then data-z will be plotted against its row index in x.
@item
data-y specifies the y avlues of the points in data-z. If data-y is
nil then data-z will be plotted against its column index in y.
@item
data-z is a 2D array of z values for the plot.
@item
contour-levels specifies the levels at which to draw contours, if
desired. If this is not specified, default values are chosen.
@item
If copy is true then copies of data-x, data-y and data-z will be made,
otherwise reference will be kept to the original vectors.
@item
line-width should be an integer line width, or zero if no line is
desired
@item
line-style specifies what style line to draw (if a line is drawn),
this should be a number between 1 and 8.
@item
line-color is the color to use for the lines in the plot.
@item
light-source is a 3 element vector #(x y z) specifying the location of
the light source that will illuminate the plot surface.
@item
surface-options is list containing zero or more of the following
symbols:
@itemize @space
@item
:faceted - a network of lines is drawing connecting the points that
make up the surface.
@item
:base-contours - a contour plot is also drawn in the base xy plane.
@item
:surface-contours - contour levels are drawn on the surface of the
plot.
@item
:curtain - a curtain between the borders of the surface and the base
xy plane.
@item
:magnitude-coloring - the surface is colored according to the z value
of the plot. If this is not set then surface is colored according the
intensity of the reflected light from light source."
@end itemize
@end itemize
@sp 2
@subheading new-text-item
@cindex new-text-item
@subsubheading Argument List
(the-text &key (text-color *foreground-color*) (text-justification 0.5) (font-size *font-size*))
@subsubheading Documentation
new-text-item, creates and returns a new text item.
@itemize @bullet
@item
text is a string specifying the text.
@item
text-color is a symbol specifying the text color.
@item
text-justification specifies how to center the string relative to its
@item
reference point. 0.0 - 1.0, where 0.5 means the string is centered.
@item
font-size sets the fontsize relative to the default font size.
@end itemize
@sp 2
@subheading new-text-label
@cindex new-text-label
@subsubheading Argument List
(label-text-item text-x text-y &key (text-dx 0.0) (text-dy 0.0))
@subsubheading Documentation
new-text-label, creates and returns a new text-label object.
@itemize @bullet
@item
text-item should be an object created by new-text-item.
@item
text-x specifies the x location of the text reference point (in window
coordinates).
@item
text-y specifies the y location of the text reference point.
@item
text-dx and text-dy specify the location of a second reference point (in window coordinates) the text is drawn along a line connecting (text-x,text-y) and (text-x + text-dx, text-y + text-dy).
@end itemize
@sp 2
@subheading new-3D-text-label
@cindex new-3D-text-label
@subsubheading Argument List
(label-text-item text-x text-y text-z &key (text-dx 0.0) (text-dy 0.0)
(text-dz 0.0) (text-sz 0.0) (text-sz 0.0) (text-sz 0.0))
@subsubheading Documentation
new-3D-text-label, creates and returns a new 3D-text-label object.
@itemize @bullet
@item
text-item should be an object created by new-text-item.
@item
text-x specifies the x location of the text reference point (in window
coordinates).
@item
text-y specifies the y location of the text reference point.
@item
text-z specifies the z location of the text reference point.
@item
text-dx, text-dy and text-dz specify the location of a second reference point
(in window coordinates) the text is drawn along a line connecting
(text-x,text-y and text-z) and (text-x + text-dx, text-y + text-dy,
text-z + text-dz).
@item
test-sx, text-sy and text-sz specify the location of a third reference point
(in window coordinates) the text is sheared to be parallel to a line connecting
(text-x,text-y and text-z) and (text-x + text-sx, text-y + text-sy, text-z + text-sz).
@end itemize
@sp 2
@subheading new-window
@cindex new-window
@subsubheading Argument List
(&key x-axis y-axis title (window-line-width 1.0) (window-font-size *font-size*) (foreground-color *foreground-color*) (background-color *background-color*) (viewport-x-min 0.1) (viewport-x-max 0.9) (viewport-y-min 0.1) (viewport-y-max 0.9) plots text-labels color-table)
@subsubheading Documentation
new-window, creates and returns a new window object.
@itemize @bullet
@item
x-axis is a object of type axis.
@item
y-axis is a object of type axis.
@item
title is a object of type axis-label.
@item
foreground-color is a color symbol in the current color table.
@item
background-color is a color symbol in the current color table.
@item
window-line-width is a floating point number specifying the pen width
to use when drawing the border & the tick marks.
@item
window-font-size is the font size to use for the tick mark labels.
@item
viewport-x-min (0.0 - 1.0) is the location of the left side of the
border in the device window.
@item
viewport-x-max (0.0 - 1.0) is the location of the right side of the
border.
@item
viewport-y-min (0.0 - 1.0) is the location of the bottom side of the
border.
@item
viewport-y-max (0.0 - 1.0) is the location of the top side of the
border.
@item
plots is a list of plot objects.
@item
text-labels is a list of text-label objects.
@item
color-table specifies what color table to use.
@end itemize
@sp 2
@subheading new-x-y-plot
@cindex new-x-y-plot
@subsubheading Argument List
(x y &key (copy t) (line-width 1) (line-style 1) (symbol-size 0.0) symbol-type (color *foreground-color*) x-error y-error)
@subsubheading Documentation
creates a new x-y plot.
@itemize @bullet
@item
if x is nil then y will be plotted against its index.
@item
if copy is true then copies of x,y,x-error and y-error will be made,
otherwise references will be kept to the original vectors.
@item
line-width should be an integer line width, or zero if no line is
desired.
@item
line-style specifies what style line to draw (if a line is drawn),
this should be a number between 1 and 8.
@item
symbol-size specified how big to draw the symbols (1.0 is standard
size). if it is zero the symbols are not drawn.
@item
symbol-type should be set to a number (that specifies a symbol) if you
want specific types of symbols, otherwise default symbol types are
used.
@item
color is the color to use when plotting the lines and symbols, it
should be a symbol that specifies a color in the current color
table. if it is not specified then the current foreground color will
be used.
@item
x-error should be a vector of the same length as x that contains the
size of the error bars in x.
@item
y-error is for error bars in y.
@end itemize
@sp 2
@subheading normal-font
@cindex normal-font
@subsubheading Argument List
none.
@sp 2
@subheading number-symbol
@cindex number-symbol
@subsubheading Argument List
none.
@sp 2
@subheading overline
@cindex overline
@subsubheading Argument List
none.
@sp 2
@subheading remove-axis-label-from-axis
@cindex remove-axis-label-from-axis
@subsubheading Argument List
(a-axis &optional a-axis-label)
@subsubheading Documentation
remove-axis-label-from-axis, destructively removes a-axis-label from a-axis. if a-axis-label is not specified then the last axis-label is removed.
@sp 2
@subheading remove-color-from-color-table
@cindex remove-color-from-color-table
@subsubheading Argument List
(a-color-table &optional color-to-remove)
@subsubheading Documentation
removes color-to-remove, if specified, or the last color if not.
@sp 2
@subheading remove-plot-from-window
@cindex remove-plot-from-window
@subsubheading Argument List
(a-window &optional a-plot)
@subsubheading Documentation
remove-plot-from-window, destructively removes a-plot from a-window. if a-plot is not specified then the last plot is removed.
@sp 2
@subheading remove-text-label-from-window
@cindex remove-text-label-from-window
@subsubheading Argument List
(a-window &optional a-text-label)
@subsubheading Documentation
remove-text-label-from-window, destructively removes a-text-label from a-window. if a-text-label is not specified then the last text-label is removed.
@sp 2
@subheading render
@cindex render
@subsubheading Argument List
(a-window device &key filename (size-x 600) (size-y 500))
@subsubheading Documentation
renders a window and it associated plots and labels using device.
@itemize @bullet
@item
device: a string naming a plplot graphical device such as 'xwin'.
@item
filename: where to save the graph for file based devices.
@item
size-x: the size of the window in x (pixels).
@item
size-y: the size of the window in y (pixels).
@end itemize
if you are using cl-plplot in a multi-threaded environment you should thread lock prior to calling render, as the plplot library only handles rendering one plot at a time.
@sp 2
@subheading roman-font
@cindex roman-font
@subsubheading Argument List
none.
@sp 2
@subheading script-font
@cindex script-font
@subsubheading Argument List
none.
@sp 2
@subheading send-to-back
@cindex send-to-back
@subsubheading Argument List
(a-window a-plot)
@subsubheading Documentation
organizes the plots so that a-plot is drawn on the bottom.
@sp 2
@subheading set-color-table
@cindex set-color-table
@subsubheading Argument List
(a-window a-extended-color-table)
@subsubheading Documentation
sets the color table associated with a-window to a-color-table. returns the old color table. (set-color-table (cl-plplot::window cl-plplot::color-table)) method documentation: sets the color table associated with a-window to a-color-table. returns the old color table.
@sp 2
@subheading set-foreground-color
@cindex set-foreground-color
@subsubheading Argument List
(color)
@subsubheading Documentation
switches the pen to the desired foreground color, or the default foreground color if the desired color cannot be found.
@sp 2
@subheading subscript
@cindex subscript
@subsubheading Argument List
none.
@sp 2
@subheading superscript
@cindex superscript
@subsubheading Argument List
none.
@sp 2
@subheading underline
@cindex underline
@subsubheading Argument List
none.
@sp 2
@subheading unicode-char
@cindex unicode-char
@subsubheading Argument List
none.
@sp 2
@subheading update-color
@cindex update-color
@subsubheading Argument List
(a-color-table color-symbol new-color)
@subsubheading Documentation
changes the color specified by color-symbol to new-color, which should be a rgb triple in the form #(r g b).
@sp 2
@subheading x-y-z-data-to-grid
@cindex x-y-z-data-to-grid
@subsubheading Argument List
(data x-grid y-grid &key (algorithm grid-csa) optional-data)
@subsubheading Documentation
calls the plplot function plgriddata to turn irregulary spaced data as
(x,y,z) points into the 2d array data[i,j] = z. please see the plplot
manual for further documenation.
@itemize @bullet
@item
data is either a 3 x n matrix of (x,y,z) points, or a list containing
(x-vector, y-vector, z-vector).
@item
x-grid specifies the locations of the grid points in the x direction.
@item
y-grid specifies the locations of the grid points in the y direction.
@item
algorithm is one of :grid-csa, :grid-dtli, :grid-nni, :grid-nnidw,
:grid-nnli or :grid-nnaidw and specifies what algorithm to use to grid
the data.
@item
optional-data is a floating point number used in some of the algorithms for determining how to best grid the data.
@end itemize
@c=======================================================================
@node Index
@chapter Index
@printindex cp
@bye
|