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
|
%%
%% This is file `pst-3dplot.tex',
%%
%% IMPORTANT NOTICE:
%%
%% Package `pst-3dplot.tex'
%%
%% Herbert Voss <voss _at_ perce.de>
%%
%% This program can be redistributed and/or modified under the terms
%% of the LaTeX Project Public License Distributed from CTAN archives
%% in directory macros/latex/base/lppl.txt.
%%
%% DESCRIPTION:
%% `pst-3dplot' is a PSTricks package to draw 3d curves,
%% 3d data files and graphical objects
%%
\csname PSTThreeDplotLoaded\endcsname
\let\PSTThreeDplotLoaded\endinput
% Requires PSTricks, pst-node, pst-plot, multido packages
\ifx\PSTricksLoaded\endinput\else\input pstricks.tex\fi
\ifx\PSTnodesLoaded\endinput\else\input pst-node.tex\fi
\ifx\PSTplotLoaded\endinput\else\input pst-plot.tex\fi% plotpoints
\ifx\PSTVueTroisDLoaded\endinput\else\input pst-vue3d.tex\fi
\ifx\PSTMultidoLoaded\endinput\else\input multido.tex\fi
%
\def\fileversion{1.51}
\def\filedate{2004/12/03}
\message{`PST-3dplot' v\fileversion, \filedate\space (HV)}
%
\edef\PstAtCode{\the\catcode`\@} \catcode`\@=11\relax
\ifx\PSTXKeyLoaded\endinput\else\input pst-xkey \fi
\pst@addfams{pst-3dplot}
\SpecialCoor
%
%%%%%%%%%%%%%%%%%% Macrolist %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% \def\pstThreeDPut
% \def\pstThreeDLine
% \def\pstThreeDDot
% \def\pstThreeDNode
% \def\pstUThreeDPut
% \def\pstThreeDSquare
% \def\pstThreeDBox
% \def\pstThreeDSphere
% \def\pstThreeDEllipse
% \def\pstThreeDPlotFunc
% \def\psplotThreeD
% \def\parametricplotThreeD
% \def\psThreeDPlot
% \def\pstThreeDCoor
% \def\fileplotThreeD
% \def\dataplotThreeD
% \def\listplotThreeD
%
%
\newdimen\pst@dimf
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% ---------------- the if's -----------------
%
\newif\ifPst@drawing% draw the coordinates?
\define@key[psset]{pst-3dplot}{drawing}[true]{\@nameuse{Pst@drawing#1}}
\newif\ifPst@drawCoor% draw the coordinates of a dot?
\define@key[psset]{pst-3dplot}{drawCoor}[false]{\@nameuse{Pst@drawCoor#1}}
\newif\ifPst@hiddenLine% emulate hidden line surface?
\define@key[psset]{pst-3dplot}{hiddenLine}[false]{\@nameuse{Pst@hiddenLine#1}}
\newif\ifPst@SphericalCoor% (r,phi,theta)
\define@key[psset]{pst-3dplot}{SphericalCoor}[true]{\@nameuse{Pst@SphericalCoor#1}}
\psset{SphericalCoor=false}
%
% ------- the global definitions for the pspicture frame ------
%
\define@key[psset]{pst-3dplot}{xMin}{\edef\psk@ThreeDplot@xMin{#1}}
\define@key[psset]{pst-3dplot}{xMax}{\edef\psk@ThreeDplot@xMax{#1}}
\define@key[psset]{pst-3dplot}{yMin}{\edef\psk@ThreeDplot@yMin{#1}}
\define@key[psset]{pst-3dplot}{yMax}{\edef\psk@ThreeDplot@yMax{#1}}
\define@key[psset]{pst-3dplot}{zMin}{\edef\psk@ThreeDplot@zMin{#1}}
\define@key[psset]{pst-3dplot}{zMax}{\edef\psk@ThreeDplot@zMax{#1}}
\define@key[psset]{pst-3dplot}{xThreeDunit}{\edef\psk@ThreeDplot@xThreeDunit{#1}}
\define@key[psset]{pst-3dplot}{yThreeDunit}{\edef\psk@ThreeDplot@yThreeDunit{#1}}
\define@key[psset]{pst-3dplot}{zThreeDunit}{\edef\psk@ThreeDplot@zThreeDunit{#1}}
%
% -------------- the angles and the plotpoints -------------
%
\define@key[psset]{pst-3dplot}{Alpha}{\edef\psk@ThreeDplot@Alpha{#1}} % Horizontal turn
\define@key[psset]{pst-3dplot}{Beta}{\edef\psk@ThreeDplot@Beta{#1}}% Vertical turn
\def\drawStyle@xLines{xLines}% 0
\def\drawStyle@yLines{yLines}% 1
\def\drawStyle@xyLines{xyLines}% 2
\def\drawStyle@yxLines{yxLines}% 3
\define@key[psset]{pst-3dplot}{drawStyle}{% how to draw 3D functions
\def\pst@tempa{#1}
\ifx\pst@tempa\drawStyle@xLines\let\psk@ThreeDplot@drawStyle\z@\else
\ifx\pst@tempa\drawStyle@yLines\let\psk@ThreeDplot@drawStyle\@ne\else
\ifx\pst@tempa\drawStyle@xyLines\let\psk@ThreeDplot@drawStyle\tw@\else
\ifx\pst@tempa\drawStyle@yxLines\let\psk@ThreeDplot@drawStyle\thr@@\else
\@pstrickserr{Bad draw style: `\pst@tempa'}\@ehpa
\fi\fi\fi\fi%
% \typeout{drawStyle: \the\psk@ThreeDplot@drawStyle}
}
\psset[pst-3dplot]{drawStyle=xLines}
%
\define@key[psset]{pst-3dplot}{xPlotpoints}{% points in x direction
\edef\psk@ThreeDplot@xPlotpoints{#1}}
\define@key[psset]{pst-3dplot}{yPlotpoints}{% points in y direction
\edef\psk@ThreeDplot@yPlotpoints{#1}}
\define@key[psset]{pst-3dplot}{beginAngle}{% for ellipse/circle arc
\edef\psk@ThreeDplot@beginAngle{#1}}
\define@key[psset]{pst-3dplot}{endAngle}{% for ellipse/circle arc
\edef\psk@ThreeDplot@endAngle{#1}}
\define@key[psset]{pst-3dplot}{linejoin}{% how lines come together 0,1,2
\edef\psk@ThreeDplot@linejoin{#1}}
\define@key[psset]{pst-3dplot}{plane}{% xy,xz,yz
\edef\psk@ThreeDplot@plane{#1}}
\define@key[psset]{pst-3dplot}{pOrigin}{% combination of (lr)(tBb)
\edef\psk@ThreeDplot@pOrigin{#1}}
\def\ThreeDplot@planeXY{xy}
\def\ThreeDplot@planeXZ{xz}
\def\ThreeDplot@planeYZ{yz}
%
% -------------- the length and node definitions -------------
%
\define@key[psset]{pst-3dplot}{XO}{% the X-offset
\edef\psk@ThreeDplot@XO{#1}}
\define@key[psset]{pst-3dplot}{YO}{% the y-offset
\edef\psk@ThreeDplot@YO{#1}}
\define@key[psset]{pst-3dplot}{angleStep}{% for circles
\edef\psk@ThreeDplot@angleStep{#1}}
\define@key[psset]{pst-3dplot}{posStart}{% where the arrows start
\edef\psk@ThreeDplot@posStart{#1}}
\define@key[psset]{pst-3dplot}{length}{% the length of the before|outlines
\edef\psk@ThreeDplot@length{#1}}
\define@key[psset]{pst-3dplot}{arrowOffset}{% offset for \arrowLine
\edef\psk@ThreeDplot@arrowOffset{#1}}
\define@key[psset]{pst-3dplot}{visibleLineStyle}{% offset for \arrowLine
\edef\psk@ThreeDplot@visibleLineStyle{#1}}
\define@key[psset]{pst-3dplot}{invisibleLineStyle}{% offset for \arrowLine
\edef\psk@ThreeDplot@invisibleLineStyle{#1}}
%
\newif\if@IIIDticks% draw the ticks?
\define@key[psset]{pst-3dplot}{IIIDticks}[true]{\@nameuse{@IIIDticks#1}}
\define@key[psset]{pst-3dplot}{Dz}{\edef\psk@Dz{#1}}
\define@key[psset]{pst-3dplot}{IIIDxTicksPlane}{\edef\psk@IIIDxTicksPlane{#1}}
\define@key[psset]{pst-3dplot}{IIIDyTicksPlane}{\edef\psk@IIIDyTicksPlane{#1}}
\define@key[psset]{pst-3dplot}{IIIDzTicksPlane}{\edef\psk@IIIDzTicksPlane{#1}}
\define@key[psset]{pst-3dplot}{IIIDticksize}{\edef\psk@IIIDticksize{#1}}
\define@key[psset]{pst-3dplot}{IIIDxticksep}{\edef\psk@IIIDxticksep{#1}}
\define@key[psset]{pst-3dplot}{IIIDyticksep}{\edef\psk@IIIDyticksep{#1}}
\define@key[psset]{pst-3dplot}{IIIDzticksep}{\edef\psk@IIIDzticksep{#1}}
\define@key[psset]{pst-3dplot}{nameX}{% start of the object arrow
\edef\psk@ThreeDplot@nameX{#1}}
\define@key[psset]{pst-3dplot}{spotX}{% where to draw the label
\edef\psk@ThreeDplot@spotX{#1}}
\define@key[psset]{pst-3dplot}{nameY}{\edef\psk@ThreeDplot@nameY{#1}}
\define@key[psset]{pst-3dplot}{spotY}{\edef\psk@ThreeDplot@spotY{#1}}
\define@key[psset]{pst-3dplot}{nameZ}{\edef\psk@ThreeDplot@nameZ{#1}}
\define@key[psset]{pst-3dplot}{spotZ}{\edef\psk@ThreeDplot@spotZ{#1}}
%
% ### begin Torsten Suhling
\define@key[psset]{pst-3dplot}{planecorr}{% make plane tags readable
\edef\psk@ThreeDplot@planecorr{#1}}
\def\ThreeDplot@planecorrOff{off} % default
\def\ThreeDplot@planecorrNormal{normal} % make planes readable
\def\ThreeDplot@planecorrXYrot{xyrot} % and put tag for xy-plane
% % parallel to the y-axis
% ### end Torsten Suhling
%
\def\psds@none{\pst@gdot{}}% define none for the dotstyle
%
\newpsstyle{hiddenStyle}{fillstyle=solid,fillcolor=white}
\newcount\pst@cntx\newcount\pst@cnty\newcount\pst@cntz
\newdimen\pst@dimx\newdimen\pst@dimy\newdimen\pst@dimz
%
\define@key[psset]{pst-3dplot}{planeGrid}{\edef\psk@planeGrid{#1}}
\define@key[psset]{pst-3dplot}{planeGridOffset}{\edef\psk@planeGridOffset{#1}}
\define@key[psset]{pst-3dplot}{subticks}{\edef\psk@xsubticks{#1}\edef\psk@ysubticks{#1}}
\define@key[psset]{pst-3dplot}{xsubticks}{\edef\psk@xsubticks{#1}}
\define@key[psset]{pst-3dplot}{ysubticks}{\edef\psk@ysubticks{#1}}
%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% B A S I C S %
% %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
\pstheader{pst-3dplot.pro}
\def\pst@3ddict{tx@3DPlotDict begin }
\def\tx@saveCoor{\pst@3ddict saveCoor end }
\def\tx@ConvertTo2D{\pst@3ddict ConvertTo2D end }
\def\tx@SphericalCoor{\pst@3ddict SphericalCoor end }
\def\tx@ConvertToCartesian{\pst@3ddict ConvertToCartesian end }
%
\def\setDefaults{%
\psset[pst-3dplot]{%
drawing=true,hiddenLine=false,xMin=-1,xMax=4,yMin=-1,yMax=4,zMin=-1,zMax=4,%
xThreeDunit=1.0,yThreeDunit=1.0,zThreeDunit=1.0,Alpha=45,Beta=30,%
drawStyle=xLines,xPlotpoints=25,yPlotpoints=25,beginAngle=0,endAngle=360,%
linejoin=1,XO=0,YO=0,angleStep=1,posStart=0,length=2,arrowOffset=0,%
visibleLineStyle=solid,invisibleLineStyle=dashed,nameX=$x$,spotX=180,%
nameY=$y$,spotY=0,nameZ=$z$,spotZ=90,plane=xy,pOrigin=c,SphericalCoor=false,%
Dz=1,IIIDticks=false,IIIDxTicksPlane=xy,IIIDyTicksPlane=yz,IIIDzTicksPlane=yz,%
IIIDticksize=0.1,IIIDxticksep=-0.4,IIIDyticksep=-0.2,IIIDzticksep=0.2,
planecorr=off,%
planeGrid=xy,planeGridOffset=0,subticks=10%
}%
}
\setDefaults
%
% (#1) -> #1 #2 #3
\def\getThreeDCoor#1#2{\pst@getThreeDcoor(#1)\let#2\pst@coorIIID}
\def\pst@getThreeDcoor(#1,#2,#3){%
\edef\pst@coorIIID{#1\space #2\space #3\space}%
}
\def\pst@addThreeDVec(#1)(#2)#3#4#5{%
\pst@calcThreeDVec(#1)(#2)%
\let#3\pst@getValueX%
\let#4\pst@getValueY%
\let#5\pst@getValueZ%
}
\def\pst@subThreeDVec(#1)(#2,#3,#4)#5#6#7{%
\pst@calcThreeDVec(#1)(-#2,-#3,-#4)%
\let#5\pst@getValueX%
\let#6\pst@getValueY%
\let#7\pst@getValueZ%
}
\def\pst@calcThreeDVec(#1,#2,#3)(#4,#5,#6){{%
\pst@dima=#1 pt%
\pst@dimb=#2 pt%
\pst@dimc=#3 pt%
\pst@dimf=#4 pt%
\pst@dimg=#5 pt%
\pst@dimh=#6 pt%
\advance\pst@dima by \pst@dimf%
\advance\pst@dimb by \pst@dimg%
\advance\pst@dimc by \pst@dimh%
\xdef\pst@getValueX{\pst@number\pst@dima}%
\xdef\pst@getValueY{\pst@number\pst@dimb}%
\xdef\pst@getValueZ{\pst@number\pst@dimc}%
}}%
%
% the ThreeD coordinate system
%
\def\psxyzlabel#1{\bgroup\footnotesize\textsf{#1}\egroup}
%
\def\pstThreeDCoor{\@ifnextchar[{\pst@ThreeDCoor}{\pst@ThreeDCoor[]}}
\def\pst@ThreeDCoor[#1]{{%
\pst@killglue%
\psset{linewidth=0.5pt,linecolor=red,arrows=->,dotstyle=|}%
\psset{#1}%
\pstThreeDNode(\psk@ThreeDplot@xMin,0,0){xMin}%
\pstThreeDNode(\psk@ThreeDplot@xMax,0,0){xMax}%
\pstThreeDNode(0,\psk@ThreeDplot@yMin,0){yMin}%
\pstThreeDNode(0,\psk@ThreeDplot@yMax,0){yMax}%
\pstThreeDNode(0,0,\psk@ThreeDplot@zMin){zMin}%
\pstThreeDNode(0,0,\psk@ThreeDplot@zMax){zMax}%
\ifPst@drawing% ThreeDplot axes
\psline(xMin)(xMax)%
\psline(yMin)(yMax)%
\psline(zMin)(zMax)%
\uput[\psk@ThreeDplot@spotX](xMax){\psk@ThreeDplot@nameX}%
\uput[\psk@ThreeDplot@spotY](yMax){\psk@ThreeDplot@nameY}%
\uput[\psk@ThreeDplot@spotZ](zMax){\psk@ThreeDplot@nameZ}%
\if@IIIDticks%
% \ifnum\psk@ThreeDplot@Alpha=90\else
\pst@dimx=\psk@ThreeDplot@xMax\p@%
\pst@dima=\psk@ThreeDplot@xThreeDunit\p@%
\divide\pst@dimx by \pst@dima%
\pst@cntx=\number\pst@dimx\advance\pst@cntx by -1%
\multido{%
\rA=\psk@Dx+\psk@Dx,%
\rB=\psk@ThreeDplot@xThreeDunit+\psk@ThreeDplot@xThreeDunit}{\pst@cntx}{%
\pstThreeDLine[arrows=-](\rB,-\psk@IIIDticksize,0)(\rB,\psk@IIIDticksize,0)%
\pstPlanePut[plane=\psk@IIIDxTicksPlane]%
(\rB,\psk@IIIDxticksep,0){\psxyzlabel{\rA}}%
}%
\pst@dimx=\psk@ThreeDplot@xMin\p@%
\pst@dima=\psk@ThreeDplot@xThreeDunit\p@%
\divide\pst@dimx by \pst@dima%
\ifnum\psk@ThreeDplot@xMin<\z@\pst@cntx=-\number\pst@dimx%
\else\pst@cntx=\number\pst@dimx%
\fi%
\multido{\rA=-\psk@Dx+-\psk@Dx,%
\rB=-\psk@ThreeDplot@xThreeDunit+-\psk@ThreeDplot@xThreeDunit}{\pst@cntx}{%
\pstThreeDLine[arrows=-](\rB,-\psk@IIIDticksize,0)(\rB,\psk@IIIDticksize,0)%
\pstPlanePut[plane=\psk@IIIDxTicksPlane](\rB,\psk@IIIDxticksep,0){\psxyzlabel{\rA}}%
}%
% \fi%
% \ifnum\psk@ThreeDplot@Alpha=0\else
\pst@dimy=\psk@ThreeDplot@yMax\p@%
\pst@dima=\psk@ThreeDplot@yThreeDunit\p@%
\divide\pst@dimy by \pst@dima%
\pst@cnty=\number\pst@dimy\advance\pst@cnty by -1%
\mmultido{\rA=0.0+\psk@Dy,\rB=0.0+\psk@ThreeDplot@yThreeDunit}{\pst@cnty}{%
\pstThreeDLine[arrows=-](-\psk@IIIDticksize,\rB,0)(\psk@IIIDticksize,\rB,0)%
\pstPlanePut[plane=\psk@IIIDyTicksPlane](\psk@IIIDyticksep,\rB,0){\psxyzlabel{\rA}}%
}%
\pst@dimy=\psk@ThreeDplot@yMin\p@%
\pst@dima=\psk@ThreeDplot@yThreeDunit\p@%
\divide\pst@dimy by \pst@dima%
\ifnum\psk@ThreeDplot@yMin<\z@\pst@cnty=-\number\pst@dimy%
\else\pst@cnty=\number\pst@dimy%
\fi%
\multido{\rA=-\psk@Dy+-\psk@Dy,%
\rB=-\psk@ThreeDplot@yThreeDunit+-\psk@ThreeDplot@yThreeDunit}{\pst@cnty}{%
\pstThreeDLine[arrows=-](-\psk@IIIDticksize,\rB,0)(\psk@IIIDticksize,\rB,0)%
\pstPlanePut[plane=\psk@IIIDyTicksPlane](\psk@IIIDyticksep,\rB,0){\psxyzlabel{\rA}}%
}%
% \fi%
\pst@dimz=\psk@ThreeDplot@zMax\p@%
\pst@dima=\psk@ThreeDplot@zThreeDunit\p@%
\divide\pst@dimz by \pst@dima%
\pst@cntz=\number\pst@dimz\advance\pst@cntz by -1%
\mmultido{\rA=0.0+\psk@Dz,\rB=0.0+\psk@ThreeDplot@zThreeDunit}{\pst@cntz}{%
\pstThreeDLine[arrows=-](0,-\psk@IIIDticksize,\rB)(0,\psk@IIIDticksize,\rB)%
\pstPlanePut[plane=\psk@IIIDzTicksPlane](0,\psk@IIIDzticksep,\rB){\psxyzlabel{\rA}}%
}%
\pst@dimz=\psk@ThreeDplot@zMin\p@%
\pst@dima=\psk@ThreeDplot@zThreeDunit\p@%
\divide\pst@dimz by \pst@dima%
\ifnum\psk@ThreeDplot@zMin<\z@\pst@cntz=-\number\pst@dimz%
\else\pst@cntz=\number\pst@dimz%
\fi%
\multido{\rA=-\psk@Dz+-\psk@Dz,%
\rB=-\psk@ThreeDplot@zThreeDunit+-\psk@ThreeDplot@zThreeDunit}{\pst@cntz}{%
\pstThreeDLine[arrows=-](0,-\psk@IIIDticksize,\rB)(0,\psk@IIIDticksize,\rB)%
\pstPlanePut[plane=\psk@IIIDzTicksPlane](0,\psk@IIIDzticksep,\rB){\psxyzlabel{\rA}}%
}%
\fi\fi%
}\ignorespaces}
%
% planeGrids
%
\newdimen\pst@dx\newdimen\pst@dy
\def\pstThreeDPlaneGrid{\pst@object{pstThreeDPlaneGrid}}
\def\pstThreeDPlaneGrid@i(#1,#2)(#3,#4){{%
\pst@killglue
\use@par
\pssetxlength\pst@dima{#1}
\pssetxlength\pst@dimb{#3}
\advance\pst@dimb by -\pst@dima
\divide\pst@dimb by \psk@xsubticks
\pst@dx=\pst@dimb
%
\pssetylength\pst@dima{#2}
\pssetylength\pst@dimb{#4}
\advance\pst@dimb by -\pst@dima
\divide\pst@dimb by \psk@ysubticks
\pst@dy=\pst@dimb
%
\pssetylength\pst@dimx{#2}
\pssetylength\pst@dimy{#4}
\pssetylength\pst@dimz{#1}
\pssetylength\pst@dimf{#3}
\pst@getlength\psk@planeGridOffset\pst@dima
\pst@cntx=\psk@xsubticks\advance\pst@cntx by \@ne
\pst@cnty=\psk@ysubticks\advance\pst@cnty by \@ne
\psset{unit=1pt,planeGridOffset=\pst@dima}% we need everything in pt
\ifx\psk@planeGrid\ThreeDplot@planeXY
\multido{\rA=#1+\strip@pt\pst@dx}{\pst@cntx}{%
\pstThreeDLine(\rA,\strip@pt\pst@dimx,\psk@planeGridOffset)%
(\rA,\strip@pt\pst@dimy,\psk@planeGridOffset)}
\multido{\rA=#2+\strip@pt\pst@dy}{\pst@cnty}{%
\pstThreeDLine(\strip@pt\pst@dimz,\rA,\psk@planeGridOffset)%
(\strip@pt\pst@dimf,\rA,\psk@planeGridOffset)}
\else
\ifx\psk@planeGrid\ThreeDplot@planeXZ
\multido{\rA=#1+\strip@pt\pst@dx}{\pst@cntx}{%
\pstThreeDLine(\rA,\psk@planeGridOffset,\strip@pt\pst@dimx)%
(\rA,\psk@planeGridOffset,\strip@pt\pst@dimy)}
\multido{\rA=#2+\strip@pt\pst@dy}{\pst@cnty}{%
\pstThreeDLine(\strip@pt\pst@dimz,\psk@planeGridOffset,\rA)%
(\strip@pt\pst@dimf,\psk@planeGridOffset,\rA)}
\else
\multido{\rA=#1+\strip@pt\pst@dx}{\pst@cntx}{%
\pstThreeDLine(\psk@planeGridOffset,\rA,\strip@pt\pst@dimx)%
(\psk@planeGridOffset,\rA,\strip@pt\pst@dimy)}
\multido{\rA=#2+\strip@pt\pst@dy}{\pst@cnty}{%
\pstThreeDLine(\psk@planeGridOffset,\strip@pt\pst@dimz,\rA)%
(\psk@planeGridOffset,\strip@pt\pst@dimf,\rA)}
\fi
\fi%
}\ignorespaces}
%
% put anything at (#2,#3,#4)
%
\def\pstThreeDPut{\@ifnextchar[{\pst@ThreeDPut}{\pst@ThreeDPut[]}}
\def\pst@ThreeDPut[#1](#2,#3,#4)#5{{%
\pst@killglue%
\psset{#1}%
\pstThreeDNode(#2,#3,#4){temp@pstNode}%
% \def\@tempa{c}
% \ifx\pst@ThreeDplot@pOrigin\@tempa%
% \rput(temp@pstNode){#5}%
% \else%
\rput[\psk@ThreeDplot@pOrigin](temp@pstNode){#5}%
% \fi%
}\ignorespaces}
%
% draws a 3d line
%
\def\cartesianIIID@coor#1,#2,#3,#4\@nil{\edef\pst@coor{#1 #2 #3 }}
\def\NormalIIIDCoor{%
\def\pst@@getcoor##1{\pst@expandafter\cartesianIIID@coor{##1}, ,\@nil}%
\def\pst@@getangle##1{%
\pst@checknum{##1}\pst@angle%
\edef\pst@angle{\pst@angle \pst@angleunit}%
}%
\def\psput@##1{\pst@@getcoor{##1}\leavevmode\psput@cartesian}%
}%
\def\pstThreeDLine{\NormalIIIDCoor\pst@object{lineIIID}}
\def\lineIIID@i{%
\pst@killglue%
\pst@getarrows{%
\begin@OpenObj%
\pst@getcoors[\lineIIID@ii%
}%
}
\def\lineIIID@ii{%
\addto@pscode{%
\pst@3ddict
/dxUnit \psk@ThreeDplot@xThreeDunit\space def
/dyUnit \psk@ThreeDplot@yThreeDunit\space def
/dzUnit \psk@ThreeDplot@zThreeDunit\space def
/Alpha \psk@ThreeDplot@Alpha\space def %
/Beta \psk@ThreeDplot@Beta\space def %
\ifPst@SphericalCoor /SphericalCoor true def
\else /SphericalCoor false def
\fi %
/xUnit { \pst@number\psxunit\space mul } def
/yUnit { \pst@number\psyunit\space mul } def
convertStackTo2D
end
\pst@cp\space \psline@iii\space \tx@Line
}%
\end@OpenObj%
\SpecialCoor%
\ignorespaces
}
%
% set a 3d dot
%
\def\pstThreeDDot{\@ifnextchar[{\pst@ThreeDDot}{\pst@ThreeDDot[]}}
\def\pst@ThreeDDot[#1](#2,#3,#4){{%
\pst@killglue
\psset{linestyle=dashed,linewidth=0.5pt}% default
\psset{#1}%
\pstThreeDNode[#1](#2,#3,#4){A}%
\ifx\psk@dotstyle\@none\else\psdots(A)\fi%
\ifPst@drawCoor%
\pnode(!%
\pst@3ddict
/Alpha \psk@ThreeDplot@Alpha\space def
/Beta \psk@ThreeDplot@Beta\space def
\ifPst@SphericalCoor
#2\space #3\space #4\space
ConvertToCartesian /z 0 def
\else
/x #2\space\psk@ThreeDplot@xThreeDunit\space mul def
/y #3\space\psk@ThreeDplot@yThreeDunit\space mul def
/z 0 def
\fi
ConvertTo2D x2D y2D
end ){B}
\psline(A)(B)%
\pnode(!% y=0, z=0
\pst@3ddict
\ifPst@SphericalCoor
#2\space #3\space #4\space
ConvertToCartesian /y 0 def /z 0 def
\else
/x #2\space\psk@ThreeDplot@xThreeDunit\space mul def
/y 0 def /z 0 def
\fi
ConvertTo2D x2D y2D
end ){A}%
\psline(B)(A)%
\pnode(!% x=0, z=0
\pst@3ddict
\ifPst@SphericalCoor
#2\space #3\space #4\space
ConvertToCartesian /x 0 def /z 0 def
\else
/x 0 def
/y #3\space\psk@ThreeDplot@yThreeDunit\space mul def
/z 0 def
\fi
ConvertTo2D x2D y2D
end ){A}%
\psline(B)(A)%
\fi%
}\ignorespaces}
%
% transform the 3d coordinates of the node (#1,#2,#3)
% into a 2d node with the name #4
%
\def\pstThreeDNode{\@ifnextchar[{\pst@ThreeDNode}{\pst@ThreeDNode[]}}
\def\pst@ThreeDNode[#1](#2,#3,#4)#5{{%
\psset{#1}%
\pnode(!%
\pst@3ddict
/Alpha \psk@ThreeDplot@Alpha\space def
/Beta \psk@ThreeDplot@Beta\space def
\ifPst@SphericalCoor
#2\space #3\space #4\space
ConvertToCartesian
\else
/x #2\space\psk@ThreeDplot@xThreeDunit\space mul def
/y #3\space\psk@ThreeDplot@yThreeDunit\space mul def
/z #4\space\psk@ThreeDplot@zThreeDunit\space mul def
\fi
ConvertTo2D x2D y2D end ){#5}%
}\ignorespaces}
%
% a 3d uput[](){}
%
\def\pstUThreeDPut{\@ifnextchar[{\pst@UThreeDPut}{\pst@UThreeDPut[]}}
\def\pst@UThreeDPut[#1](#2,#3,#4)#5{{%
\uput[#1](!%
\pst@3ddict
/Alpha \psk@ThreeDplot@Alpha\space def
/Beta \psk@ThreeDplot@Beta\space def
\ifPst@SphericalCoor
#2\space #3\space #4\space
ConvertToCartesian
\else
/x #2\space\psk@ThreeDplot@xThreeDunit\space mul def
/y #3\space\psk@ThreeDplot@yThreeDunit\space mul def
/z #4\space\psk@ThreeDplot@zThreeDunit\space mul def
\fi
ConvertTo2D x2D y2D
end ){#5}%
}\ignorespaces}
%
% Trangle [options](Point1)(Point2)(Point3)
%
\def\pstThreeDTriangle{\@ifnextchar[%
{\do@ThreeDTriangle}%
{\do@ThreeDTriangle[]}%
}
\def\do@ThreeDTriangle[#1](#2)(#3)(#4){{%
\ifx#1\empty\else\psset{#1}\fi%
\ifPst@drawCoor%
\pstThreeDDot[drawCoor=true](#2)%
\pstThreeDDot[drawCoor=true](#3)%
\pstThreeDDot[drawCoor=true](#4)%
\fi%
\pstThreeDNode(#2){A}%
\pstThreeDNode(#3){B}%
\pstThreeDNode(#4){C}%
\ifx\psk@fillstyle\@none%
\else%
\pscustom{%
\code{\psk@ThreeDplot@linejoin\space setlinejoin}%
\fi%
\psline[#1](A)(B)(C)(A)(B)%
\ifx\psk@fillstyle\@none\else}\fi%
}\ignorespaces}
%
% draws a threeD square as a polygon
%
% [#1] options
% (#2) starting vector ax,ay,az
% (#3) first direction vector ux,uy,uz
% (#4) second direction vector wx,wy,wz
%
\def\pstThreeDSquare{\pst@object{squareIIID}}
\def\squareIIID@i{\squareIIID@ii}
\def\squareIIID@ii(#1)(#2)(#3){%
\ifPst@drawCoor%
{%
\psset{linestyle=dashed,linewidth=0.5pt}%
\pstThreeDDot(#1)%
\pst@addThreeDVec(#1)(#2)\pst@tempa\pst@tempb\pst@tempc%
\pstThreeDDot(\pst@tempa,\pst@tempb,\pst@tempc)%
\pst@addThreeDVec(#1)(#3)\pst@tempa\pst@tempb\pst@tempc
\pstThreeDDot(\pst@tempa,\pst@tempb,\pst@tempc)%
\pst@addThreeDVec(\pst@tempa,\pst@tempb,\pst@tempc)%
(#2)\pst@tempa\pst@tempb\pst@tempc%
\pstThreeDDot(\pst@tempa,\pst@tempb,\pst@tempc)%
}%
\fi%
\getThreeDCoor{#1}\pst@tempa%
\getThreeDCoor{#2}\pst@tempb%
\getThreeDCoor{#3}\pst@tempc%
\begin@OpenObj
\addto@pscode{%
/P1 { \pst@tempa\space } def % x y z or Radius longitude lattitude
/P2 { \pst@tempb\space } def %
/P3 { \pst@tempc\space } def %
/Alpha \psk@ThreeDplot@Alpha\space def %
/Beta \psk@ThreeDplot@Beta\space def %
/SphericalCoor \ifPst@SphericalCoor true \else false \fi def %
/xUnit { \pst@number\psxunit\space mul } def
/yUnit { \pst@number\psyunit\space mul } def
/dxUnit \psk@ThreeDplot@xThreeDunit\space def
/dyUnit \psk@ThreeDplot@yThreeDunit\space def
/dzUnit \psk@ThreeDplot@zThreeDunit\space def
\pst@3ddict
P1 saveCoor
SphericalCoor {ConvertToCartesian} if
ConvertTo2D
/x0 x2D xUnit def /y0 y2D yUnit def
P2 saveCoor
SphericalCoor {ConvertToCartesian} if
ConvertTo2D
/x1 x2D xUnit x0 add def /y1 y2D yUnit y0 add def
P3 saveCoor
SphericalCoor {ConvertToCartesian} if
ConvertTo2D
/x2 x2D xUnit x1 add def /y2 y2D yUnit y1 add def
P2 saveCoor
SphericalCoor {ConvertToCartesian} if
ConvertTo2D
/x3 x2D xUnit neg x2 add def /y3 y2D yUnit neg y2 add def
[ x0 y0 x1 y1 x2 y2 x3 y3 x0 y0
\pst@cp\space \psline@iii\space \tx@Line\space
end
}%
\end@OpenObj%
}
%
% draws a threeD Box
% [#1] options
% (#2) first direction vector ux,uy,uz
% (#3) second direction vector vx,vy,vz
% (#4) third direction vector wx,wy,wz
%
\def\pstThreeDBox{\@ifnextchar[{\doThreeDBox}{\doThreeDBox[]}}
\def\doThreeDBox[#1](#2)(#3)(#4)(#5){{%
\pst@killglue%
\psset{linestyle=\psk@ThreeDplot@invisibleLineStyle}%
\psset{#1}%
%
% \psset{linestyle=dashed}
% \psset{linestyle=\psk@ThreeDplot@invisibleLineStyle}
\addto@par{linestyle=\psk@ThreeDplot@invisibleLineStyle}
\pstThreeDSquare[#1](#2)(#4)(#5) % lower square
\pstThreeDSquare(#2)(#3)(#4)% back square
%
\psset{linestyle=\psk@ThreeDplot@visibleLineStyle}
\pst@addThreeDVec(#2)(#4)\pst@tempa\pst@tempb\pst@tempc
\pstThreeDSquare(\pst@tempa,\pst@tempb,\pst@tempc)(#3)(#5)% left square
\pst@addThreeDVec(#2)(#3)\pst@tempa\pst@tempb\pst@tempc
\pstThreeDSquare(\pst@tempa,\pst@tempb,\pst@tempc)(#4)(#5)% top square
\pst@addThreeDVec(#2)(#5)\pst@tempa\pst@tempb\pst@tempc
\pstThreeDSquare(\pst@tempa,\pst@tempb,\pst@tempc)(#3)(#4)% front square
%
}\ignorespaces}
%
% Sphere
%
\def\pstThreeDSphere{\@ifnextchar[{\pst@ThreeDSphere}{\pst@ThreeDSphere[]}}
\def\pst@ThreeDSphere[#1](#2,#3,#4)#5{{%
\psset{THETA=\psk@ThreeDplot@Beta,PHI=\psk@ThreeDplot@Beta,Dobs=10,Decran=10}%
\psset{#1}%
\pstThreeDNode(#2,#3,#4){SphereCenter}%
\rput(SphereCenter){\SphereThreeD(0,0,0){#5}}%
}\ignorespaces}
%
% set a 3d ellipse/circle
%
% #1 options
% #2 center cx,cy,cz
% #3 radius ax,ay,az
% #4 radius bx,by,bz
%
\def\pstThreeDEllipse{\@ifnextchar[{\doThreeDEllipse}{\doThreeDEllipse[]}}
\def\doThreeDEllipse[#1](#2)(#3)(#4){{%
\psset{plotstyle=curve,xPlotpoints=\psk@plotpoints}%
\psset{#1}%
\getThreeDCoor{#2}\pst@tempc% center
\getThreeDCoor{#3}\pst@tempa% a
\getThreeDCoor{#4}\pst@tempb% b
\parametricplotThreeD(\psk@ThreeDplot@beginAngle,\psk@ThreeDplot@endAngle){%
\pst@3ddict
/dxUnit \psk@ThreeDplot@xThreeDunit\space def
/dyUnit \psk@ThreeDplot@yThreeDunit\space def
/dzUnit \psk@ThreeDplot@zThreeDunit\space def
\pst@tempc\space
\ifPst@SphericalCoor ConvertToCartesian \else saveCoor \fi
x y z
\pst@tempa\space
\ifPst@SphericalCoor ConvertToCartesian \else saveCoor \fi
x y z
\pst@tempb\space
\ifPst@SphericalCoor ConvertToCartesian \else saveCoor \fi
x y z
9 -1 roll t cos 8 -1 roll neg mul add t sin 5 -1 roll mul add
7 -1 roll t cos 7 -1 roll neg mul add t sin 5 -1 roll mul add
5 -1 roll t cos 6 -1 roll neg mul add t sin 5 -1 roll mul add
end
}%
}\ignorespaces}
%
\def\pstThreeDCircle{\pstThreeDEllipse}
\def\pstThreeDPlotFunc{\psplotThreeD}% only for compatibility
%
\def\pstRotPoint{\@ifnextchar[{\pstRotPointi}{\pstRotPointi[]}}
\def\pstRotPointi[#1](#2,#3,#4)(#5,#6,#7)#8{{%
\psset{#1}%
\def\pst@ThreeDplot@ThetaX{#5}% rotating angle
\def\pst@ThreeDplot@ThetaY{#6}% rotating angle
\def\pst@ThreeDplot@ThetaZ{#7}% rotating angle
\pnode(!%
\pst@3ddict
/Alpha \psk@ThreeDplot@Alpha\space def
/Beta \psk@ThreeDplot@Beta\space def
\ifPst@SphericalCoor
#2\space #3\space #4\space
ConvertToCartesian
\else
/x #2\space\psk@ThreeDplot@xThreeDunit\space mul def
/y #3\space\psk@ThreeDplot@yThreeDunit\space mul def
/z #4\space\psk@ThreeDplot@zThreeDunit\space mul def
\fi
% rotating on the z-Axes
/Theta \pst@ThreeDplot@ThetaZ\space def
/x0 x Theta cos mul y Theta sin mul sub def
/y x Theta sin mul y Theta cos mul add def
/x x0 def
% rotating on the y-Axes
/Theta \pst@ThreeDplot@ThetaY\space def
/x0 x Theta cos mul z Theta sin mul add def
/z x neg Theta sin mul z Theta cos mul add def
/x x0 def
% rotating on the x-Axes
/Theta \pst@ThreeDplot@ThetaX\space def
/y0 y Theta cos mul z Theta sin mul sub def
/z y Theta sin mul z Theta cos mul add def
/y y0 def
%
ConvertTo2D x2D y2D
end ){#8}%
}\ignorespaces}
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
\def\psplotinit#1{\xdef\psplot@init{#1 }}
\def\psplot@init{}
%
%\def\psplotThreeD{\@ifnextchar[{\ps@plotThreeD}{\ps@plotThreeD[]}}
\def\psplotThreeD{\def\pst@par{}\pst@object{psplotThreeD}}
\def\psplotThreeD@i(#1,#2)(#3,#4)#5{{%
\use@par%
\ifcase\psk@ThreeDplot@drawStyle%
\psplotThreeD@xLines(#1,#2)(#3,#4){#5}\or%
\psplotThreeD@yLines(#1,#2)(#3,#4){#5}\or
\psplotThreeD@xLines(#1,#2)(#3,#4){#5}%
\psplotThreeD@yLines(#1,#2)(#3,#4){#5}\or%
\psplotThreeD@yLines(#1,#2)(#3,#4){#5}%
\psplotThreeD@xLines(#1,#2)(#3,#4){#5}%
\fi%
}\ignorespaces}
%
%\def\doPlotThreeD@xLines{\pst@object{psplotThreeD@xLines}}
%\def\doPlotThreeD@yLines{\pst@object{psplotThreeD@yLines}}
%
\def\psplotThreeD@xLines(#1,#2)(#3,#4)#5{%
\pst@killglue%
\begingroup%
% \use@par%
\@pstfalse%
\@nameuse{beginplot@\psplotstyle}%
\gdef\psplot@init{}%
\@nameuse{testqp@\psplotstyle}%
\if@pst% lines and dots
\addto@pscode{%
/Alpha \psk@ThreeDplot@Alpha\space def
/Beta \psk@ThreeDplot@Beta\space def
/xMin #1 def
/x xMin def
/x1 #2 def
/y #3 def
/y1 #4 def
/dx x1 x sub \psk@ThreeDplot@xPlotpoints\space dup 0 gt {div}{pop} ifelse def
/dy y1 y sub \psk@ThreeDplot@yPlotpoints\space dup 0 gt {div}{pop} ifelse def
/func {#5} def
/xyz {
x neg Alpha cos mul y Alpha sin mul add \pst@number\psxunit mul
x Alpha sin mul y Alpha cos mul add neg Beta sin mul
func Beta cos mul add \pst@number\psyunit mul} def
}%
\psplotThreeD@xLines@ii
\else% curves
\endgroup
\multido{\n@Y=0+1}{\psk@ThreeDplot@yPlotpoints}{%
\ifPst@hiddenLine\pscustom[style=hiddenStyle]{\fi
\@nameuse{beginplot@\psplotstyle}%
\addto@pscode{%
/Alpha \psk@ThreeDplot@Alpha\space def
/Beta \psk@ThreeDplot@Beta\space def
/xMin #1 def
/x xMin def
/x1 #2 def
/dx x1 x sub \psk@ThreeDplot@xPlotpoints\space dup 0 gt {div}{pop} ifelse def
/dy #4\space #3\space sub \psk@ThreeDplot@yPlotpoints\space dup 0 gt {div}{pop} ifelse def
/y #3\space \n@Y\space dy mul add def
/func {#5} def
/xyz {
x neg Alpha cos mul y Alpha sin mul add \pst@number\psxunit mul
x Alpha sin mul y Alpha cos mul add neg Beta sin mul
func Beta cos mul add \pst@number\psyunit mul} def
}%
\psplotThreeD@xLines@iii%
\ifPst@hiddenLine }\fi%
}%
\fi
\endgroup
\ignorespaces%
}
%
\def\psplotThreeD@xLines@ii{%
\addto@pscode{%
xyz \@nameuse{beginqp@\psplotstyle}
\psk@ThreeDplot@yPlotpoints\space 1 add {
/x xMin def
% xyz moveto
\psk@ThreeDplot@xPlotpoints\space 1 add {
xyz \@nameuse{doqp@\psplotstyle}
/x x dx add def
} repeat
/y y dy add def
} repeat
/x x1 def
/y y1 def
xyz \@nameuse{doqp@\psplotstyle}
}%
\@nameuse{endqp@\psplotstyle}%
}
\def\psplotThreeD@xLines@iii{% curves
\addto@pscode{%
/x xMin def
mark
/n 2 def
\psk@ThreeDplot@xPlotpoints {
xyz
n 2 roll
/n n 2 add def
/x x dx add def
} repeat
/x x1 def
xyz
n 2 roll
}%
\@nameuse{endplot@\psplotstyle}%
}
%
\def\psplotThreeD@yLines(#1,#2)(#3,#4)#5{%
\pst@killglue
\begingroup
% \use@par%
\@pstfalse
\@nameuse{beginplot@\psplotstyle}%
\gdef\psplot@init{}%
\@nameuse{testqp@\psplotstyle}%
\if@pst% lines and dots
\addto@pscode{%
/Alpha \psk@ThreeDplot@Alpha\space def
/Beta \psk@ThreeDplot@Beta\space def
/x #1 def
/x1 #2 def
/yMin #3 def
/y yMin def
/y1 #4 def
/dx x1 x sub \psk@ThreeDplot@xPlotpoints\space dup 0 gt {div}{pop} ifelse def
/dy y1 y sub \psk@ThreeDplot@yPlotpoints\space dup 0 gt {div}{pop} ifelse def
/func {#5} def
/xyz {
x neg Alpha cos mul y Alpha sin mul add \pst@number\psxunit mul
x Alpha sin mul y Alpha cos mul add neg Beta sin mul
func Beta cos mul add \pst@number\psyunit mul} def
}%
\psplotThreeD@yLines@ii
\else% curves
\endgroup
\multido{\n@X=0+1}{\psk@ThreeDplot@xPlotpoints}{%
\ifPst@hiddenLine\pscustom[style=hiddenStyle]{\fi
\@nameuse{beginplot@\psplotstyle}%
\addto@pscode{%
/Alpha \psk@ThreeDplot@Alpha\space def
/Beta \psk@ThreeDplot@Beta\space def
/yMin #3 def
/y yMin def
/y1 #4 def
/dy y1 y sub \psk@ThreeDplot@yPlotpoints\space dup 0 gt {div}{pop} ifelse def
/dx #2\space #1\space sub \psk@ThreeDplot@xPlotpoints\space dup 0 gt {div}{pop} ifelse def
/x #1\space \n@X\space dx mul add def
/func {#5} def
/xyz {
x neg Alpha cos mul y Alpha sin mul add \pst@number\psxunit mul
x Alpha sin mul y Alpha cos mul add neg Beta sin mul
func Beta cos mul add \pst@number\psyunit mul} def
}%
\psplotThreeD@yLines@iii%
\ifPst@hiddenLine }\fi%
}%
\fi
\endgroup
\ignorespaces%
}
\def\psplotThreeD@yLines@ii{%
\addto@pscode{%
xyz \@nameuse{beginqp@\psplotstyle}
\psk@ThreeDplot@xPlotpoints\space 1 add {
/y yMin def
% xyz moveto
\psk@ThreeDplot@yPlotpoints\space 1 add {
xyz \@nameuse{doqp@\psplotstyle}
/y y dy add def
} repeat
/x x dx add def
} repeat
/x x1 def
/y y1 def
xyz \@nameuse{doqp@\psplotstyle}
}%
\@nameuse{endqp@\psplotstyle}%
}
\def\psplotThreeD@yLines@iii{% curves
\addto@pscode{%
/y yMin def
mark
/n 2 def
\psk@ThreeDplot@yPlotpoints {
xyz
n 2 roll
/n n 2 add def
/y y dy add def
} repeat
/y y1 def
xyz
n 2 roll
}%
\@nameuse{endplot@\psplotstyle}%
}
%
% parametricplot ----------------------------------------------------------------
%
\def\parametricplotThreeD{\def\pst@par{}\pst@object{parametricPlotThreeD}}
\def\parametricPlotThreeD@i(#1){%
\@ifnextchar({\parametricPlotThreeD@ii(#1)}{\parametricPlotThreeD@ii(#1)(0,0)}%
}
\def\parametricPlotThreeD@ii(#1,#2)(#3,#4)#5{{%
\pst@killglue%
\use@par%
\@pstfalse%
\@nameuse{beginplot@\psplotstyle}%
\@nameuse{testqp@\psplotstyle}% quick plot or something special
\pstVerb{%
/Alpha \psk@ThreeDplot@Alpha\space def
/Beta \psk@ThreeDplot@Beta\space def
/3D2DConv {
3 -1 roll % y z x
\psk@ThreeDplot@xThreeDunit\space mul
dup % y z x x
neg Alpha cos mul % y z x (x)
4 -1 roll % z x (x) y
\psk@ThreeDplot@yThreeDunit\space mul
dup % z x (x) y y
5 1 roll % y z x (x) y
Alpha sin mul add \pst@number\psxunit mul % y z x (x2)
4 1 roll % (x2) y z x
Alpha sin mul % (x2) y z (x)
3 -1 roll % (x2) z (x) y
Alpha cos mul add neg Beta sin mul % (x2) z (x)
exch % (x2) (x) z
\psk@ThreeDplot@zThreeDunit\space mul
Beta cos mul add \pst@number\psyunit mul % (x2) (y2)
} def
}%
\if@pst%
\def\pslinetype{0}%
\addto@pscode{%
/tMin #1 def
/t tMin def
/t1 #2 def
/u #3 def
/u1 #4 def
/dt t1 t sub \psk@ThreeDplot@xPlotpoints\space dup 1 gt %
{ 1 sub div }{ pop pop 0 } ifelse def % step for t
/du u1 u sub \psk@ThreeDplot@yPlotpoints\space dup 1 gt %
{ 1 sub div }{ pop pop 0 } ifelse def % step for u
/xyz { #5 3D2DConv } def
}%
\parametricPlotThreeD@iii%
\else%
\def\pslinetype{-3}%
\endgroup%
\pst@dima=#3pt\pst@dimb=#4pt
\ifdim\pst@dima=\pst@dimb\psset{yPlotpoints=1}\fi% #3=#4 ??
\multido{\n@Y=0+1}{\psk@ThreeDplot@yPlotpoints}{%
\@nameuse{beginplot@\psplotstyle}%
\addto@pscode{%
/tMin #1 def
/t tMin def
/t1 #2 def
/u1 #2 def
/dt t1 t sub \psk@ThreeDplot@xPlotpoints\space dup 1 gt %
{ 1 sub div }{ pop pop 0 } ifelse def % step for t
/du #4\space #3\space sub \psk@ThreeDplot@yPlotpoints\space dup 1 gt %
{ 1 sub div }{ pop pop 0 } ifelse def % step for t
/u #3\space \n@Y\space du mul add def
/xyz { #5 3D2DConv } def
}%
\parametricPlotThreeD@iv%
}%
\fi%
}\ignorespaces}
\def\parametricPlotThreeD@iii{% without arrows (quickplot)
\addto@pscode{%
\psk@ThreeDplot@yPlotpoints\space {
/t tMin def
xyz \@nameuse{beginqp@\psplotstyle}
\psk@ThreeDplot@xPlotpoints {
xyz \@nameuse{doqp@\psplotstyle}
/t t dt add def
} repeat
/u u du add def
} repeat
}%
\@nameuse{endqp@\psplotstyle}%
}
\def\parametricPlotThreeD@iv{% with arrows or curve
\addto@pscode{%
% /t tMin def
mark
/n 0 def
\psk@ThreeDplot@xPlotpoints\space {
xyz
/n n 2 add def
n 2 roll
/t t dt add def
} repeat
% /t t1 def
% /u u1 def
% xyz
% n 2 roll
}%
\@nameuse{endplot@\psplotstyle}%
}
%
% Plot 3D data
%
\def\fileplotThreeD{\def\pst@par{}\pst@object{fileplotThreeD}}
\def\fileplotThreeD@i#1{%
\pst@killglue%
\begingroup%
\use@par%
\@pstfalse%
\@nameuse{testqp@\psplotstyle}%%
\if@pst
\dataplotThreeD@ii{\pst@readfile{#1}}%
\else
\listplotThreeD@ii{\pst@altreadfile{#1}}%
\fi
\endgroup%
\ignorespaces%
}
%
% dataplot
%
\def\dataplotThreeD{\def\pst@par{}\pst@object{dataplotThreeD}}
\def\dataplotThreeD@i#1{%
\pst@killglue
\begingroup
\use@par
\@pstfalse
\@nameuse{testqp@\psplotstyle}%
\if@pst
\dataplotThreeD@ii{\addto@pscode{#1}}%
\else
\listplot@ii{\addto@pscode{#1}}%
\fi
\endgroup
\ignorespaces%
}
\def\dataplotThreeD@ii#1{%
\@nameuse{beginplot@\psplotstyle}%
\addto@pscode{%
/Alpha \psk@ThreeDplot@Alpha\space def
/Beta \psk@ThreeDplot@Beta\space def
/Dx { /D { Dy } def } def
/Dy { /D { Dz } def } def
/Dz { % now we have x y z
3 -1 roll % y z x
\psk@ThreeDplot@xThreeDunit\space div
dup % y z x x
neg Alpha cos mul % y z x (x)
4 -1 roll % z x (x) y
\psk@ThreeDplot@yThreeDunit\space div
dup % z x (x) y y
5 1 roll % y z x (x) y
Alpha sin mul add \pst@number\psxunit mul % y z x (x2)
4 1 roll % (x2) y z x
Alpha sin mul % (x2) y z (x)
3 -1 roll % (x2) z (x) y
Alpha cos mul add neg Beta sin mul % (x2) z (x)
exch % (x2) (x) z
\psk@ThreeDplot@zThreeDunit\space div
Beta cos mul add \pst@number\psyunit mul % (x2) (y2)
Do /D { Dx } def } def
/D { /D { Dx } def } def
/Do {
\@nameuse{beginqp@\psplotstyle}%
/Do { \@nameuse{doqp@\psplotstyle}} def
} def}%
#1%
\addto@pscode{D}%
\@nameuse{endqp@\psplotstyle}%
}
%
%
\pst@def{ScalePointsThreeD}<%
counttomark dup dup cvi eq not { exch pop } if
/m exch def /n m 3 div cvi def
n { % now we have x y z
3 -1 roll % y z x
\psk@ThreeDplot@xThreeDunit\space div
dup % y z x x
neg Alpha cos mul % y z x (x)
4 -1 roll % z x (x) y
\psk@ThreeDplot@yThreeDunit\space div
dup % z x (x) y y
5 1 roll % y z x (x) y
Alpha sin mul add \pst@number\psxunit mul % y z x (x2)
4 1 roll % (x2) y z x
Alpha sin mul % (x2) y z (x)
3 -1 roll % (x2) z (x) y
Alpha cos mul add neg Beta sin mul % (x2) z (x)
exch % (x2) (x) z
\psk@ThreeDplot@zThreeDunit\space div
Beta cos mul add \pst@number\psyunit mul % (x2) (y2)
m 1 sub 1 roll m 1 sub 1 roll /m m 3 sub def } repeat>
%
% listplotThreeD
%
\def\listplotThreeD{\def\pst@par{}\pst@object{listplotThreeD}}
\def\listplotThreeD@i#1{\listplotThreeD@ii{\addto@pscode{#1}}}
\def\listplotThreeD@ii#1{%
\@nameuse{beginplot@\psplotstyle}%
\addto@pscode{%
/Alpha \psk@ThreeDplot@Alpha\space def
/Beta \psk@ThreeDplot@Beta\space def
/D {} def mark %
}%
#1%
\addto@pscode{\tx@ScalePointsThreeD}%
\@nameuse{endplot@\psplotstyle}%
}
%
% adopted from pst-3d
%
\pst@def{TMSave}<%
tx@Dict /TMatrix known not { /TMatrix { } def /RAngle { 0 } def } if
/TMatrix [ TMatrix CM ] cvx def>
%
\pst@def{TMRestore}<%
CP /TMatrix [ TMatrix setmatrix ] cvx def moveto>
%
\pst@def{TMChange}<%
\tx@TMSave
/cp [ currentpoint ] cvx def
CM
CP T \tx@STV
CM matrix invertmatrix
matrix concatmatrix
exch exec
concat cp moveto>
%
\def\pstPlanePut{\@ifnextchar[{\pst@PlanePut}{\pst@PlanePut[]}}
\def\pst@PlanePut[#1](#2)#3{{%
\pst@killglue%
\psset{pOrigin=lB}%
\psset{#1}%
\pstThreeDPut[#1](#2){\ps@Plane{#3}}%
}}
%
\def\ps@Plane{\pst@makebox{\psPlane@}}
\def\psPlane@{%
\begingroup
\leavevmode%
\hbox{%
% \kern\wd\pst@hbox%
\pst@Verb{%
{ [ 1 0
/Alpha \psk@ThreeDplot@Alpha\space def
/Beta \psk@ThreeDplot@Beta\space def
%
% ### begin Torsten Suhling
% ------------------------------------------------------------------------
% ===================================================================
% How should 'Alpha' be for planes, if real Alpha and Beta are:
% Alpha Beta xy xy (par. y-axis) yz xz
% -------------------------------------------------------------------
% 75 > 0[1] 180 + Alpha 90 + Alpha Alpha Alpha + 180
% 165 > 0 Alpha 90 + Alpha Alpha Alpha
% 255 > 0 Alpha 270 + Alpha Alpha + 180 Alpha
% 345 > 0 180 + Alpha 270 + Alpha Alpha + 180 Alpha + 180
% -------------------------------------------------------------------
% 75 < 0 180 - Alpha 270 - Alpha Alpha Alpha + 180
% 165 < 0 -Alpha 270 - Alpha Alpha Alpha
%
% 255 < 0 -Alpha 90 - Alpha Alpha + 180 Alpha
%
% 345 < 0 180 -Alpha 90 - Alpha Alpha + 180 Alpha + 180
% ------------------------------------------------------------------
% How should 'Beta' be for planes, if real Alpha and Beta are:
% Alpha Beta xy xy (par. y-axis) yz xz
% -------------------------------------------------------------------
% 75 > 0 Beta Beta Beta[2] Beta
% 165 > 0 Beta Beta Beta Beta
% 255 > 0 Beta Beta Beta Beta
% 345 > 0 Beta Beta Beta Beta
% ...................................................................
% 75 < 0 -Beta -Beta Beta Beta
% 165 < 0 -Beta -Beta Beta Beta
% 255 < 0 -Beta -Beta Beta Beta
% 345 < 0 -Beta -Beta Beta Beta
% ================================================================
\ifx\psk@ThreeDplot@planecorr\ThreeDplot@planecorrOff
/SignFlag 1 def
/AlphaOffset 0 def
\else%
\ifx\psk@ThreeDplot@plane\ThreeDplot@planeXY % XY-layer's tag
\ifx\psk@ThreeDplot@planecorr\ThreeDplot@planecorrXYrot % Tag written parallel y-axis
Beta sin 0 lt {/SignFlag -1}{/SignFlag 1}ifelse def
Alpha sin 0 gt {/AlphaOffset 180 -90 SignFlag mul add}
{/AlphaOffset 180 90 SignFlag mul add} ifelse def
\else% % Normal (par. x-axis)
Beta sin 0 gt {/SignFlag 1}{/SignFlag -1}ifelse def
Alpha cos 0 gt {/AlphaOffset 180}{/AlphaOffset 0}ifelse def
\fi%
\else % Vertical layers
\ifx\psk@ThreeDplot@plane\ThreeDplot@planeYZ % YZ-layer's tag
/SignFlag 1 def
Alpha sin 0 gt {/AlphaOffset 0}{/AlphaOffset 180}ifelse def
\else% % XZ-layer's tag
/SignFlag 1 def
Alpha cos 0 gt {/AlphaOffset 180}{/AlphaOffset 0}ifelse def
\fi% which vert. layer's tag
\fi% vert. or xy-layer's tag
\fi% planecorr or not
% ------------------------------------------------------------------ Ende
% ------------------------------------------------------------------------
% ### Aenderung --> es werden die Operatoren SignFlag und AlphaOffset
% eingefuegt
% ------------------------------------------------------------------------
% /Delta Beta sin Alpha sin mul Alpha cos atan neg 90 add def
% /Gamma Beta sin Alpha cos mul neg Alpha sin atan def
% ------------------------------------------------------------------------
/Delta Beta SignFlag mul sin Alpha SignFlag mul AlphaOffset add sin mul Alpha SignFlag mul AlphaOffset add cos atan neg 90 add def
/Gamma Beta SignFlag mul sin Alpha SignFlag mul AlphaOffset add cos mul neg Alpha SignFlag mul AlphaOffset add sin atan def
% ------------------------------------------------------------------- Ende
\ifx\psk@ThreeDplot@plane\ThreeDplot@planeXY
270 Delta sub rotate
/Rho 90 Gamma add Delta add def
\else%
\ifx\psk@ThreeDplot@plane\ThreeDplot@planeXZ
270 Delta sub rotate
/Rho 180 Delta add def
\else%
Gamma rotate
/Rho 90 Gamma sub def
\fi%
\fi%
Rho cos Rho sin 0 0 ] concat} \tx@TMChange%
}%
\box\pst@hbox%
\pst@Verb{\tx@TMRestore}%
% \kern\ht\pst@hbox%
}%
\endgroup%
}
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Utility stuff
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% posStart=Starting point
% length= Arrow length.
\def\Arrows{\@ifnextchar[{\pst@Arrows}{\pst@Arrows[]}}
\def\pst@Arrows[#1](#2)(#3){{%
\psset{#1}%
\pst@getcoor{#2}\pst@tempa
\pst@getcoor{#3}\pst@tempb
\pnode(!%
/StartArrow \psk@ThreeDplot@posStart\space def
/LengthArrow \psk@ThreeDplot@length\space def
\pst@tempa /YA exch \pst@number\psyunit div def
/XA exch \pst@number\psxunit div def
\pst@tempb /YB exch \pst@number\psyunit div def
/XB exch \pst@number\psxunit div def
/denominateur XB XA sub def
/numerateur YB YA sub def
/angleDirectionAB numerateur denominateur Atan def
/XD StartArrow angleDirectionAB cos mul XA add def
/YD StartArrow angleDirectionAB sin mul YA add def
/XF XD LengthArrow angleDirectionAB cos mul add def
/YF YD LengthArrow angleDirectionAB sin mul add def
XD YD ){ArrowStart}
\pnode(! XF YF){ArrowEnd}
\psset{arrows=->}
\psline[#1](ArrowStart)(ArrowEnd)%
}\ignorespaces}
%
% draw a line (===) outside: #2-----#3=======#4
%
\def\psOutLine{\@ifnextchar[{\pst@ToDrawOut}{\pst@ToDrawOut[]}}
\def\pst@ToDrawOut[#1](#2)(#3)#4{{%
\psset{#1}%
\pst@getcoor{#2}\pst@tempa
\pst@getcoor{#3}\pst@tempb
\pnode(!%
/LengthArrow \psk@ThreeDplot@length\space def
\pst@tempa /YA exch \pst@number\psyunit div def
/XA exch \pst@number\psxunit div def
\pst@tempb /YB exch \pst@number\psyunit div def
/XB exch \pst@number\psxunit div def
/denominateur XB XA sub def
/numerateur YB YA sub def
/angleDirectionAB numerateur denominateur Atan def
/Xend XB LengthArrow angleDirectionAB cos mul add def
/Yend YB LengthArrow angleDirectionAB sin mul add def
Xend Yend){#4}
\psline[#1](#3)(#4)
}\ignorespaces}
%
% draw a line (===) before: #4========#2-----#3
%
\def\psBeforeLine{\@ifnextchar[{\pst@BeforeLine}{\pst@BeforeLine[]}}
\def\pst@BeforeLine[#1](#2)(#3)#4{{%
\psset{#1}%
\pst@getcoor{#2}\pst@tempa
\pst@getcoor{#3}\pst@tempb
\pnode(!%
/LengthArrow \psk@ThreeDplot@length\space def
\pst@tempa /YA exch \pst@number\psyunit div def
/XA exch \pst@number\psxunit div def
\pst@tempb /YB exch \pst@number\psyunit div def
/XB exch \pst@number\psxunit div def
/denominateur XB XA sub def
/numerateur YB YA sub def
/angleDirectionAB numerateur denominateur Atan def
/Xstart XA LengthArrow angleDirectionAB cos mul sub def
/Ystart YA LengthArrow angleDirectionAB sin mul sub def
Xstart Ystart){#4}
\psline[#1](#4)(#2)%
}\ignorespaces}
%
% intersection de deux droites
% 2 juillet 2001/ rewritten 2003-01-27 Herbert
%
\def\ABinterCD(#1)(#2)(#3)(#4)#5{%
\pst@getcoor{#1}\pst@tempa
\pst@getcoor{#2}\pst@tempb
\pst@getcoor{#3}\pst@tempc
\pst@getcoor{#4}\pst@tempd
\pnode(!%
/YA \pst@tempa exch pop \pst@number\psyunit div def
/XA \pst@tempa pop \pst@number\psxunit div def
/YB \pst@tempb exch pop \pst@number\psyunit div def
/XB \pst@tempb pop \pst@number\psxunit div def
/YC \pst@tempc exch pop \pst@number\psyunit div def
/XC \pst@tempc pop \pst@number\psxunit div def
/YD \pst@tempd exch pop \pst@number\psyunit div def
/XD \pst@tempd pop \pst@number\psxunit div def
/dY1 YB YA sub def
/dX1 XB XA sub def
/dY2 YD YC sub def
/dX2 XD XC sub def
dX1 abs 0.01 lt {
/m2 dY2 dX2 div def
XA dup XC sub m2 mul YC add
}{
dX2 abs 0.01 lt {
/m1 dY1 dX1 div def
XC dup XA sub m1 mul YA add
}{%
/m1 dY1 dX1 div def
/m2 dY2 dX2 div def
m1 XA mul m2 XC mul sub YA sub YC add m1 m2 sub div dup
XA sub m1 mul YA add
} ifelse
} ifelse ){#5}
}
%
% draw a parallel line
% #2---------#3
% #4----------#5(new)
\def\Parallel{\@ifnextchar[{\pst@Parallel}{\pst@Parallel[]}}
\def\pst@Parallel[#1](#2)(#3)(#4)#5{{%
\psset{#1}%
\pst@getcoor{#2}\pst@tempa
\pst@getcoor{#3}\pst@tempb
\pst@getcoor{#4}\pst@tempc
\pnode(!%
/LengthArrow \psk@ThreeDplot@length\space def
\pst@tempa /YA exch \pst@number\psyunit div def
/XA exch \pst@number\psxunit div def
\pst@tempb /YB exch \pst@number\psyunit div def
/XB exch \pst@number\psxunit div def
\pst@tempc /YC exch \pst@number\psyunit div def
/XC exch \pst@number\psxunit div def
/denominateur XB XA sub def
/numerateur YB YA sub def
/angleDirectionAB numerateur denominateur Atan def
/XstartParallel XC LengthArrow angleDirectionAB cos mul add def
/YstartParallel YC LengthArrow angleDirectionAB sin mul add def
XstartParallel YstartParallel){#5}
\psline[#1](#4)(#5)
}\ignorespaces}
%
% arrowLine[options](A)(B){n}
% #2---->---->---->---->----#3 #4-arrows inside
\def\arrowLine{\@ifnextchar[{\pst@arrowLine}{\pst@arrowLine[]}}
\def\pst@arrowLine[#1](#2)(#3)#4{{%
\psset{arrowsize=4pt,arrows=->}% the defaults
\psset{#1}%
\def\pst@ThreeDplot@n{#4}%
\pst@getcoor{#2}\pst@tempa
\pst@getcoor{#3}\pst@tempb
\pnode(!%
/YA \pst@tempa exch pop \pst@number\psyunit div def
/XA \pst@tempa pop \pst@number\psxunit div def
/YB \pst@tempb exch pop \pst@number\psyunit div def
/XB \pst@tempb pop \pst@number\psxunit div def
/dY YB YA sub \pst@ThreeDplot@n\space 1 add div def
/dX XB XA sub \pst@ThreeDplot@n\space 1 add div def
/Alpha dY dX atan def
/dYOffset \psk@ThreeDplot@arrowOffset\space Alpha sin mul def
/dXOffset \psk@ThreeDplot@arrowOffset\space Alpha cos mul def
XA YA ){tempArrowC}
\multido{\i=1+1}{#4}{%
\pnode(!%
XA dX \i\space mul add dXOffset add
YA dY \i\space mul add dYOffset add ){tempArrowB}
\psline(tempArrowC)(tempArrowB)
\pnode(tempArrowB){tempArrowC}
}
\psline[arrows=-](tempArrowB)(#3)
}\ignorespaces}
%
% #1------#3------#2
\def\nodeBetween(#1)(#2)#3{% Herbert 2003/01/05
\pst@getcoor{#1}\pst@tempa
\pst@getcoor{#2}\pst@tempb
\pnode(!%
/XA \pst@tempa pop \pst@number\psxunit div def
/YA \pst@tempa exch pop \pst@number\psyunit div def
/XB \pst@tempb pop \pst@number\psxunit div def
/YB \pst@tempb exch pop \pst@number\psyunit div def
XB XA add 2 div YB YA add 2 div){#3}
}
%
% rotateNode(A)
% (A) the node
% #2 the angle
% Herbert Voss <voss@perce.de> 2003-01-26
\def\rotateNode{\pst@rotateNode}
\def\pst@rotateNode(#1)#2{{%
\pst@getcoor{#1}\pst@tempa%
\def\pst@ThreeDplot@angle{#2}% the rotating angle
\pnode(!%
/YA \pst@tempa exch pop \pst@number\psyunit div def
/XA \pst@tempa pop \pst@number\psxunit div def
YA 0 eq XA 0 eq and {0 0}{
/r XA dup mul YA dup mul add sqrt def
/AlphaOld YA XA atan def
/AlphaNew AlphaOld \pst@ThreeDplot@angle\space add def
r AlphaNew cos mul r AlphaNew sin mul
} ifelse ){temp}%
\pnode(temp){#1}%
}\ignorespaces}
%
\def\rotateTriangle{\pst@rotateTriangle}
\def\pst@rotateTriangle(#1)(#2)(#3)#4{{%
\rotateNode(#1){#4}%
\rotateNode(#2){#4}%
\rotateNode(#3){#4}%
}\ignorespaces}
%
\def\rotateFrame{\pst@rotateFrame}
\def\pst@rotateFrame(#1)(#2)(#3)(#4)#5{{%
\rotateNode(#1){#5}%
\rotateNode(#2){#5}%
\rotateNode(#3){#5}%
\rotateNode(#4){#5}%
}\ignorespaces}
\catcode`\@=\PstAtCode\relax
%
%% END: pst-3dplot.tex
\endinput
|