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
|
%% therion source code
%%
%% This file defines macros for line symbols
%%
%% $Date: 2003/07/01 09:06:44 $
%% $RCSfile: thLine.mp,v $
%% $Revision: 1.4 $
%%
%% Copyright (C) 2000 Martin Budaj
%%
%% --------------------------------------------------------------------
%% This program is free software; you can redistribute it and/or modify
%% it under the terms of the GNU General Public License as published by
%% the Free Software Foundation; either version 2 of the License, or
%% any later version.
%%
%% This program is distributed in the hope that it will be useful,
%% but WITHOUT ANY WARRANTY; without even the implied warranty of
%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
%% GNU General Public License for more details.
%%
%% You should have received a copy of the GNU General Public License
%% along with this program; if not, write to the Free Software
%% Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
%% --------------------------------------------------------------------
% some definitions
% adjust step according to the length of the path; return at least two steps
vardef adjust_step (expr len, s) =
if s <= len/2: len / (floor(len / s))
else: len/2 fi
enddef;
def mark_(expr p,t,l) =
thdraw (point t of p) --
((point t of p) + l * unitvector(thdir(p,t) rotated 90));
enddef;
vardef thdir (expr p,t) = % 1 * epsilon caused problems in scales < 1:1000
% n * epsilon is enough for scale 1:(n*1000)
if arclength(p)=0:
hide(thwarning("unable to determine direction on zero-length path"))
(0,1)
else:
% ((direction t-100*epsilon of p) + (direction t+100*epsilon of p)) / 2
postcontrol (t+1000*epsilon) of p - precontrol (t-1000*epsilon) of p
% direction t of p
fi
enddef;
vardef polyline_offset(expr p, amount, direction) =
% direction should be 90 or -90
save P;
path P,R;
P = punked p; % convert to polyline
pair za, zb;
for i=0 upto length P:
if i > 0:
za := unitvector(point i of P - point i-1 of P); % direction of the previous segment
else: % the first segment
if cycle P:
za := unitvector(point length P of P - point (length P)-1 of P);
else:
za := unitvector(point 1 of P - point 0 of P); % za == zb
fi;
fi;
if i < length P:
zb := unitvector(point i+1 of P - point i of P); % direction of the next segment
else: % the last segment
if cycle P:
% zb is unused as the path is closed by "-- cycle"
else:
zb := za;
fi;
fi;
A := 180-(angle(za)-angle(zb));
R := if i>0: R -- fi
if (i=length P) and cycle P: cycle else:
point i of P + amount*unitvector(((za+zb)/2) rotated direction)/abs(sind(A/2)) fi;
endfor;
R
enddef;
% walls:
def l_wall_bedrock_UIS (expr P) =
T:=identity;
pickup PenA;
thdraw P;
enddef;
def l_wall_sand_SKBB (expr P) =
T:=identity;
cas := 0;
dlzka := arclength P;
mojkrok:=adjust_step(dlzka, 0.1u);
pickup PenB;
forever:
t := arctime cas of P;
thdraw ((point t of P) + (uniformdeviate 1) * .4u
* unitvector(thdir(P,t) rotated -90));
cas := cas + mojkrok;
exitif cas > dlzka + (mojkrok / 3); % for rounding errors
endfor;
pickup PenA;
thdraw P;
enddef;
def l_wall_pebbles_SKBB (expr P) =
T:=identity;
cas := 0;
dlzka := arclength P;
mojkrok:=adjust_step(dlzka, .35u);
pickup PenC;
q:=superellipse((.2u,0),(0,.1u),(-.2u,0),(0,.-.1u),.75);
forever:
t := arctime (cas + mojkrok/2) of P;
thdraw q randomized (u/20) rotated (angle(thdir(P,t)) + (normaldeviate*40)) shifted point t of P;
cas := cas + mojkrok;
exitif cas > dlzka - (2*mojkrok/3); % for rounding errors
endfor;
enddef;
def l_wall_clay_SKBB (expr P) =
T:=identity;
cas := 0;
dlzka := arclength P;
mojkrok:=adjust_step(dlzka, .5u);
pickup PenC;
q := (-0.15u,0){up}..{down}origin..{up}(0.15u,0);
forever:
t := arctime (cas + mojkrok/2) of P;
thdraw q shifted (point t of P + .25u * unitvector(thdir(P,t) rotated -90));
cas := cas + mojkrok;
exitif cas > dlzka - (2*mojkrok/3); % for rounding errors
endfor;
pickup PenA;
thdraw P;
enddef;
def l_wall_debris_SKBB (expr P) =
T:=identity;
cas := 0;
dlzka := arclength P;
mojkrok:=adjust_step(dlzka, .4u);
pickup PenC;
% q := ((-.1u,-.15u)--(.2,.03u)--(-.2u,.15u)--cycle) scaled 1.5;
q := ((-.2u,-.1u)--(.2u,-.1u)--(0,.2u)--cycle) scaled 1.1;
forever:
t := arctime (cas + mojkrok/2) of P;
thdraw q randomized (u/10) rotated uniformdeviate (360) shifted point t of P;
cas := cas + mojkrok;
exitif cas > dlzka - (2*mojkrok/3); % for rounding errors
endfor;
enddef;
def l_wall_blocks_SKBB (expr P) =
% pickup PenD;
% draw P withcolor red;
T:=identity;
cas := 0;
dlzka := arclength P;
if dlzka > 0:
mojkrok:=adjust_step(dlzka, 1.5u);
pickup PenA;
forever:
t1 := arctime (cas + mojkrok*1/10) of P;
t2 := arctime (cas + mojkrok*9/10) of P;
q := ((point t1 of P) + .4u * unitvector(thdir(P,t1) rotated -90)) --
(subpath (t1,t2) of P) --
((point t2 of P) + .4u * unitvector(thdir(P,t2) rotated -90));
thdraw q randomized (u/6);
cas := cas + mojkrok;
exitif cas > dlzka - (2*mojkrok/3); % for rounding errors
endfor;
fi;
enddef;
def l_wall_ice_SKBB (expr P) =
T:=identity;
cas := 0;
dlzka := arclength P;
mojkrok:=adjust_step(dlzka, .5u);
pickup PenC;
p := (-.1u,0)--(.1u,0);
q := (0,-.1u)--(0,.1u);
forever:
t := arctime (cas + mojkrok/2) of P;
thdraw p shifted (point t of P + .25u * unitvector(thdir(P,t) rotated -90));
thdraw q shifted (point t of P + .25u * unitvector(thdir(P,t) rotated -90));
cas := cas + mojkrok;
exitif cas > dlzka - (2*mojkrok/3); % for rounding errors
endfor;
pickup PenA;
thdraw P;
enddef;
def l_wall_underlying_UIS (expr P) =
T:=identity;
pickup PenA;
thdraw P dashed evenly scaled optical_zoom;
enddef;
def l_wall_unsurveyed_SKBB (expr P) =
T:=identity;
pickup PenC;
thdraw P;
enddef;
def l_wall_presumed_UIS (expr P) =
T:=identity;
pickup PenA;
thdraw P dashed evenly scaled (2*optical_zoom);
enddef;
% other line symbols
def l_pit_UIS (expr P) =
T:=identity;
cas := 0;
dlzka := arclength P;
mojkrok:=adjust_step(dlzka, 0.25u);
pickup PenD;
forever:
t := arctime cas of P;
mark_ (P,t,0.2u);
cas := cas + mojkrok;
exitif cas > dlzka + (mojkrok / 3); % for rounding errors
endfor;
pickup PenC;
thdraw P;
enddef;
let l_floorstep_UIS = l_pit_UIS;
def l_overhang_SKBB (expr P) =
T:=identity;
cas := 0;
dlzka := arclength P;
mojkrok:=adjust_step(dlzka, 0.3u);
pickup PenC;
t1:=0;
forever:
t := arctime (cas + mojkrok/2) of P;
t2 := arctime (cas + mojkrok) of P;
if cas + mojkrok >= dlzka: t2 := arctime (dlzka-epsilon) of P; fi
thfill (subpath (t1,t2) of P) --
((point t of P) + .3u * unitvector(thdir(P,t) rotated 90)) --
cycle;
cas := cas + mojkrok;
exitif cas > dlzka - (2*mojkrok/3); % for rounding errors
t1:=t2;
endfor;
thdraw P;
enddef;
def l_chimney_SKBB (expr P) =
T:=identity;
pickup PenC;
thdraw P dashed evenly scaled optical_zoom;
enddef;
def l_chimney_UIS (expr P) =
l_ceilingstep_SKBB(reverse P);
enddef;
def l_ceilingstep_SKBB (expr P) =
T:=identity;
cas := 0;
dlzka := arclength P;
mojkrok:=adjust_step(dlzka, 0.8u);
pickup PenC;
forever:
t1 := arctime (cas + mojkrok*1/5) of P;
t := arctime (cas + mojkrok/2) of P;
t2 := arctime (cas + mojkrok*4/5) of P;
thdraw (subpath (t1,t2) of P);
mark_ (P,t,0.2u);
cas := cas + mojkrok;
exitif cas > dlzka - (2*mojkrok/3); % for rounding errors
endfor;
enddef;
def l_ceilingmeander_SKBB (expr P) =
pair Pp;
pair Pd;
pair Pv;
T:=identity;
cas := 0;
dlzka := arclength P;
mojkrok:=adjust_step(dlzka, 0.8u);
pickup PenC;
forever:
t := arctime (cas + mojkrok/2) of P;
Pp := (point t of P);
Pd := unitvector(thdir(P,t));
Pv := Pd rotated 90;
thdraw (Pp + 0.1u * Pv) --
(Pp + 0.2u * Pv);
thdraw (Pp + 0.2u * Pv + 0.2u * Pd) --
(Pp + 0.2u * Pv - 0.2u * Pd);
thdraw (Pp - 0.1u * Pv) --
(Pp - 0.2u * Pv);
thdraw (Pp - 0.2u * Pv + 0.2u * Pd) --
(Pp - 0.2u * Pv - 0.2u * Pd);
cas := cas + mojkrok;
exitif cas > dlzka - (2*mojkrok/3); % for rounding errors
endfor;
enddef;
%Bruce Mutton 2012.06.16 uses general code for l_ceilingmeander_SKBB defined in therion source code by Martin Budaj 5.3.9
% but ticks on outside (rock) side of lines
def l_ceilingmeander_UIS (expr P) =
pair Pp;
pair Pd;
pair Pv;
T:=identity;
cas := 0; % cursor to step along path
dlzka := arclength P;
mojkrok:=adjust_step(dlzka, 0.8u); % symbol length nudged to be multiple of path length
pickup PenC;
forever:
t := arctime (cas + mojkrok/2) of P;
Pp := (point t of P);
Pd := unitvector(thdir(P,t));
Pv := Pd rotated 90;
thdraw (Pp + 0.2u * Pv) --
(Pp + 0.3u * Pv); % add 0.1u to each moves ticks outside
thdraw (Pp + 0.2u * Pv + 0.2u * Pd) --
(Pp + 0.2u * Pv - 0.2u * Pd);
thdraw (Pp - 0.2u * Pv) --
(Pp - 0.3u * Pv); % subtract 0.1u to each moves ticks outside
thdraw (Pp - 0.2u * Pv + 0.2u * Pd) --
(Pp - 0.2u * Pv - 0.2u * Pd);
cas := cas + mojkrok;
exitif cas > dlzka - (2*mojkrok/3); % for rounding errors
endfor;
enddef;
let l_ceilingmeander_NZSS = l_ceilingmeander_UIS;
%Bruce Mutton 2012.06.16 uses general code for l_ceilingstep_SKBB defined in therion source code by Martin Budaj 5.3.9
% but ticks on righthand (rock) side of line
def l_ceilingstep_UIS (expr P) =
T:=identity;
cas := 0; % cursor to step along path
dlzka := arclength P;
mojkrok:=adjust_step(dlzka, 0.8u); % symbol length nudged to be multiple of path length
pickup PenC;
forever:
t1 := arctime (cas + mojkrok*1/5) of P;
t := arctime (cas + mojkrok/2) of P;
t2 := arctime (cas + mojkrok*4/5) of P;
thdraw (subpath (t1,t2) of P);
mark_ (P,t,-0.2u); % change sign to -0.2u
cas := cas + mojkrok;
exitif cas > dlzka - (2*mojkrok/3); % for rounding errors
endfor;
enddef;
let l_ceilingstep_NZSS = l_ceilingstep_UIS;
%Bruce Mutton 2012.06.10 uses general code for l_pit_UIS defined in therion source code by Martin Budaj 5.3.9
% dots on righthand (rock) side of line spaced 0.2u, 0.2u same as floor-step ticks
def l_chimney_NZSS (expr P) =
T:=identity;
cas := 0; % cursor to step along path
dlzka := arclength P;
mojkrok:=adjust_step(dlzka, 0.25u); % symbol length nudged to be multiple of path length
q:= (0.20u,-0.20u) -- (0.21u,-0.21u); % dot
pickup PenC; %2nd thinnest pen
forever:
t := arctime cas of P;
thdraw q rotated angle(thdir(P,t)) shifted (point t of P ); % draw dots
cas := cas + mojkrok;
exitif cas > dlzka + (mojkrok / 3); % for rounding errors
endfor;
pickup PenB; %2nd thickest pen
thdraw P; %continuous line
enddef;
%Bruce Mutton 2010.06.20 uses general code and adjust_step defined in therion source code by Martin Budaj
%for Therion 5.3.8
def l_wall_presumed_NZSS (expr P) =
T:=identity;
cas := 0; % cursor to step along path
dlzka := arclength P;
mojkrok:=adjust_step(dlzka, 1.5u); % symbol length nudged to be multiple of path length
q := (-0.2u,-0.4u)--(0,0)--(0.2u,-0.4u); % define v shape
forever:
t1 := arctime (cas + mojkrok*1/5) of P;
t := arctime (cas + mojkrok/2) of P;
t2 := arctime (cas + mojkrok*4/5) of P;
pickup PenA; % thick
thdraw (subpath (t1,t2) of P); % dash
pickup PenC; % thin
thdraw q rotated angle(thdir(P,t)) shifted (point t of P ); % v shape
cas := cas + mojkrok;
exitif cas > dlzka - (2*mojkrok/3); % for rounding errors
endfor;
enddef;
def l_floormeander_SKBB (expr P) =
pair Pp;
pair Pd;
pair Pv;
pair PPp;
pair PPd;
pair PPv;
T:=identity;
cas := 0;
dlzka := arclength P;
mojkrok:=adjust_step(dlzka, 0.25u);
pickup PenC;
forever:
t := arctime cas of P;
Pp := (point t of P);
Pd := unitvector(thdir(P,t));
Pv := Pd rotated 90;
thdraw (Pp + 0.1u * Pv) --
(Pp + 0.2u * Pv);
thdraw (Pp - 0.1u * Pv) --
(Pp - 0.2u * Pv);
if cas > 0:
thdraw (PPp + 0.2u * PPv) --
(Pp + 0.2u * Pv);
thdraw (PPp - 0.2u * PPv) --
(Pp - 0.2u * Pv);
fi;
PPp := Pp;
PPd := Pd;
PPv := Pv;
cas := cas + mojkrok;
exitif cas > dlzka + (mojkrok / 3); % for rounding errors
endfor;
enddef;
boolean alw_perpendicular;
def l_slope_SKBB (expr P,S)(text Q) =
%show Q;
T:=identity;
numeric dirs[];
numeric lengths[];
for i=Q:
dirs[redpart i]:=greenpart i;
lengths[redpart i]:=bluepart i;
endfor;
li:=length(P); % last
alw_perpendicular:=true;
for i=0 upto li:
if unknown dirs[i]: dirs[i]:=-1;
else:
if dirs[i]>-1:
dirs[i]:=((90-dirs[i]) - angle(thdir(P,i))) mod 360;
alw_perpendicular:=false;
fi;
fi;
if unknown lengths[i]: lengths[i]:=-1; fi;
endfor;
%for i=0 upto li: show dirs[i]; endfor;
ni:=0; % next
pi:=0; % previous
for i=0 upto li:
d:=dirs[i];
if d=-1:
if (i=0) or (i=li):
dirs[i] := angle(thdir(P,i) rotated 90) mod 360;
pi:=i;
else:
if ni<=i:
for j=i upto li:
ni:=j;
exitif dirs[j]>-1;
endfor;
fi;
w:=arclength(subpath(pi,i) of P) /
arclength(subpath(pi,ni) of P);
dirs[i]:=w[dirs[pi],dirs[ni]];
% if (dirs[i]-angle(thdir(P,i))) mod 360>180:
% dirs[i]:=w[dirs[ni],dirs[pi]];
% message("*******");
% fi;
fi;
else:
pi:=i;
fi;
endfor;
%for i=0 upto li: show dirs[i]; endfor;
ni:=0; % next
pi:=0; % previous
for i=0 upto li:
l:=lengths[i];
if l=-1:
if (i=0) or (i=li):
lengths[i] := 1cm; % should never happen!
thwarning("slope width at the end point not specified");
pi:=i;
else:
if ni<=i:
for j=i+1 upto li:
ni:=j;
exitif lengths[j]>-1;
endfor;
fi;
w:=arclength(subpath(pi,i) of P) /
arclength(subpath(pi,ni) of P);
lengths[i]:=w[lengths[pi],lengths[ni]];
pi:=i;
fi;
else:
pi:=i;
fi;
endfor;
% for i=0 upto li: show lengths[i]; endfor;
T:=identity;
boolean par;
offset:=0;
dlzka := (arclength P);
if dlzka>3u:
offset := 0.3u;
elseif dlzka>u:
offset := 0.1u;
fi;
dlzka:=dlzka-2offset;
cas := offset;
mojkrok:=adjust_step(dlzka,1.4u) / 2;
pickup PenD;
par := false;
forever:
t := arctime cas of P;
if t mod 1>0: % not a key point
w := (arclength(subpath(floor t,t) of P) /
arclength(subpath(floor t,ceiling t) of P));
if alw_perpendicular:
a := 90;
else:
a := w[dirs[floor t],dirs[ceiling t]];
fi;
l := w[lengths[floor t],lengths[ceiling t]];
else:
if alw_perpendicular:
a := 90;
else:
a:= dirs[t];
fi;
l:=lengths[t];
fi;
a := a + angle(thdir(P,t));
thdraw (point t of P) --
((point t of P) + if par: 0.333 * fi l * unitvector(dir(a)));
cas := cas + mojkrok;
par := not par;
exitif cas > dlzka + offset + 0.1mm; % for rounding errors
endfor;
if S = 1: pickup PenC; draw P fi;
%pickup pencircle scaled 3pt;
%for i=0 upto li: draw point i of P; endfor;
enddef;
def l_slope_BCRA (expr P,S)(text Q) =
%show Q;
T:=identity;
numeric dirs[];
numeric lengths[];
for i=Q:
dirs[redpart i]:=greenpart i;
lengths[redpart i]:=bluepart i;
endfor;
li:=length(P); % last
alw_perpendicular:=true;
for i=0 upto li:
if unknown dirs[i]: dirs[i]:=-1;
else:
if dirs[i]>-1:
dirs[i]:=((90-dirs[i]) - angle(thdir(P,i))) mod 360;
alw_perpendicular:=false;
fi;
fi;
if unknown lengths[i]: lengths[i]:=-1; fi;
endfor;
%for i=0 upto li: show dirs[i]; endfor;
ni:=0; % next
pi:=0; % previous
for i=0 upto li:
d:=dirs[i];
if d=-1:
if (i=0) or (i=li):
dirs[i] := angle(thdir(P,i) rotated 90) mod 360;
pi:=i;
else:
if ni<=i:
for j=i upto li:
ni:=j;
exitif dirs[j]>-1;
endfor;
fi;
w:=arclength(subpath(pi,i) of P) /
arclength(subpath(pi,ni) of P);
dirs[i]:=w[dirs[pi],dirs[ni]];
% if (dirs[i]-angle(thdir(P,i))) mod 360>180:
% dirs[i]:=w[dirs[ni],dirs[pi]];
% message("*******");
% fi;
fi;
else:
pi:=i;
fi;
endfor;
%for i=0 upto li: show dirs[i]; endfor;
ni:=0; % next
pi:=0; % previous
for i=0 upto li:
l:=lengths[i];
if l=-1:
if (i=0) or (i=li):
lengths[i] := 1cm; % should never happen!
thwarning("slope width at the end point not specified");
pi:=i;
else:
if ni<=i:
for j=i+1 upto li:
ni:=j;
exitif lengths[j]>-1;
endfor;
fi;
w:=arclength(subpath(pi,i) of P) /
arclength(subpath(pi,ni) of P);
lengths[i]:=w[lengths[pi],lengths[ni]];
pi:=i;
fi;
else:
pi:=i;
fi;
endfor;
% for i=0 upto li: show lengths[i]; endfor;
T:=identity;
boolean par;
offset:=0;
dlzka := (arclength P);
if dlzka>3u:
offset := 0.3u;
elseif dlzka>u:
offset := 0.1u;
fi;
dlzka:=dlzka-2offset;
cas := offset;
mojkrok:=adjust_step(dlzka,1.4u) / 2;
pickup PenD;
par := false;
forever:
t := arctime cas of P;
if t mod 1>0: % not a key point
w := (arclength(subpath(floor t,t) of P) /
arclength(subpath(floor t,ceiling t) of P));
if alw_perpendicular:
a := 90;
else:
a := w[dirs[floor t],dirs[ceiling t]];
fi;
l := w[lengths[floor t],lengths[ceiling t]];
else:
if alw_perpendicular:
a := 90;
else:
a:= dirs[t];
fi;
l:=lengths[t];
fi;
a := a + angle(thdir(P,t));
if par:
thfill (point t of P) + mojkrok/2.5 * unitvector(dir(a+90))--
((point t of P) + l * unitvector(dir(a))) --
(point t of P) + mojkrok/2.5 * unitvector(dir(a-90)) -- cycle;
fi;
cas := cas + mojkrok;
par := not par;
exitif cas > dlzka + offset + 0.1mm; % for rounding errors
endfor;
enddef;
def l_contour_UIS(expr P)(text txt) =
T:=identity;
pickup PenD;
thdraw P;
for pnt=txt:
if pnt=-2:
mark_(P,arctime(arclength(P)/2) of P, 0.2u);
elseif pnt>=0:
mark_(P,pnt,0.2*u);
fi;
exitif pnt<0;
endfor;
enddef;
def l_contour_SKBB(expr P)(text txt) =
T:=identity;
pickup PenD;
thdraw P;
for pnt=txt:
if (pnt=-2) or (pnt=-1):
mark_(P,arctime(arclength(P)/2) of P, 0.2u);
elseif pnt>=0:
mark_(P,pnt,0.2*u);
fi;
exitif pnt<0;
endfor;
enddef;
def l_rockborder_UIS (expr P) =
T:=identity;
pickup PenC;
if cycle P: thclean P fi;
thdraw P;
enddef;
def l_rockedge_UIS (expr P) =
T:=identity;
pickup PenD;
thdraw P;
enddef;
def l_border_visible_SKBB (expr Path) =
T:=identity;
pickup PenC;
draw Path;
enddef;
def l_border_temporary_SKBB (expr Path) =
T:=identity;
pickup PenC;
draw Path dashed evenly scaled optical_zoom;
enddef;
def l_flowstone_UIS (expr P) =
T:=identity;
cas := 0;
dlzka := arclength P;
mojkrok:=adjust_step(dlzka, .7u);
if (cycle P) and (dlzka < 3.5u): % make at least 5 curls on a cyclic path
mojkrok := dlzka/5;
fi;
pickup PenC;
t1:=0;
forever:
t2 := arctime (cas + mojkrok) of P;
thdraw (point t1 of P){dir (angle(thdir(P,t1)) + 60)} ..
{dir (angle(thdir(P,t2)) - 60)}(point t2 of P);
cas := cas + mojkrok;
exitif cas > dlzka + (mojkrok / 3); % for rounding errors
t1:=t2;
endfor;
enddef;
def l_moonmilk_UIS (expr P) =
T:=identity;
cas := 0;
dlzka := arclength P;
mojkrok:=adjust_step(dlzka, .3u);
pickup PenC;
t1:=0;
forever:
t2 := arctime (cas + mojkrok) of P;
thdraw (point t1 of P){dir (angle(thdir(P,t1)) + 80)} ..
{dir (angle(thdir(P,t2)) - 80)}(point t2 of P);
cas := cas + mojkrok;
exitif cas > dlzka + (mojkrok / 3); % for rounding errors
t1:=t2;
endfor;
enddef;
def l_survey_surface_SKBB (expr P) =
T:=identity;
thdrawoptions(dashed withdots scaled (0.2 * optical_zoom) withpen PenC);
thdraw P;
thdrawoptions();
enddef;
def l_survey_cave_SKBB (expr P) =
T:=identity;
pickup PenC;
if ATTR__scrap_centerline:
thdraw P;
else:
PolygonLine:=.8u;
pair zz[];
for t = 0 upto length P - 1:
zz1 := point t of P;
zz2 := point t+1 of P;
if length (zz2-zz1) > 2*PolygonLine:
thdraw zz1 -- zz1 + PolygonLine * unitvector(zz2 - zz1);
thdraw zz2 -- zz2 + PolygonLine * unitvector(zz1 - zz2);
else:
thdraw zz1 -- zz2;
fi;
endfor;
fi;
enddef;
def l_survey_cave_UIS (expr P) =
T:=identity;
pair zz[];
pickup PenC;
for t = 0 upto length P - 1:
zz1 := point t of P;
zz2 := point t+1 of P;
draw zz1 -- zz2;
endfor;
enddef;
def l_waterflow_permanent_UIS (expr Path) =
path ppp;
T:=identity;
cas := 0;
dlzka := arclength Path;
mojkrok:=adjust_step(dlzka, 0.5u);
pickup PenD;
vardef azim = 50 + 15*normaldeviate enddef;
az1 := azim;
sgn := 1;
ppp := point 0 of Path;
forever:
t1 := arctime cas of Path;
t2 := arctime (cas+mojkrok) of Path;
if cas+1.1*mojkrok > dlzka:
az2 := 0;
else:
az2 := azim;
fi;
d1 := angle(thdir(Path,t1)) + sgn * az1;
d2 := angle(thdir(Path,t2)) - sgn * az2;
ppp := ppp & (point t1 of Path){dir d1} .. {dir d2}(point t2 of Path);
az1 := az2;
sgn := -1 * sgn;
cas := cas + mojkrok;
exitif cas > dlzka + mojkrok/3; % for rounding errors
endfor;
% drawarrow ppp;
thdraw ppp;
thdrawoptions();
oldahlength:=ahlength;
ahlength:=ahlength*optical_zoom;
thdraw arrowhead ppp;
thfill arrowhead ppp;
ahlength:=oldahlength;
enddef;
def l_waterflow_intermittent_SKBB (expr Path) =
thdrawoptions(dashed evenly scaled optical_zoom);
l_waterflow_permanent_UIS (Path);
thdrawoptions();
enddef;
def l_waterflow_conjectural_SKBB (expr Path) =
thdrawoptions(dashed withdots scaled (0.5 * optical_zoom) withpen PenB);
l_waterflow_permanent_UIS (Path);
thdrawoptions();
enddef;
def l_invisible (expr P) =
enddef;
def l_undefined (expr P) =
T:=identity;
pickup PenC;
thdraw P withcolor red;
thwarning("undefined line symbol used");
enddef;
% Q = 0 -- no arrows
% 1 -- end
% 2 -- begin
% 3 -- both
def l_arrow_SKBB (expr P, Q) =
T:=identity;
pickup PenC;
thdraw P;
p := (-.1u,-.25u)--(0,0)--(.1u,-.25u);
if odd Q:
draw p rotated (angle(thdir(P,0))+90) shifted (point 0 of P);
fi;
if Q>1:
draw p rotated (angle(thdir(P,length P))-90)
shifted (point infinity of P);
fi;
enddef;
def l_mapconnection_SKBB (expr P) =
thdrawoptions(dashed withdots scaled (0.5 * optical_zoom) withpen PenB);
l_arrow_SKBB(P,3);
thdrawoptions();
enddef;
def l_section_SKBB (expr P)(text txt) =
T:=identity;
path Q; Q = punked P;
pickup PenC;
for t = 0 upto length P - 1:
pair zz[];
zz1 := point t of P;
zz2 := point t+1 of P;
zz3 := postcontrol t of P;
zz4 := precontrol t+1 of P;
if (length(zz3-1/3[zz1,zz2]) > 0.1pt) or
(length(zz4-2/3[zz1,zz2]) > 0.1pt):
zz5 = whatever[zz1,zz2];
(zz3-zz5) = whatever * (zz1-zz2) rotated 90;
draw zz1--zz5;
zz6 = whatever[zz1,zz2];
(zz4-zz6) = whatever * (zz1-zz2) rotated 90;
draw zz2--zz6;
else:
draw zz1--zz2;
fi;
endfor;
for pnt=txt:
if pnt=-1:
else:
T:=identity rotated angle(thdir(Q,pnt)) shifted (point pnt of Q);
pickup PenC;
thdraw (0,0)--(0,.8u);
thdraw (-.1u,.55u)--(0,.8u)--(.1u,.55u);
fi;
exitif pnt=-1;
endfor;
enddef;
let l_border_invisible = l_invisible;
let l_wall_invisible = l_invisible;
def l_debug (expr col, pen, P) =
T:=identity;
pickup if pen=0: PenD else: PenB fi;
thdraw P
withcolor if col=-2: (1,.85,0)
elseif col=-1: black
elseif col=0: red
else: blue fi;
enddef;
def l_u (expr P) =
T:=identity;
pickup PenA;
thdraw P withcolor red;
enddef;
def l_gradient_UIS (expr P) =
T:=identity;
pickup PenC;
thdraw P;
p:=(-.15u,-.4u)--(0,0)--(.15u,-.4u)--cycle;
thfill (p rotated (angle(thdir(P,length P))-90)
shifted (point infinity of P));
thdraw (p rotated (angle(thdir(P,length P))-90)
shifted (point infinity of P));
enddef;
def l_gradient_BCRA (expr P) =
T:=identity;
pickup PenC;
for t = 0 upto length P - 1:
pair zz[];
zz1 := point t of P;
zz2 := point t+1 of P;
zz3 := unitvector(zz2 - zz1);
thfill zz1 + u/3 * zz3 + .25u * (zz3 rotated 90) --
zz2 - u/3 * zz3 --
zz1 + u/3 * zz3 + .25u * (zz3 rotated -90) -- cycle;
endfor;
enddef;
def l_rope_SKBB (expr P, show_anchors, show_rebelays) =
T:=identity;
pickup PenC;
if not show_rebelays:
draw P;
else:
d:=0.5u;
for i:=0 upto (length P - 2):
x1 := xpart point i of P;
y1 := ypart point i of P;
x2 := xpart point i+1 of P;
y2 := ypart point i+1 of P;
if x1 = x2:
if y2 > y1:
draw (x1,y1-d) -- (x2,y2);
else:
draw (x1,y1) -- (x2,y2-d);
fi;
else:
dx1:=x1; dy1:=y1; x1:=0; y1:=0; x2:=x2-dx1; y2:=y2-dy1;
if y2 > y1:
y3 := y1 - d;
x3 := x1 + (x2-x1)*sqrt(d)/(sqrt(d)+sqrt(y2-y1+d));
else:
y3 := y2 - d;
x3 := x1 + (x2-x1)*sqrt(y1-y2+d)/(sqrt(d)+sqrt(y1-y2+d));
fi;
numeric a,b,c;
a*x1/10*x1 + b/10*x1 + c/10 = y1/10;
a*x2/10*x2 + b/10*x2 + c/10 = y2/10;
a*x3/10*x3 + b/10*x3 + c/10 = y3/10;
draw (x1+dx1,y1+dy1)
for t = x1 step (x2-x1)/20 until x2+10*epsilon:
-- (t+dx1,a*t*t+b*t+c+dy1)
endfor;
fi;
endfor;
pair x;
x = point (length P)-1 of P + whatever * down;
x = point (length P) of P + whatever * right;
draw point (length P)-1 of P -- x;
fi;
if show_anchors:
for i:=0 upto length P if show_rebelays: -1 fi:
thdraw point i of P withpen pencircle scaled 0.25u;
endfor;
fi;
enddef;
def l_border_presumed_SKBB (expr Path) =
T:=identity;
pickup PenC;
draw Path dashed evenly scaled (0.25 * optical_zoom);
enddef;
def l_steps_SKBB (expr P) =
if known ATTR_c: c := scantokens ATTR_c; else: c := 2; fi;
if ATTR__elevation:
if (c < 2):
thwarning("Invalid stairs definition (c<2)");
pickup PenA;
draw P withcolor red;
else:
path PP;
if (ypart point 0 of P) < (ypart point length P of P):
PP := P;
else:
PP := reverse P;
fi;
path p;
for j:=0 upto ((length PP) - 1):
p := (point j of PP) -- (point (j + 1) of PP);
c := ceiling(abs((ypart point 0 of p) - (ypart point length p of p)) / (0.2 / Scale * 72 / 2.54)); % 20 cm height
if (c < 2): c:=2 fi;
pair cp;
cp = point length p of p - point 0 of p;
dx := (xpart cp) / c;
dy := (ypart cp) / c;
cp := point 0 of p;
for i:= 0 upto c - 1:
l_border_visible(cp -- cp + (0,dy) -- cp + (dx,dy));
cp := cp + (dx, dy);
endfor;
%draw P;
endfor;
fi;
else:
if known ATTR_l: l := scantokens ATTR_l; else: l := (length(P)-2)/2; fi;
if ((length(P) < 4) or (c < 2)) or ((odd length P) and (not known ATTR_l)):
thwarning("Invalid stairs definition" if c<2: &" (c<2)" fi);
pickup PenA;
draw P withcolor red;
else:
path p, q;
p = subpath (1, 1+l) of P;
q = reverse subpath (l+2, length(P)) of P;
lp := arclength(p);
lq := arclength(q);
for i=1 upto c:
l_border_visible(point(arctime ((i-1)/(c-1)*lp) of p) of p -- point(arctime ((i-1)/(c-1)*lq) of q) of q);
endfor;
l_border_visible(p);
l_border_visible(q);
drawoptions(withcolor 0.3[black,white]);
%p_label(decimal c, point 0.5 of P, 0, 6);
drawoptions();
fi;
fi;
enddef;
def l_handrail_SKBB (expr P) =
if ATTR__elevation:
T:=identity;
cas := 0;
dlzka := arclength P;
mojkrok:=adjust_step(dlzka, 1u);
pickup PenD;
pair tmppoint;
tmph := 1 / Scale * 72 / 2.54; % 1 m height
tmppoint:=(point 0 of P) +(0,tmph);
forever:
t := arctime cas of P;
draw point t of P -- (point t of P)+(0,tmph) withpen PenD;
if cas > 0:
draw tmppoint -- (point t of P)+(0,tmph) withpen PenC;
tmppoint := (point t of P)+(0,tmph);
fi;
cas := cas + mojkrok;
exitif cas > dlzka + (mojkrok / 3); % for rounding errors
endfor;
else:
T:=identity;
cas := 0;
pair coord;
sq_size:=0.12u;
dlzka := arclength P;
mojkrok:=adjust_step(dlzka, u);
pickup PenD;
forever:
t := arctime cas of P;
coord := point t of P;
thfill coord+(-sq_size,-sq_size)--coord+(sq_size,-sq_size)--coord+(sq_size,sq_size)--coord+(-sq_size,sq_size)--cycle;
cas := cas + mojkrok;
exitif cas > dlzka + (mojkrok / 3); % for rounding errors
endfor;
pickup PenC;
thdraw P;
fi;
enddef;
def l_fixedladder_SKBB (expr Q) =
% TODO: support side view in elevation (front view could be the same as in the plan view)
T:=identity;
path P, P_left, P_right;
P := punked Q; % ensure that there is no bezier curve
pair p_tmp, za, zb;
len := arclength P;
dt:=adjust_step(len, 0.3u);
t := dt/2;
wdth := 0.25u; % half-width of the ladder
pickup PenC;
% draw the steps
forever:
p_tmp := point arctime t of P of P;
draw p_tmp+wdth*unitvector(thdir(P,arctime t of P) rotated -90) --
p_tmp+wdth*unitvector(thdir(P,arctime t of P) rotated 90);
t := t + dt;
exitif t > len + 10*epsilon;
endfor;
draw polyline_offset(P,wdth, 90);
draw polyline_offset(P,wdth,-90);
enddef;
def l_ropeladder_SKBB (expr P) =
pickup PenD;
draw P withcolor red;
enddef;
def l_viaferrata_SKBB (expr P) =
pickup PenD;
draw P withcolor red;
enddef;
|