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
|
%%%% 3DLDF.texi
%% This file is part of the 3DLDF User and Reference Manual.
%% Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 The Free Software Foundation
%% See the section "GNU Free Documentation License" in the file
%% fdl.texi for copying conditions.
%%%% LDF 2002.11.16. I hope doing this before I load texinfo.tex doesn't cause a problem.
\font\ninerm=cmr9
\font\tenbbb=msbm10 % Blackboard bold
\newlinechar=`^^J
%% Kludge!! Actually, Kludges. LDF 2002.11.19.
%% How do I define new macros for
%% math mode?? Also, I'm not sure that these are the best
%% symbols.
\newbox\PPbox % symbol for ++
\setbox\PPbox=\hbox{\kern.5pt\raise1pt\hbox{\sevenrm+\kern-1pt+}\kern.5pt}
\def\PP{\copy\PPbox}
%%\let\mc=\ninerm % medium caps
\let\mc=\tenrm % LDF 2002.11.16. Trying this out.
\def\CPLUSPLUS{{\mc C\PP\spacefactor1000}}
\def\newline{\hfil\break}
\newskip\displayskip
%%%% LDF 2002.12.20. !! Explain this in README!
%%%% Examples of drawings in Encapsulated PostScript format can be
%%%% included in the printed version of this Texinfo documentation if
%%%% dvips is used. If it's
%%%% available, and the user wants to use it, then the line with
%%%% "\doepsftrue" should _not_ be commented-out, and the line with
%%%% "\doepsffalse" _should_ be commented-out. Otherwise,
%%%% "\doepsftrue" should be commented-out, and
%%%% "\doepsffalse" shouldn't be. This has the effect that the examples will
%%%% be included, or not.
%%%% LOG:
%%%% LDF 2003.01.15. Modified the following text.
%%%% END LOG.
%%%% LDF 2003.01.12. To write examples:
%%%% 1. Use the macro \BEX to start an example. It should be in a TeX
%%%% environment.
%%%% 2. Use \BGRP if you want the 3DLDF code to be within a group.
%%%% \BGRP just writes an open curly brace to subex.web. Use
%%%% \EGRP to end the group.
%%%% 3. Use \write\example{...} to write 3DLDF code for the example
%%%% to subex.web.
%%%% Remember, if you change the code in the @example environment, you must
%%%% change the code in \write\example to correspond.
%%%% 4. Use \OEX to call current_picture.output(). \OEX takes an
%%%% argument which it passes to current_picture.output(). Usually,
%%%% this will be an argument for the projection, but it can be a
%%%% complete set of arguments for current_picture.output(). Note
%%%% that from the point of view of TeX (and texi2dvi), it's a single
%%%% argument.
%%%% This macro also writes its code to subex.web.
%%%% 5. Use \EEX to end an example. Use the argument 1 to draw a box
%%%% around the example, or 0 to suppress drawing it.
%%%% 6. Use \PEX to print the example. It calls \epsffile and inputs
%%%% the EPS (Encapsulated PostScript) file "3DLDFmp.<\the\figcnt>".
%%%% It also writes TeX code to
%%%% extext.tex for inputting the EPS file. extext.tex can be input by
%%%% another TeX file, which makes it possible to view the examples
%%%% separately. Currently, it is input by 3DLDFtex.tex.
%%%% 7. Run texi2dvi to get the example code printed to subex.web.
%%%% Don't worry if you get an error message, if you've added a new
%%%% example.
%%%% Just type "s" to continue. If the file 3DLDFmp.<number> hasn't
%%%% been generated by a previous run throught the procedure, it won't be
%%%% possible to open it.
%%%% If all goes
%%%% well, the next time texi2dvi is run (step 9), it will be available.
%%%% 8. Make a change to examples.web, so that it will be recompiled. Then
%%%% recompile 3DLDF.
%%%% 9. Run 3DLDF to generate 3DLDFput.mp.
%%%% 10. Run mp-file to generate the EPS files.
%%%% 11. Run texi2dvi again.
%%%% 12. Run d2ps on 3DLDF.
%%%% 13. Now you can view 3DLDF.ps using gv (Ghostview), for example.
%% If \makeexamplestrue, 3DLDF code for the example figures is written
%% to \filename{examples.web}. If \makeexamplesfalse, examples.web
%% isn't written at all. However, if the Encapsulated PostScript files
%% \filename{3DLDFmp.1}, \filename{3DLDFmp.2}, etc., containing the figures
%% exist, they will be included by \PEX, unless \doepsffalse.
%% In other words, generating the example figures can be suppressed, for
%% the final version, or for some other purpose.
%% In addition, if \doepsffalse is set, then \makeexamplesfalse is also
%% set. This is because it doesn't probably doesn't make sense to
%% generate the illustrations, if we're not including them.
%% LDF 2003.08.29.
\newif\ifmakeexamples
\newif\ifdoepsf
%\makeexamplestrue %% One of these two lines should be commented-out.
\makeexamplesfalse
\doepsftrue %% One of these two lines should be commented-out.
%\doepsffalse
\ifdoepsf
\message{^^J\noexpand\doepsftrue. Will include figures.}
\else
\message{^^J\noexpand\doepsffalse. Won't include figures.}
\message{^^JSetting \noexpand\makeexamplesfalse.}
\makeexamplesfalse
\fi
\ifmakeexamples
\message{^^J\noexpand\makeexamplestrue. Will write 3DLDF code to examples.web.}
\else
\message{^^J\noexpand\makeexamplesfalse. Won't write 3DLDF code to examples.web.}
\fi
%%%% LDF 2002.12.20.
\ifdoepsf
\input graphicx
\def\epsfsize#1#2{#1} %% This sets the magnification factor for the
%% included graphics.
\fi
%% LDF 2003.01.12. This is for writing the 3DLDF code for the figures
%% to the file "../examples.web" and code for inputting them into
%% a TeX file to "../extext.tex".
%% This is for writing a double backslash to ../examples.web.
\begingroup
\catcode`\|=0
|catcode`|\=12
|gdef|DBKS#1{\\#1}
|endgroup
\newwrite\examples
\newwrite\extext
\ifdoepsf
\ifmakeexamples
\openout\examples=examples.web
\openout\extext=extext.tex
%% !! GET DATESTAMP TO WORK!!
%% ?? \immediate doesn't work here!! This means that a figure can't
%% appear on the first page. It won't, anyway, so it doesn't really
%% matter. I would like to know why \immediate doesn't work here,
%% though.
\write\examples{@q examples.web. @>^^J%
@q Generated by running texi2dvi 3DLDF.texi.@>^^J^^J%
@i subex1.web^^J}
\fi
\fi
\newcount\figcnt
\figcnt=0
%% Begin example.
\def\BEX{\ifmakeexamples\global\advance\figcnt by 1
\immediate\write\examples{beginfig(\the\figcnt);}\fi}
%% Write open curly brace to begin group.
\def\BGRP{\ifmakeexamples\immediate\write\examples{\OCB}\fi}
%% Write closing curly brace to end group.
\def\EGRP{\ifmakeexamples\immediate\write\examples{\CCB}\fi}
%% Write output command for current_picture to example file.
%% The argument to \OEX is the argument to output().
\def\OEX#1{\ifmakeexamples\immediate\write\examples{current_picture.output(#1);}\fi}
%% End example. Use any number >= 1 as argument #1 to draw a box around
%% the example, or 0 to suppress drawing it.
%% LDF 2003.01.31. The figure number written to stdout will be
%% incorrect, if the figure is not the first one on a page. The TeXbook
%% describes a way around this problem, but my first attempt at fixing
%% the problem didn't work (TeXbook, p.~323, 21.10).
\def\EEX#1{\ifmakeexamples
\ifnum#1>0
\immediate\write\examples{out_stream << "boxit.b(currentpicture);" << endl;}%
\fi
\ifcase#1 %% 0: Do nothing.
\or %% 1: Make box using defaultdx and defaultdy (defined
%% in 3DLDFmp.mp). Do nothing here.
\or %% 2: Make box smaller on all sides.
\immediate\write\examples{out_stream << "b.dx=.5cm; b.dy=.5cm;";}%
\or %% 3: Make box smaller on the left and right sides.
\immediate\write\examples{out_stream << "b.dx=.5cm;";}%
\or %% 3: Make box smaller on the top and bottom.
\immediate\write\examples{out_stream << "b.dy=.5cm;";}%
\fi
\ifnum#1>0
\immediate\write\examples{out_stream << "draw bpath b withpen pencircle scaled .25mm;" << endl;}%
\fi
\immediate\write\examples{endfig(\the\figcnt);^^Jcurrent_picture.clear();^^J}%
\write16{FIGURE \the\figcnt\space is on page \the\count0.}\fi}
%% Special End Example. Added LDF 2003.05.16. It takes arguments for
%% sizing and positioning the box, if none of the arguments to \EEX does
%% the trick.
%% @c !! TO DO: CHECK: Arguments #3 and #4 don't seem to have any effect.
\def\SEEX#1#2#3#4{\ifmakeexamples
\immediate\write\examples{out_stream << "boxit.b(currentpicture);" %
<< endl;}%
\immediate\write\examples{out_stream << "b.dx=#1; b.dy=#2;" << endl;}%
\immediate\write\examples{out_stream << "b.c := b.c shifted (#3, #4);" %
<< endl;^^J}%
\immediate\write\examples{out_stream << "draw bpath b withpen pencircle scaled .25mm;" << endl;}%
\immediate\write\examples{endfig(\the\figcnt);^^Jcurrent_picture.clear();^^J}%
\write16{FIGURE \the\figcnt\space is on page \the\count0.}\fi}
%% Print example
%% LDF 2003.04.27. Added \vbox, to prevent illustration from being
%% separated from the caption.
\def\PEX{\ifdoepsf
\ifmakeexamples\else\global\advance\figcnt by 1\fi
\vskip\parskip
\vbox{\centerline{\includegraphics{%
%%
graphics/mps/%
3DLDF-\the\figcnt.mps}}\nobreak
\centerline{Figure \the\figcnt.}}%
%%
%% LDF 2003.01.15. Added the following code.
%% Write to TeX file. This makes it possible to look at the examples
%% separately.
\ifmakeexamples
\immediate\write\extext{\vbox to \vsize{\vskip 2cm
\line{\hskip 2cm Example \the\figcnt.\hss}%
\vfil
\line{\hskip 2cm\noexpand\epsffile{3DLDFmp.\the\figcnt}\hss}%
\vss}^^J}\fi
%% LDF 2003.01.15. End of new code.
%%
\fi %% \ifdoepsf
}
\newcount\tempcnt
\let\NBKS=~ %% No break space.
%%%% LDF 2003.05.02. Added the following code For "dangerous bend"
%%%% paragraphs. This may cause problems, so I've marked the end of
%%%% this section, in case it needs to be deleted.
\font\manual=manfnt % font used for the METAFONT logo, etc.
\def\dbend{{\manual\char127}} % dangerous bend sign
\catcode`\@=11
%% I've had to play with the definition of \danger a bit, because the
%% way it was interfered with my footnotes. It's not very robust, it
%% has problems with \verbatim, \display, and
%% \lispdisplay. In my version, it doesn't change the font, but it
%% will be very tricky, if you decide to use a smaller font for the
%% dangerous bend paragraphs. I end the \danger environment before
%% \display or \verbatim, and just continue afterwards, making sure
%% there is no \par in between, so the \danger
%% is past before the paragraph ends.
\def\dd@nger{\medbreak\begingroup\clubpenalty=10000
\def\par{\endgraf\endgroup\medbreak} \noindent\hang\hangafter=-2
\hbox to0pt{\hskip-\hangindent\dbend\kern1pt\dbend\hfill}}
\outer\def\ddanger{\dd@nger}
\def\d@nger{\medbreak\begingroup\clubpenalty=10000
%\def\par{\endgraf\endgroup\medbreak}
\noindent\hang\hangafter=-2
\hbox to0pt{\hskip-\hangindent\dbend\hfill}}
\outer\def\danger{\d@nger}
\def\enddanger{\par\endgroup\medbreak}
\catcode`\@=12
%%%% LDF 2003.05.02. End of code added for "dangerous bend"
%%%% paragraphs.
\input texinfo @c -*-texinfo-*-
@c %**start of header
@setfilename 3DLDF.info
@settitle 3DLDF User and Reference Manual
@syncodeindex tp vr @c This merges the Data Type Index with the Variable
@c Index, because the former has so few entries.
@c LDF 2003.09.01.
@c %**end of header
@set EDITION 1.1.5.1
@set VERSION 1.1.5.1
@set UPDATED 16 January 2004
@set UPDATE-MONTH January 2004
@c *********************
@copying
This is the 3DLDF User and Reference Manual, edition @value{EDITION} for
3DLDF @value{VERSION}.@* This manual was last updated on
@value{UPDATED}.@*
3DLDF is a GNU package for three-dimensional drawing with MetaPost
output.
The author is Laurence D. Finston.
Copyright @copyright{} 2003, 2004 , 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 The Free Software Foundation
@quotation
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3
or any later version published by the Free Software Foundation;
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
Texts. A copy of the license is included in the section entitled
``GNU Free Documentation License''.
@end quotation
@end copying
@c *********************
@c Added @dircategory and @direntry at the suggestion of
@c Andreas Voegele. LDF 2003.12.01.
@dircategory GNU packages
@direntry
* 3DLDF: (3DLDF). 3D drawing with MetaPost output.
@end direntry
@c *********************
@c @setchapternewpage odd
@c @setchapternewpage off @c For saving paper. LDF 2003.08.20.
@c *********************
@c !! REMEMBER TO COMMENT THIS BACK IN, IF I WANT A TITLE PAGE!!
@titlepage
@title 3DLDF User and Reference Manual
@subtitle 3-dimensional drawing with MetaPost output.
@subtitle Manual edition @value{EDITION} for 3DLDF Version @value{VERSION}
@subtitle @value{UPDATE-MONTH}
@author Laurence D. Finston
@page
@vskip 0pt plus 1filll
@insertcopying
@end titlepage
@headings on
@c Comment-out to save paper.
@shortcontents
@contents
@comment node-name, next, previous, up
@node Top, Introduction, (dir), (dir)
@ifnottex
@insertcopying
Please note that the figures cannot be shown in the Info output
format.
@end ifnottex
@menu
* Introduction::
* Contributing to 3DLDF::
* Using 3DLDF::
* Points::
* Transforming Points::
* Transforms::
* Drawing and Labeling Points::
* Paths::
* Plane Figures::
* Solid Figures::
* Pictures::
* Intersections::
* Installing and Running 3DLDF::
* Typedefs and Utility Structures::
* Global Constants and Variables::
* Dynamic Allocation of Shapes::
* System Information::
* Color Reference::
* Input and Output::
* Shape Reference::
* Transform Reference::
* Label Reference::
* Picture Reference::
* Point Reference::
* Focus Reference::
* Line Reference::
* Plane Reference::
* Path Reference::
* Polygon Reference::
* Regular Polygon Reference::
* Rectangle Reference::
* Regular Closed Plane Curve Reference::
* Ellipse Reference::
* Circle Reference::
* Pattern Reference::
* Solid Reference::
* Faced Solid Reference::
* Cuboid Reference::
* Polyhedron Reference::
* Utility Functions::
* Adding a File::
* Future Plans::
* Changes::
* Bibliography::
* GNU Free Documentation License::
* Data Type and Variable Index::
* Function Index::
* Concept Index::
@detailmenu --- The Detailed Node Listing ---
Introduction
* Sources of Information::
* About This Manual::
* CWEB Documentation::
* Metafont and MetaPost::
* Caveats::
* Ports::
About This Manual
* Manual Conventions::
* Illustrations::
Caveats
* Accuracy::
* No Input Routine::
Points
* Declaring and Initializing Points::
* Setting and Assigning to Points::
* Shifting Points::
* Scaling Points::
* Shearing Points::
* Rotating Points::
Transforms
* Applying Transforms to Points Intro::
* Inverting Transforms::
Drawing and Labeling Points
* Drawing Points Intro::
* Labeling Points Intro::
Paths
* Declaring and Initializing Paths::
* Drawing and Filling Paths Intro::
Plane Figures
* Regular Polygons Getstart::
* Rectangles Getstart::
* Ellipses Getstart::
* Circles Getstart::
Solid Figures
* Cuboid Getstart::
* Polyhedron Getstart::
Polyhedron
* Tetrahedron Getstart::
* Dodecahedron Getstart::
* Icosahedron Getstart::
Pictures
* Projections::
* Focuses Getstart::
* Surface Hiding::
Projections
* Parallel Projections::
* The Perspective Projection::
Installing and Running 3DLDF
* Installing 3DLDF::
* Running 3DLDF::
Installing 3DLDF
* Template Functions::
Running 3DLDF
* Converting EPS Files::
* Command Line Arguments::
Converting EPS Files
* Converting EPS Files ELISP::
System Information
* Endianness::
* Register Width::
* Get Second Largest Real::
Color Reference
* Color Data Members::
* Color Constructors and Setting Functions::
* Color Operators::
* Modifying Colors::
* Showing Colors::
* Querying Colors::
* Defining and Initializing Colors::
* Namespace Colors::
Input and Output
* I/O Global Variables::
* I/O Functions::
Shape Reference
* Shape Data Members::
* Shape Operators::
* Copying Shapes::
* Modifying Shapes::
* Affine Transformations for Shapes::
* Applying Transformations to Shapes::
* Clearing Shapes::
* Querying Shapes::
* Showing Shapes::
* Outputting Shapes::
Transform Reference
* Transform Data Members::
* Transform Global Variables and Constants::
* Transform Constructors ::
* Transform Operators::
* Matrix Inversion::
* Setting Values Transforms::
* Querying Transforms::
* Returning Information for Transforms::
* Showing Transforms::
* Affine Transformations for Transforms::
* Alignment with an Axis for Transforms::
* Resetting Transforms::
* Cleaning Transforms::
Label Reference
* Label Data Members::
* Copying Labels::
* Outputting Labels::
Picture Reference
* Picture Data Members::
* Picture Global Variables::
* Picture Constructors::
* Picture Operators::
* Affine Transformations for Pictures::
* Modifying Pictures::
* Showing Pictures::
* Outputting Pictures::
Outputting
* Picture Output Namespaces::
* Picture Output Functions::
Namespaces
* Namespace Projections::
* Namespace Sorting::
Point Reference
* Point Data Members::
* Point Typedefs and Utility Structures::
* Point Global Constants and Variables::
* Point Constructors and Setting Functions::
* Point Destructor::
* Point Operators::
* Copying Points::
* Querying Points::
* Returning Coordinates::
* Returning Information for Points::
* Modifying Points::
* Affine Transformations for Points::
* Applying Transformations to Points::
* Projecting Points::
* Vector Operations::
* Points and Lines::
* Point Intersections::
* Point Drawing Functions::
* Labelling Points::
* Showing Points::
* Outputting Points::
Focus Reference
* Focus Data Members::
* Focus Global Variables::
* Focus Constructors and Setting Functions::
* Focus Operators::
* Modifying Focuses::
* Querying Focuses::
* Showing Focuses::
Line Reference
* Line Data Members::
* Line Global Constants::
* Line Constructors::
* Line Operators::
* Get Path::
* Showing::
Plane Reference
* Planes Data Members::
* Planes Global Constants::
* Planes Constructors::
* Planes Operators::
* Planes Returning Information::
* Plane Intersections::
* Planes Showing::
Path Reference
* Path Data Members::
* Path Constructors and Setting Functions::
* Path Destructor::
* Path Operators::
* Appending to Paths ::
* Copying Paths::
* Clearing Paths ::
* Modifying Paths ::
* Affine Transformations for Paths::
* Aligning Paths with an Axis::
* Applying Transformations to Paths::
* Drawing and Filling Paths::
* Labelling Paths::
* Showing Paths::
* Querying Paths::
* Outputting Paths::
* Path Intersections::
Polygon Reference
* Polygon Data Members::
* Polygon Operators::
* Querying Polygons::
* Affine Transformations for Polygons::
* Polygon Intersections::
Regular Polygon Reference
* Regular Polygon Data Members::
* Regular Polygon Constructors and Setting Functions::
* Regular Polygon Operators::
* Querying Regular Polygons::
* Circles for Regular Polygons::
Rectangle Reference
* Rectangle Data Members::
* Rectangle Constructors and Setting Functions::
* Rectangle Operators::
* Returning Points for Rectangles::
* Querying Rectangles::
* Ellipses for Rectangles::
Regular Closed Plane Curve Reference
* Regular Closed Plane Curve Data Members::
* Querying Regular Closed Plane Curves::
* Regular Closed Plane Curve Intersections::
* Regular Closed Plane Curve Segments::
Ellipse Reference
* Ellipse Data Members::
* Ellipse Constructors and Setting Functions::
* Performing Transformations on Ellipses::
* Ellipse Operators::
* Labeling Ellipses::
* Affine Transformations for Ellipses::
* Querying Ellipses::
* Returning Elements and Information for Ellipses::
* Ellipse Intersections::
* Solving Ellipses::
* Rectangles for Ellipses::
Circle Reference
* Circle Data Members::
* Circle Constructors and Setting Functions::
* Circle Operators::
* Querying Circles::
* Circle Intersections::
Pattern Reference
* Plane Tesselations::
* Roulettes and Involutes::
Roulettes and Involutes
* Epicycloids::
Solid Reference
* Solid Data Members::
* Solid Constructors and Setting Functions::
* Solid Destructor::
* Solid Operators::
* Copying Solids::
* Setting Solid Members::
* Querying Solids::
* Returning Elements and Information Solids::
* Showing Solids::
* Affine Transformations for Solids::
* Applying Transformations to Solids::
* Outputting Solids::
* Drawing and Filling Solids::
* Clearing Solids::
Returning Elements and Information
* Getting Shape Centers Solids::
* Getting Shapes Solids::
Faced Solid Reference
* Solid_Faced Data Members::
Cuboid Reference
* Cuboid Data Members::
* Cuboid Constructors and Setting Functions::
* Cuboid Operators::
Polyhedron Reference
* Polyhedron Data Members::
* Regular Platonic Polyhedra::
* Semi-Regular Archimedean Polyhedra::
Regular Platonic Polyhedra
* Tetrahedron::
* Dodecahedron::
* Icosahedron::
Tetrahedron
* Tetrahedron Data Members::
* Tetrahedron Constructors and Setting Functions::
* Tetrahedron Net::
Dodecahedron
* Dodecahedron Data Members::
* Dodecahedron Constructors and Setting Functions::
* Dodecahedron Net::
Icosahedron
* Icosahedron Data Members::
* Icosahedron Constructors and Setting Functions::
* Icosahedron Net::
Semi-Regular Archimedean Polyhedra
* Truncated Octahedron::
Truncated Octahedron
* Truncated Octahedron Data Members::
* Truncated Octahedron Constructors and Setting Functions::
* Truncated Octahedron Net::
Utility Functions
* Perspective Functions::
Future Plans
* Geometry::
* Curves and Surfaces::
* Shadows::
* Multi-Threading::
Changes
* Changes in 3DLDF 1.1.5.1::
* Changes in 3DLDF 1.1.5::
* Changes in 3DLDF 1.1.4.2::
* Changes in 3DLDF 1.1.4.1::
* Changes in 3DLDF 1.1.4::
* Initial version::
@end detailmenu
@end menu
@macro bibskip {}
@iftex
@tex
@medskip
@end tex
@end iftex
@ifnottex
@sp 1
@end ifnottex
@end macro
@macro cpp {}
@iftex
@tex
@CPLUSPLUS
@end tex
@end iftex
@ifnottex
C++
@end ifnottex
@end macro
@macro NATURAL {}
@iftex
@tex
@hbox{{@tenbbb N}}
@end tex
@end iftex
@ifnottex
N
@end ifnottex
@end macro
@macro REAL {}
@iftex
@tex
@hbox{{@tenbbb R}}
@end tex
@end iftex
@ifnottex
R
@end ifnottex
@end macro
@macro INT {}
@iftex
@tex
@hbox{{@tenbbb Z}} %% Integers.
@end tex
@end iftex
@ifnottex
I
@end ifnottex
@end macro
@c UBAR is only used in code written to examples.web. There's no need
@c for versions for it for Info or HTML. LDF 2003.12.07.
@c
@c
@c
@iftex
@tex
\gdef\UBAR{$\noexpand\\underline{\noexpand\\hbox to 1ex%
{\noexpand\\hfil}}$}
@end tex
@end iftex
@ifnottex
@macro UBAR {}
_@c
@end macro
@end ifnottex
@macro NEXTFIG {}
@iftex
@tex
\\tempcnt=\\figcnt\\advance\\tempcnt by 1
Fig.\\NBKS\\the\\tempcnt
@end tex
@end iftex
@ifnottex
[next figure]
@end ifnottex
@end macro
@macro TWOPREFIG {}
@iftex
@tex
\\tempcnt=\\figcnt\\advance\\tempcnt by -1
Fig.\\NBKS\\the\\tempcnt
@end tex
@end iftex
@ifnottex
[the second-to-last figure]
@end ifnottex
@end macro
@macro PREFIG {}
@iftex
@tex
Fig.\\NBKS\\the\\figcnt
@end tex
@end iftex
@ifnottex
[the previous figure]
@end ifnottex
@end macro
@c Kludge! This won't work for 1 degree in the Info version!
@c LDF 2003.11.25.
@macro DEG{NUMBER}
@iftex
@tex
{$\NUMBER\^@circ$}%
@end tex
@end iftex
@ifnottex
\NUMBER\ degrees
@end ifnottex
@end macro
@macro PRM{NUMBER}
@iftex
@tex
{$\NUMBER\^\\prime$}%
@end tex
@end iftex
@ifnottex
\NUMBER\'
@end ifnottex
@end macro
@macro SECT {}
@iftex
@tex
@S
@end tex
@end iftex
@ifnottex
section
@end ifnottex
@end macro
@c %% \OCB and \CCB are used in \BGRP and \EGRP (begin group and end group)
@c %% for writing curly braces to the file of 3DLDF example code.
@iftex
@tex
\begingroup
\catcode`\{=12
\catcode`\}=12
\catcode`\<=1
\catcode`\>=2
\gdef\OCB<{> % Open curly brace.
\gdef\CCB<}> % Closing curly brace
\endgroup
@end tex
@end iftex
@ifnottex
@macro OCB
@{
@end macro
@macro CCB
@}
@end macro
@end ifnottex
@macro angles{arg}
@iftex
@tex
$\\langle$\\it{\arg\\\/}$\\rangle$%
@end tex
@end iftex
@ifnottex
<\arg\>
@end ifnottex
@end macro
@macro NEQ {arg}
@iftex
@tex
$\\neq \arg\$
@end tex
@end iftex
@c
@ifnottex
@math{!= \arg\}
@end ifnottex
@end macro
@c Calling this `@TIMES' caused problems. Maybe the name wasn't the
@c reason, though. But I don't feel like experimenting to find out.
@c LDF 2003.12.08.
@c
@macro TMS {arg1, arg2}
@iftex
@tex
$\arg1\ \\times \arg2\$%
@end tex
@end iftex
@c
@ifnottex
@math{\arg1\ * \arg2\}
@end ifnottex
@end macro
@c ``By'' for matrices.
@macro BYM {arg1, arg2}
@iftex
@tex
$\arg1\ \\times \arg2\$%
@end tex
@end iftex
@c
@ifnottex
@math{\arg1\ X \arg2\}
@end ifnottex
@end macro
@macro OVERRTARROW {arg}
@iftex
@tex
$\\overrightarrow{\arg\}$%
@end tex
@end iftex
@c
@ifnottex
@math{\arg\}
@end ifnottex
@end macro
@macro PLUSMINUS {arg}
@iftex
@tex
$\\pm{\arg\}$%
@end tex
@end iftex
@c
@ifnottex
@math{+ or - \arg\}
@end ifnottex
@end macro
@include intro.texi
@include contrib.texi
@c @c Got rid of getstart.texi, because it confuses Emacs and makeinfo
@c @c to have files nested too deeply.
@include using.texi
@c chapter Points
@include gspoint.texi
@c chapter Transforming Points
@include gstranpt.texi
@c chapter Transforms
@include gstransf.texi
@c chapter Drawing and Labeling Points
@include gsdlpt.texi
@c chapter Paths
@include gspaths.texi
@c chapter Plane Figures
@include gsplane.texi
@c chapter Solid Figures
@include gssolfig.texi
@c chapter Pictures
@include gspict.texi
@include intersct.texi
@include instlrun.texi
@c @c Unless otherwise stated, all of the functions described in the following
@c @c chapters are @dfn{member functions} of the
@c @c the @code{class} currently under discussion.
@include typeglb.texi
@include glbcnvar.texi
@include creatnew.texi
@include system.texi
@include color.texi
@include io.texi
@include shape.texi
@include transfor.texi
@include label.texi
@include picture.texi
@include point.texi
@include focus.texi
@include line.texi
@include plane.texi
@include path.texi
@include polygon.texi
@include regpolyg.texi
@include rectang.texi
@include rcpcurve.texi
@include ellipse.texi
@include circle.texi
@include pattern.texi
@include solid.texi
@include solfaced.texi
@include cuboid.texi
@include polyhed.texi
@include utility.texi
@include addfile.texi
@include future.texi
@include changes.texi
@include biblio.texi
@iftex
@tex
\ifdoepsf
\ifmakeexamples
\write\examples{@@i subex2.web^^J^^J}
\closeout\examples
\closeout\extext
\fi %% \makeexamples
\fi %% \doepsf
@end tex
@end iftex
@page
@node GNU Free Documentation License, Data Type and Variable Index, Bibliography, Top
@appendix GNU Free Documentation License
@include fdl.texi
@c The Data Type Index is merged with the Variable Index, because the
@c former has so few entries.
@c "@syncodeindex tp vr" appears after "@c %**end of header", above.
@c LDF 2003.09.01.
@page
@include varidx.texi
@page
@include funcidx.texi
@page
@include concidx.texi
@bye
|