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
|
% \iffalse meta-comment
%<*internal>
\iffalse
%</internal>
%<*readme>
----------------------------------------------------------------
tqft --- a style file for drawing TQFT diagrams with TikZ/PGF
E-mail: stacey@math.ntnu.no
Released under the LaTeX Project Public License v1.3c or later
See http://www.latex-project.org/lppl.txt
----------------------------------------------------------------
This package defines some node shapes useful for drawing TQFT diagrams with TikZ/PGF.
%</readme>
%<*internal>
\fi
\def\nameofplainTeX{plain}
\ifx\fmtname\nameofplainTeX\else
\expandafter\begingroup
\fi
%</internal>
%<*install>
\input docstrip.tex
\keepsilent
\askforoverwritefalse
\preamble
----------------------------------------------------------------
tqft --- a style file for drawing TQFT diagrams with TikZ/PGF
E-mail: stacey@math.ntnu.no
Released under the LaTeX Project Public License v1.3c or later
See http://www.latex-project.org/lppl.txt
----------------------------------------------------------------
\endpreamble
\postamble
Copyright (C) 2011 by Andrew Stacey <stacey@math.ntnu.no>
This work may be distributed and/or modified under the
conditions of the LaTeX Project Public License (LPPL), either
version 1.3c of this license or (at your option) any later
version. The latest version of this license is in the file:
http://www.latex-project.org/lppl.txt
This work is "maintained" (as per LPPL maintenance status) by
Andrew Stacey.
This work consists of the file tqft.dtx
and the derived files tqft.ins,
tqft.pdf, and
tqft.sty.
\endpostamble
\usedir{tex/latex/tqft}
\generate{
\file{\jobname.sty}{\from{\jobname.dtx}{package}}
}
%</install>
%<install>\endbatchfile
%<*internal>
\usedir{source/latex/tqft}
\generate{
\file{\jobname.ins}{\from{\jobname.dtx}{install}}
}
\nopreamble\nopostamble
\usedir{doc/latex/demopkg}
\generate{
\file{README.txt}{\from{\jobname.dtx}{readme}}
}
\ifx\fmtname\nameofplainTeX
\expandafter\endbatchfile
\else
\expandafter\endgroup
\fi
%</internal>
%<*package>
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{tqft}[2011/05/03 v1.0 Tikz/PGF commands for drawing TQFT diagrams]
%</package>
%<*driver>
\documentclass{ltxdoc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
%\usepackage{morefloats}
\usepackage{tikz}
\usepackage{\jobname}
\usepackage[numbered]{hypdoc}
\definecolor{lstbgcolor}{rgb}{0.9,0.9,0.9}
\usepackage{listings}
\lstloadlanguages{[LaTeX]TeX}
\lstset{breakatwhitespace=true,breaklines=true,language=TeX}
\usepackage{fancyvrb}
\EnableCrossrefs
\CodelineIndex
\RecordChanges
\begin{document}
\DocInput{\jobname.dtx}
\end{document}
%</driver>
% \fi
%
% \CheckSum{1595}
%
% \CharacterTable
% {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z
% Lower-case \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z
% Digits \0\1\2\3\4\5\6\7\8\9
% Exclamation \! Double quote \" Hash (number) \#
% Dollar \$ Percent \% Ampersand \&
% Acute accent \' Left paren \( Right paren \)
% Asterisk \* Plus \+ Comma \,
% Minus \- Point \. Solidus \/
% Colon \: Semicolon \; Less than \<
% Equals \= Greater than \> Question mark \?
% Commercial at \@ Left bracket \[ Backslash \\
% Right bracket \] Circumflex \^ Underscore \_
% Grave accent \` Left brace \{ Vertical bar \|
% Right brace \} Tilde \~}
%
%
% \changes{1.0}{2011/05/03}{Converted to DTX file}
%
% \DoNotIndex{\newcommand,\newenvironment}
%
% \providecommand*{\url}{\texttt}
% \GetFileInfo{tqft.dtx}
% \title{The \textsf{tqft} package: codebase}
% \author{Andrew Stacey \\ \url{stacey@math.ntnu.no}}
% \date{\fileversion~from \filedate}
%
% \maketitle
%
%
% \begin{tikzpicture}[every node/.style={tqft/cobordism style={draw,thick,red}}]
% \node[
% tqft,
% fill=orange,
% fill opacity=.5,
% boundary style={fill=purple},
% cobordism style={draw,thick,red},
% boundary lower style={draw,dashed,thick,blue},
% boundary upper style={draw,green,thick},
% incoming boundary components=4,
% outgoing boundary components=6,
% offset=-1.5,
% ] (a) {};
% \node[pin=north:1] at (a.incoming boundary 1) {};
% \node[pin=north:3] at (a.incoming boundary 3) {};
% \node[pin=south:1] at (a.outgoing boundary 1) {};
% \node[pin=south:4] at (a.outgoing boundary 4) {};
% \node[pin=south:6] at (a.outgoing boundary 6) {};
% \end{tikzpicture}
%
% \section{Introduction}
%
% This is a package for drawing TQFT diagrams using PGF/TikZ.
% Its inspiration was a question and answer on the website \url{http://tex.stackexchance.com}.
%
%
% \StopEventually{}
%
% \section{Implementation}
%
% \iffalse
%<*package>
% \fi
% \begin{macrocode}
\RequirePackage{pgfkeys}
\RequirePackage{pgf}
% \end{macrocode}
%
% We can view the cobordisms from the \emph{input} or \emph{output} ends, the implementation of the choice is to draw an arc from 0 to 180 or from 0 to -180 so we just need to track minus signs.
% These macros are for that.
% \begin{macrocode}
\def\pgf@tqft@minus{-}
\let\pgf@tqft@upper\@empty
\let\pgf@tqft@lower\pgf@tqft@minus
% \end{macrocode}
% Some helpful extra functions.
%
% \Verb+\tqftset+ is our equivalent of \Verb+\tikzset+.
% \begin{macrocode}
\def\tqftset#1{\pgfkeys{/pgf/tqft/.cd,#1}}
% \end{macrocode}
% \begin{macro}{\tqft@process}
% This macro applies our flow transformation to the given coordinates, % with the result stored in \Verb+\pgf@x+ and \Verb+\pgf@y+.
% \begin{macrocode}
\def\tqft@process#1#2{%
\edef\tqft@px{#1}
\edef\tqft@py{#2}
\pgf@process{
\pgftransformreset
\let\tikz@transform=\pgfutil@empty
\expandafter\tikzset\expandafter{\tqft@transformation}
\tikz@transform
\pgfpointtransformed{\pgfqpoint{\tqft@px}{\tqft@py}}
}
}
% \end{macrocode}
% \end{macro}
%
% Declare some dimension registers to hold the specifications of the cobordism.
% \begin{macrocode}
\newdimen\tqft@xa
\newdimen\tqft@xb
\newdimen\tqft@c
\newdimen\tqft@ch
\newdimen\tqft@h
\newdimen\tqft@s
\newdimen\tqft@w
\newif\iftqft@within@node
% \end{macrocode}
% Now we set up all the keys that we'll need in the course of this shape
% \begin{macrocode}
\pgfkeys{
% \end{macrocode}
% This key is our basic installer key, setting the shape and putting us in the right key family.
% \begin{macrocode}
/tikz/tqft/.style={%
/tikz/shape=tqft cobordism,
/pgf/tqft,
/tikz/every tqft
},
% \end{macrocode}
% This deals with unknown keys, passing them on to TikZ.
% \begin{macrocode}
/pgf/tqft/.unknown/.code={%
\let\tqft@searchname=\pgfkeyscurrentname%
\pgfkeysalso{%
/tikz/\tqft@searchname=#1
}
},
% \end{macrocode}
% Here we have the standard \Verb+every something+ style.
% \begin{macrocode}
/tikz/every tqft/.style={},
% \end{macrocode}
% We might get called in \Verb+/tikz+ or \Verb+/pgf+, this passes off anything in \Verb+/tikz/tqft+ to \Verb+/pgf/tqft+.
% \begin{macrocode}
/tikz/tqft/.unknown/.code={%
\let\tqft@searchname=\pgfkeyscurrentname%
\pgfkeysalso{%
/pgf/tqft/\tqft@searchname=#1
}
},
% \end{macrocode}
% Let's play happy families!
% \begin{macrocode}
/pgf/tqft/.is family,
/pgf/tqft,
% \end{macrocode}
% This sets our shape to be the boundary circle
% \begin{macrocode}
boundary circle/.style={
/tikz/shape=tqft boundary circle
},
% \end{macrocode}
% These set our number of boundary components
% \begin{macrocode}
incoming boundary components/.initial=5,
outgoing boundary components/.initial=4,
% \end{macrocode}
% This is the ``horizontal'' offset of the first outgoing component from the first incoming one.
% \begin{macrocode}
offset/.initial=0,
% \end{macrocode}
% This is the ``vertical'' separation between boundary components.
% \begin{macrocode}
cobordism height/.initial=2cm,
% \end{macrocode}
% This is the ``horizontal'' separation between boundary components.
% \begin{macrocode}
boundary separation/.initial=2cm,
% \end{macrocode}
% These are the ``horizontal'' and ``vertical'' radii, respectively, of the boundary components (perhaps poorly named!).
% \begin{macrocode}
circle width/.initial=10pt,
circle depth/.initial=5pt,
% \end{macrocode}
% These control the separation between the node and its anchors.
% \begin{macrocode}
outer xsep/.initial=0pt,
outer ysep/.initial=0pt,
outer sep/.style={
outer xsep=#1,
outer ysep=#1
},
% \end{macrocode}
% This is our flow control. The \Verb+flow+ key installs a transformation to be applied to our node shape.
% The possible transformations are stored in the following keys.
% They aren't just rotations so that the numbering is always ``top to bottom'' or ``left to right''.
% \begin{macrocode}
flow/.code={%
\pgfkeys{/pgf/tqft/flow transformation/.expand twice/.expand once=\pgfkeysvalueof{/pgf/tqft/flow transformation #1}}
},
flow transformation south/.initial={},
flow transformation north/.initial={%
xscale=-1,rotate=180
},
flow transformation east/.initial={%
rotate=90,xscale=-1
},
flow transformation west/.initial={%
rotate=270
},
flow transformation/.initial={},
% \end{macrocode}
% These control the direction from which we view the cobordism.
% \begin{macrocode}
view from/.is choice,
view from/incoming/.code={%
\let\pgf@tqft@upper\pgf@tqft@minus
\let\pgf@tqft@lower\@empty
},
view from/outgoing/.code={%
\let\pgf@tqft@lower\pgf@tqft@minus
\let\pgf@tqft@upper\@empty
},
% \end{macrocode}
% The next set of keys are for styling the different pieces of a cobordism.
% \begin{macrocode}
boundary lower style contents/.initial={},
boundary lower style/.code={%
\pgfkeys{/pgf/tqft/boundary lower style contents/.style={%
/tikz/.cd,#1
}
}
},
boundary style contents/.initial={},
boundary style/.code={%
\pgfkeys{/pgf/tqft/boundary style contents/.style={%
/tikz/.cd,#1
}
}
},
boundary upper style contents/.initial={},
boundary upper style/.code={%
\pgfkeys{/pgf/tqft/boundary upper style contents/.style={%
/tikz/.cd,#1
}
}
},
cobordism style contents/.initial={},
cobordism style/.code={%
\pgfkeys{/pgf/tqft/cobordism style contents/.style={%
/tikz/.cd,#1%
}
}
},
% \end{macrocode}
% The next set of keys define some default shapes.
% \begin{macrocode}
pair of pants/.style={
/tikz/tqft,
incoming boundary components=1,
outgoing boundary components=2,
offset=-.5
},
/tikz/tqft pair of pants/.style={
/pgf/tqft/pair of pants,
},
reverse pair of pants/.style={
/tikz/tqft,
incoming boundary components=2,
outgoing boundary components=1,
offset=.5
},
/tikz/tqft reverse pair of pants/.style={
/pgf/tqft/reverse pair of pants,
},
cylinder to prior/.style={
/tikz/tqft,
incoming boundary components=1,
outgoing boundary components=1,
offset=-.5
},
/tikz/tqft cylinder to prior/.style={
/pgf/tqft/cylinder to prior,
},
cylinder to next/.style={
/tikz/tqft,
incoming boundary components=1,
outgoing boundary components=1,
offset=.5
},
/tikz/tqft cylinder to next/.style={
/pgf/tqft/cylinder to next,
},
cylinder/.style={
/tikz/tqft,
incoming boundary components=1,
outgoing boundary components=1
},
/tikz/tqft cylinder/.style={
/pgf/tqft/cylinder,
},
cup/.style={
/tikz/tqft,
incoming boundary components=1,
outgoing boundary components=0
},
/tikz/tqft cup/.style={
/pgf/tqft/cup,
},
cap/.style={
/tikz/tqft,
incoming boundary components=0,
outgoing boundary components=1
},
/tikz/tqft cap/.style={
/pgf/tqft/cap,
},
}
% \end{macrocode}
%
% \begin{macro}{tqft shape}
% This is a generic cobordism shape
% \begin{macrocode}
\pgfdeclareshape{tqft cobordism}{
% \end{macrocode}
% Save our specifications: incoming and outgoing boundary components
% \begin{macrocode}
\savedmacro{\tqft@incoming}{\edef\tqft@incoming{\pgfkeysvalueof{/pgf/tqft/incoming boundary components}}}
\savedmacro{\tqft@outgoing}{\edef\tqft@outgoing{\pgfkeysvalueof{/pgf/tqft/outgoing boundary components}}}
% \end{macrocode}
% and the offset (in units of boundary components) between the leading incoming and outgoing components (regarded as a shift of the outgoing components relative to the incoming)
% \begin{macrocode}
\savedmacro{\tqft@offset}{\edef\tqft@offset{\pgfkeysvalueof{/pgf/tqft/offset}}}
% \end{macrocode}
% Now we save our dimensions: height, separation, the radii of the boundary circles, and outer seps, and the heights of the control points.
% \begin{macrocode}
\saveddimen{\tqft@height}{\pgf@x=\pgfkeysvalueof{/pgf/tqft/cobordism height}}
\saveddimen{\tqft@separation}{\pgf@x=\pgfkeysvalueof{/pgf/tqft/boundary separation}}
\saveddimen{\tqft@width}{\pgf@x=\pgfkeysvalueof{/pgf/tqft/circle width}}
\saveddimen{\tqft@depth}{\pgf@x=\pgfkeysvalueof{/pgf/tqft/circle depth}}
\saveddimen{\tqft@outerxsep}{\pgf@x=\pgfkeysvalueof{/pgf/tqft/outer xsep}}
\saveddimen{\tqft@outerysep}{\pgf@x=\pgfkeysvalueof{/pgf/tqft/outer ysep}}
\saveddimen{\tqft@control}{
\pgfkeysgetvalue{/pgf/tqft/cobordism height}{\tqft@tempa}
\pgfkeysgetvalue{/pgf/tqft/circle depth}{\tqft@tempb}
\pgfmathsetlength{\pgf@x}{.5 * \tqft@tempa - 4 * \tqft@tempb}
}
% \end{macrocode}
% This is the internal transformation that is in place
% \begin{macrocode}
\savedmacro{\tqft@transformation}{%
\pgfkeysgetvalue{/pgf/tqft/flow transformation}{\tqft@transformation}
}
% \end{macrocode}
% For the externally available anchors, we need to save a few things as well.
%
% Position of first incoming boundary in internal coordinates
% \begin{macrocode}
\savedanchor{\tqft@start@incoming}{%
\pgfmathsetlength{\pgf@x}{-(max(\pgfkeysvalueof{/pgf/tqft/incoming boundary components} - 1,\pgfkeysvalueof{/pgf/tqft/outgoing boundary components} - 1 + \pgfkeysvalueof{/pgf/tqft/offset}) + min(0,\pgfkeysvalueof{/pgf/tqft/offset}) )*\pgfkeysvalueof{/pgf/tqft/boundary separation}/2}
\pgfmathsetlength{\pgf@y}{.5 * \pgfkeysvalueof{/pgf/tqft/cobordism height}}
}
% \end{macrocode}
% Position of first outgoing boundary in internal coordinates
% \begin{macrocode}
\savedanchor{\tqft@start@outgoing}{%
\pgfmathsetlength{\pgf@x}{-(max(\pgfkeysvalueof{/pgf/tqft/incoming boundary components} - 1,\pgfkeysvalueof{/pgf/tqft/outgoing boundary components} - 1 + \pgfkeysvalueof{/pgf/tqft/offset}) + min(0,\pgfkeysvalueof{/pgf/tqft/offset})- 2*\pgfkeysvalueof{/pgf/tqft/offset})*\pgfkeysvalueof{/pgf/tqft/boundary separation}/2}
\pgfmathsetlength{\pgf@y}{-.5 * \pgfkeysvalueof{/pgf/tqft/cobordism height}}
}
% \end{macrocode}
% For completeness, we record the size of the text box (not that we expect any text, but you never know)
% \begin{macrocode}
\savedanchor{\tqft@textsize}{%
\pgf@y=-.5\ht\pgfnodeparttextbox%
\pgf@x=-.5\wd\pgfnodeparttextbox%
}
% \end{macrocode}
%
% These are our externally available anchors
% \begin{macrocode}
\anchor{centre}{\pgfpointorigin}
\anchor{center}{\pgfpointorigin}
\anchor{text}{
\tqft@textsize
}
\anchor{north}{%
\pgf@ya=\tqft@height\relax
\pgf@yb=.5\pgf@ya
\advance\pgf@yb by \tqft@outerysep\relax
\tqft@process{0pt}{\the\pgf@yb}
}
\anchor{south}{%
\pgf@yb=\tqft@height\relax
\pgf@ya=.5\pgf@yb
\advance\pgf@ya by \tqft@outerysep\relax
\pgf@yb=-\pgf@ya
\tqft@process{0pt}{\the\pgf@yb}
}
\anchor{west}{%
\tqft@start@incoming
\pgf@xa=\pgf@x
\advance\pgf@xa by -\tqft@width
\pgf@ya=\pgf@y
\tqft@start@outgoing
\pgf@xb=\pgf@x
\advance\pgf@xb by -\tqft@width
\pgf@yb=\pgf@y
\pgf@xc=.5\pgf@xa
\advance\pgf@xc by .5\pgf@xb
\pgf@yc=.5\pgf@ya
\advance\pgf@yc by .5\pgf@yb
\advance\pgf@xc by -\tqft@outerxsep\relax
\tqft@process{\the\pgf@xc}{\the\pgf@yc}
}
\anchor{east}{%
\tqft@start@incoming
\pgf@xa=\pgf@x
\pgfmathsetlength{\pgf@xa}{\pgf@xa + (\tqft@incoming - 1) * \tqft@separation}
\advance\pgf@xa by \tqft@width\relax
\pgf@ya=\pgf@y
\tqft@start@outgoing
\pgf@xb=\pgf@x
\pgfmathsetlength{\pgf@xb}{\pgf@xb + (\tqft@outgoing - 1) * \tqft@separation}
\advance\pgf@xb by \tqft@width\relax
\pgf@yb=\pgf@y
\pgf@xc=.5\pgf@xa
\advance\pgf@xc by .5\pgf@xb
\pgf@yc=.5\pgf@ya
\advance\pgf@yc by .5\pgf@yb
\advance\pgf@xc by \tqft@outerxsep\relax
\tqft@process{\the\pgf@xc}{\the\pgf@yc}
}
\anchor{north west}{
\tqft@start@incoming
\pgf@xc=\pgf@x
\pgf@yc=\pgf@y
\advance\pgf@xc by -\tqft@width\relax
\advance\pgf@yc by \tqft@outerysep\relax
\advance\pgf@xc by -\tqft@outerxsep\relax
\tqft@process{\the\pgf@xc}{\the\pgf@yc}
}
\anchor{south west}{
\tqft@start@outgoing
\pgf@xc=\pgf@x
\pgf@yc=\pgf@y
\advance\pgf@xc by -\tqft@width\relax
\advance\pgf@yc by -\tqft@outerysep\relax
\advance\pgf@xc by -\tqft@outerxsep\relax
\tqft@process{\the\pgf@xc}{\the\pgf@yc}
}
\anchor{north east}{
\tqft@start@incoming
\pgf@xc=\pgf@x
\pgfmathsetlength{\pgf@xc}{\pgf@xc + (\tqft@incoming - 1)*\tqft@separation}
\pgf@yc=\pgf@y
\advance\pgf@xc by \tqft@width\relax
\advance\pgf@yc by \tqft@outerysep\relax
\advance\pgf@xc by \tqft@outerxsep\relax
\tqft@process{\the\pgf@xc}{\the\pgf@yc}
}
\anchor{south east}{
\tqft@start@outgoing
\pgf@xc=\pgf@x
\pgfmathsetlength{\pgf@xc}{\pgf@xc + (\tqft@outgoing - 1)*\tqft@separation}
\pgf@yc=\pgf@y
\advance\pgf@xc by \tqft@width\relax
\advance\pgf@yc by -\tqft@outerysep\relax
\advance\pgf@xc by \tqft@outerxsep\relax
\tqft@process{\the\pgf@xc}{\the\pgf@yc}
}
% \end{macrocode}
% To define anchors at the boundary components requires a bit of trickery borrowed from the ``regular polygon'' shape.
% \begin{macrocode}
\expandafter\pgfutil@g@addto@macro\csname pgf@sh@s@tqft cobordism\endcsname{%
\c@pgf@counta\tqft@incoming\relax%
\pgfmathloop%
\ifnum\c@pgf@counta>0\relax%
\pgfutil@ifundefined{pgf@anchor@tqft cobordism@incoming boundary\space\the\c@pgf@counta}{%
\expandafter\xdef\csname pgf@anchor@tqft cobordism@incoming boundary\space\the\c@pgf@counta\endcsname{%
\noexpand\tqft@start@incoming
\noexpand\pgfmathsetlength{\noexpand\pgf@y}{\noexpand\pgf@y + \noexpand\tqft@outerysep}
\noexpand\pgfmathsetlength{\noexpand\pgf@x}{\noexpand\pgf@x + (\the\c@pgf@counta - 1) * \noexpand\tqft@separation}
\noexpand\tqft@process{\noexpand\the\noexpand\pgf@x}{\noexpand\the\noexpand\pgf@y}
}
}{\c@pgf@counta0\relax}%
\advance\c@pgf@counta-1\relax%
\repeatpgfmathloop%
}
\expandafter\pgfutil@g@addto@macro\csname pgf@sh@s@tqft cobordism\endcsname{%
\c@pgf@counta\tqft@outgoing\relax%
\pgfmathloop%
\ifnum\c@pgf@counta>0\relax%
\pgfutil@ifundefined{pgf@anchor@tqft cobordism@outgoing boundary\space\the\c@pgf@counta}{%
\expandafter\xdef\csname pgf@anchor@tqft cobordism@outgoing boundary\space\the\c@pgf@counta\endcsname{%
\noexpand\tqft@start@outgoing
\noexpand\pgfmathsetlength{\noexpand\pgf@y}{\noexpand\pgf@y - \noexpand\tqft@outerysep}
\noexpand\pgfmathsetlength{\noexpand\pgf@x}{\noexpand\pgf@x + (\the\c@pgf@counta - 1) * \noexpand\tqft@separation}
\noexpand\tqft@process{\noexpand\the\noexpand\pgf@x}{\noexpand\the\noexpand\pgf@y}
}
}{\c@pgf@counta0\relax}%
\advance\c@pgf@counta-1\relax%
\repeatpgfmathloop%
}
\expandafter\pgfutil@g@addto@macro\csname pgf@sh@s@tqft cobordism\endcsname{%
\c@pgf@counta\tqft@incoming\relax%
\advance\c@pgf@counta-1\relax
\pgfmathloop%
\ifnum\c@pgf@counta>0\relax%
\pgfutil@ifundefined{pgf@anchor@tqft cobordism@after incoming boundary\space\the\c@pgf@counta}{%
\expandafter\xdef\csname pgf@anchor@tqft cobordism@after incoming boundary\space\the\c@pgf@counta\endcsname{%
\noexpand\tqft@start@incoming
\noexpand\pgfmathsetlength{\noexpand\pgf@y}{.25 * \noexpand\pgf@y +.75 * \noexpand\tqft@control + \noexpand\tqft@outerysep}
\noexpand\pgfmathsetlength{\noexpand\pgf@x}{\noexpand\pgf@x + (\the\c@pgf@counta - .5) * \noexpand\tqft@separation}
\noexpand\tqft@process{\noexpand\the\noexpand\pgf@x}{\noexpand\the\noexpand\pgf@y}
}
}{\c@pgf@counta0\relax}%
\advance\c@pgf@counta-1\relax%
\repeatpgfmathloop%
}
\expandafter\pgfutil@g@addto@macro\csname pgf@sh@s@tqft cobordism\endcsname{%
\c@pgf@counta\tqft@outgoing\relax%
\advance\c@pgf@counta-1\relax
\pgfmathloop%
\ifnum\c@pgf@counta>0\relax%
\pgfutil@ifundefined{pgf@anchor@tqft cobordism@after outgoing boundary\space\the\c@pgf@counta}{%
\expandafter\xdef\csname pgf@anchor@tqft cobordism@after outgoing boundary\space\the\c@pgf@counta\endcsname{%
\noexpand\tqft@start@outgoing
\noexpand\pgfmathsetlength{\noexpand\pgf@y}{.25 * \noexpand\pgf@y -.75 * \noexpand\tqft@control - \noexpand\tqft@outerysep}
\noexpand\pgfmathsetlength{\noexpand\pgf@x}{\noexpand\pgf@x + (\the\c@pgf@counta - .5) * \noexpand\tqft@separation}
\noexpand\tqft@process{\noexpand\the\noexpand\pgf@x}{\noexpand\the\noexpand\pgf@y}
}
}{\c@pgf@counta0\relax}%
\advance\c@pgf@counta-1\relax%
\repeatpgfmathloop%
}
% \end{macrocode}
% Now we define the background path.
% This is the upper part of the cobordism.
% \begin{macrocode}
\backgroundpath{
% \end{macrocode}
% Apply the internal transformation
% \begin{macrocode}
\let\tikz@transform=\pgfutil@empty
\expandafter\tikzset\expandafter{\tqft@transformation}
\tikz@transform
% \end{macrocode}
% Convert the boundary separation and width to lengths
% \begin{macrocode}
\pgfmathsetlength{\tqft@s}{\tqft@separation}
\pgfmathsetlength{\tqft@w}{2*\tqft@width}
% \end{macrocode}
% Compute the starting position of the incoming boundary components so that we get the centre anchor on the centre of the cobordism
% \begin{macrocode}
\tqft@start@incoming
\tqft@xa=\pgf@x
\advance\tqft@xa by -.5\tqft@w\relax
\tqft@h=\pgf@y
\tqft@xb=\tqft@xa
\advance\tqft@xb by \tqft@w\relax
\tqft@c=\tqft@control\relax
% \end{macrocode}
% Do we have any incoming boundary components at all?
% \begin{macrocode}
\ifnum\tqft@incoming>0
% \end{macrocode}
% Yes, so move to the position of the first and draw it
% \begin{macrocode}
\pgfpathmoveto{\pgfqpoint{\tqft@xa}{\tqft@h}}
\pgfpatharc{\pgf@tqft@upper180}{0}{\tqft@width and \tqft@depth}
% \end{macrocode}
% Do we have any more incoming boundary components?
% \begin{macrocode}
\ifnum\tqft@incoming>1
% \end{macrocode}
% Yes, so iterate over the remaining incoming boundary components
% \begin{macrocode}
\foreach \tqft@k in {2,...,\tqft@incoming} {
\advance\tqft@xa by \tqft@k\tqft@s
\advance\tqft@xb by \tqft@k\tqft@s
\advance\tqft@xb by -2\tqft@s
\advance\tqft@xa by -\tqft@s
\pgfpathcurveto{\pgfqpoint{\tqft@xb}{\tqft@c}}{\pgfqpoint{\tqft@xa}{\tqft@c}}{\pgfqpoint{\tqft@xa}{\tqft@h}}
\pgfpatharc{\pgf@tqft@upper180}{0}{\tqft@width and \tqft@depth}
}
\fi
% \end{macrocode}
% If we don't have any outgoing boundary components, may as well close up now.
% \begin{macrocode}
\ifnum\tqft@outgoing=0
\advance\tqft@xb by \tqft@incoming\tqft@s
\advance\tqft@xb by -\tqft@s
\pgfmathsetlength{\tqft@ch}{min(0,max(-\tqft@h,\tqft@h - (\tqft@h - \tqft@c) * ((abs(\tqft@xb - \tqft@xa) - \tqft@w)/\tqft@s + 1)))}
\pgfpathcurveto{\pgfqpoint{\tqft@xb}{\tqft@ch}}{\pgfqpoint{\tqft@xa}{\tqft@ch}}{\pgfqpoint{\tqft@xa}{\tqft@h}}
\fi
\fi
% \end{macrocode}
% Shift down to the outgoing components, if we have any
% \begin{macrocode}
\ifnum\tqft@outgoing>0
\advance\tqft@xb by \tqft@incoming\tqft@s
\advance\tqft@xb by -\tqft@s
\pgfmathsetlength{\tqft@xa}{\tqft@xa + (\tqft@outgoing - 1 + \tqft@offset) * \tqft@separation + 2*\tqft@width}
% \end{macrocode}
% If we had incoming boundaries, this is a curveto, otherwise it's a moveto
% \begin{macrocode}
\ifnum\tqft@incoming>0
\pgfmathsetlength{\tqft@ch}{min(0,max(-\tqft@h,\tqft@h - (\tqft@h - \tqft@c) * ((abs(\tqft@xb - \tqft@xa) - \tqft@w)/\tqft@s + 1)))}
\pgfpathcurveto{\pgfqpoint{\tqft@xb}{\tqft@ch}}{\pgfqpoint{\tqft@xa}{-\tqft@ch}}{\pgfqpoint{\tqft@xa}{-\tqft@h}}
\else
\pgfpathmoveto{\pgfqpoint{\tqft@xa}{-\tqft@h}}
\fi
\tqft@xb=\tqft@xa
\advance\tqft@xb by -\tqft@w
% \end{macrocode}
% Now draw the lower components
% \begin{macrocode}
\pgfpatharc{0}{\pgf@tqft@upper180}{\tqft@width and \tqft@depth}
% \end{macrocode}
% Now iterate over the remaining outgoing boundary components
% \begin{macrocode}
\ifnum\tqft@outgoing>1
\foreach \tqft@k in {2,...,\tqft@outgoing} {
\advance\tqft@xa by -\tqft@k\tqft@s
\advance\tqft@xb by -\tqft@k\tqft@s
\advance\tqft@xb by 2\tqft@s
\advance\tqft@xa by \tqft@s
\pgfpathcurveto{\pgfqpoint{\tqft@xb}{-\tqft@c}}{\pgfqpoint{\tqft@xa}{-\tqft@c}}{\pgfqpoint{\tqft@xa}{-\tqft@h}}
\pgfpatharc{0}{\pgf@tqft@upper180}{\tqft@width and \tqft@depth}
}
\fi
% \end{macrocode}
% Shift back up to the incoming components, if we had any, otherwise arc back to our starting point
% \begin{macrocode}
\advance\tqft@xb by -\tqft@outgoing\tqft@s
\advance\tqft@xb by \tqft@s
\ifnum\tqft@incoming>0
\pgfmathsetlength{\tqft@xa}{\tqft@xa - (\tqft@outgoing -1 + \tqft@offset) * \tqft@separation - 2*\tqft@width}
\pgfmathsetlength{\tqft@ch}{min(0,max(-\tqft@h,\tqft@h - (\tqft@h - \tqft@c) * ((abs(\tqft@xb - \tqft@xa) - \tqft@w)/\tqft@s + 1)))}
\pgfpathcurveto{\pgfqpoint{\tqft@xb}{-\tqft@ch}}{\pgfqpoint{\tqft@xa}{\tqft@ch}}{\pgfqpoint{\tqft@xa}{\tqft@h}}
\else
\pgfmathsetlength{\tqft@ch}{min(0,max(-\tqft@h,\tqft@h - (\tqft@h - \tqft@c) * ((abs(\tqft@xb - \tqft@xa) - \tqft@w)/\tqft@s + 1)))}
\pgfpathcurveto{\pgfqpoint{\tqft@xb}{-\tqft@ch}}{\pgfqpoint{\tqft@xa}{-\tqft@ch}}{\pgfqpoint{\tqft@xa}{-\tqft@h}}
\fi
\fi
% \end{macrocode}
% Close the path
% \begin{macrocode}
\pgfpathclose
}
% \end{macrocode}
% End of background path
% Now we define the behind background path.
% This is the lower part of the boundary circles.
% \begin{macrocode}
\behindbackgroundpath{
% \end{macrocode}
% Apply the internal transformation
% \begin{macrocode}
\let\tikz@transform=\pgfutil@empty
\expandafter\tikzset\expandafter{\tqft@transformation}
\tikz@transform
% \end{macrocode}
% Convert the boundary separation and width to lengths
% \begin{macrocode}
\pgfmathsetlength{\tqft@s}{\tqft@separation}
\pgfmathsetlength{\tqft@w}{2*\tqft@width}
% \end{macrocode}
% Compute the starting position of the incoming boundary components so that we get the centre anchor on the centre of the cobordism
% \begin{macrocode}
\pgfmathsetlength{\tqft@xa}{-(max(\tqft@incoming - 1,\tqft@outgoing - 1 + \tqft@offset) + min(0,\tqft@offset) + 2)*\tqft@separation/2}
\pgfmathsetlength{\tqft@h}{.5 * \tqft@height}
% \end{macrocode}
% This section draws the boundary circles
% \begin{macrocode}
{
% \end{macrocode}
% Initialise the TikZ path settings and read in the style options for the boundary
% \begin{macrocode}
\tikz@mode@fillfalse%
\tikz@mode@drawfalse%
\let\tikz@mode=\pgfutil@empty
\let\tikz@options=\pgfutil@empty
\tqftset{boundary style contents}
\tikz@mode
\tikz@options
% \end{macrocode}
% Do we have any incoming boundary components at all?
% \begin{macrocode}
\ifnum\tqft@incoming>0
% \end{macrocode}
% Yes, so iterate over them
% \begin{macrocode}
\foreach \tqft@k in {1,...,\tqft@incoming} {
\advance\tqft@xa by \tqft@k\tqft@s
\pgfpathellipse{\pgfqpoint{\tqft@xa}{\tqft@h}}{\pgfqpoint{\tqft@width}{0pt}}{\pgfqpoint{0pt}{\tqft@depth}}
}
\fi
% \end{macrocode}
% Now iterate over the outgoing boundary components, if we have any
% \begin{macrocode}
\ifnum\tqft@outgoing>0
\pgfmathsetlength{\tqft@xa}{\tqft@xa + (\tqft@outgoing + \tqft@offset + 1) * \tqft@separation}
\foreach \tqft@k in {1,...,\tqft@outgoing} {
\advance\tqft@xa by -\tqft@k\tqft@s
% \advance\tqft@xa by \tqft@s
\pgfpathellipse{\pgfqpoint{\tqft@xa}{-\tqft@h}}{\pgfqpoint{\tqft@width}{0pt}}{\pgfqpoint{0pt}{\tqft@depth}}
}
\fi
% \end{macrocode}
% \begin{macrocode}
\edef\tikz@temp{\noexpand\pgfusepath{%
\iftikz@mode@fill fill,\fi%
\iftikz@mode@draw draw\fi%
}}%
\tikz@temp
}
% \end{macrocode}
% This section draws the lower parts of the boundary circles
% \begin{macrocode}
{
% \end{macrocode}
% Initialise the TikZ path settings and read in the style options for the boundary
% \begin{macrocode}
\tikz@mode@fillfalse%
\tikz@mode@drawfalse%
\let\tikz@mode=\pgfutil@empty
\let\tikz@options=\pgfutil@empty
\tqftset{boundary lower style contents}
\tikz@mode
\tikz@options
\advance\tqft@xa by .5\tqft@w
% \end{macrocode}
% Do we have any incoming boundary components at all?
% \begin{macrocode}
\ifnum\tqft@incoming>0
% \end{macrocode}
% Yes, so iterate over them
% \begin{macrocode}
\foreach \tqft@k in {1,...,\tqft@incoming} {
\advance\tqft@xa by \tqft@k\tqft@s
\pgfpathmoveto{\pgfqpoint{\tqft@xa}{\tqft@h}}
\pgfpatharc{0}{\pgf@tqft@lower180}{\tqft@width and \tqft@depth}
}
\fi
% \end{macrocode}
% Now iterate over the outgoing boundary components, if we have any
% \begin{macrocode}
\ifnum\tqft@outgoing>0
\pgfmathsetlength{\tqft@xa}{\tqft@xa + (\tqft@outgoing + \tqft@offset + 1) * \tqft@separation}
\foreach \tqft@k in {1,...,\tqft@outgoing} {
\advance\tqft@xa by -\tqft@k\tqft@s
% \advance\tqft@xa by \tqft@s
\pgfpathmoveto{\pgfqpoint{\tqft@xa}{-\tqft@h}}
\pgfpatharc{0}{\pgf@tqft@lower180}{\tqft@width and \tqft@depth}
}
\fi
% \end{macrocode}
% \begin{macrocode}
\edef\tikz@temp{\noexpand\pgfusepath{%
\iftikz@mode@fill fill,\fi%
\iftikz@mode@draw draw\fi%
}}%
\tikz@temp
}
}
% \end{macrocode}
% End of behind background path.
%
% Now we define the before background path.
% This is the upper part of the boundary circles and the cobordism edge.
% \begin{macrocode}
\beforebackgroundpath{
% \end{macrocode}
% We \emph{don't} apply the internal transformation as it is already in place from the \Verb+\backgroundpath+.
% Convert the boundary separation and width to lengths
% \begin{macrocode}
\pgfmathsetlength{\tqft@s}{\tqft@separation}
\pgfmathsetlength{\tqft@w}{2*\tqft@width}
% \end{macrocode}
% Compute the starting position of the incoming boundary components so that we get the centre anchor on the centre of the cobordism
% \begin{macrocode}
\pgfmathsetlength{\tqft@xa}{-(max(\tqft@incoming - 1,\tqft@outgoing - 1 + \tqft@offset) + min(0,\tqft@offset))*\tqft@s/2 - \tqft@width}
\tqft@xb=\tqft@xa
\advance\tqft@xb by \tqft@w
\tqft@c=\tqft@control\relax
\pgfmathsetlength{\tqft@h}{.5 * \tqft@height}
% \end{macrocode}
% This section draws the non-boundary part of the cobordism.
% \begin{macrocode}
{
% \end{macrocode}
% Initialise the TikZ path settings and read in the style options for the boundary
% \begin{macrocode}
\tikz@mode@fillfalse%
\tikz@mode@drawfalse%
\let\tikz@mode=\pgfutil@empty
\let\tikz@options=\pgfutil@empty
\tqftset{cobordism style contents}
\tikz@mode
\tikz@options
% Do we have any incoming boundary components at all?
% \begin{macrocode}
\ifnum\tqft@incoming>0
% \end{macrocode}
% Do we have more than one?
% \begin{macrocode}
\ifnum\tqft@incoming>1
% \end{macrocode}
% Yes, so iterate over the remaining incoming boundary components
% \begin{macrocode}
\foreach \tqft@k in {2,...,\tqft@incoming} {
\advance\tqft@xa by \tqft@k\tqft@s
\advance\tqft@xb by \tqft@k\tqft@s
\advance\tqft@xb by -2\tqft@s
\advance\tqft@xa by -\tqft@s
\pgfpathmoveto{\pgfqpoint{\tqft@xb}{\tqft@h}}
\pgfpathcurveto{\pgfqpoint{\tqft@xb}{\tqft@c}}{\pgfqpoint{\tqft@xa}{\tqft@c}}{\pgfqpoint{\tqft@xa}{\tqft@h}}
}
\fi
% \end{macrocode}
% If we don't have any outgoing boundary components, may as well close up now.
% \begin{macrocode}
\ifnum\tqft@outgoing=0
\advance\tqft@xb by \tqft@incoming\tqft@s
\advance\tqft@xb by -\tqft@s
\pgfmathsetlength{\tqft@ch}{min(0,max(-\tqft@h,\tqft@h - (\tqft@h - \tqft@c) * ((abs(\tqft@xb - \tqft@xa) - \tqft@w)/\tqft@s + 1)))}
\pgfpathmoveto{\pgfqpoint{\tqft@xb}{\tqft@h}}
\pgfpathcurveto{\pgfqpoint{\tqft@xb}{\tqft@ch}}{\pgfqpoint{\tqft@xa}{\tqft@ch}}{\pgfqpoint{\tqft@xa}{\tqft@h}}
\fi
\fi
% \end{macrocode}
% Shift down to the outgoing components, if we have any
% \begin{macrocode}
\ifnum\tqft@outgoing>0
\advance\tqft@xb by \tqft@incoming\tqft@s
\advance\tqft@xb by -\tqft@s
\pgfmathsetlength{\tqft@xa}{\tqft@xa + (\tqft@outgoing - 1 + \tqft@offset) * \tqft@separation + 2*\tqft@width}
% \end{macrocode}
% If we had incoming boundaries, this is a curveto, otherwise it's a moveto
% \begin{macrocode}
\ifnum\tqft@incoming>0
\pgfmathsetlength{\tqft@ch}{min(0,max(-\tqft@h,\tqft@h - (\tqft@h - \tqft@c) * ((abs(\tqft@xb - \tqft@xa) - \tqft@w)/\tqft@s + 1)))}
\pgfpathmoveto{\pgfqpoint{\tqft@xb}{\tqft@h}}
\pgfpathcurveto{\pgfqpoint{\tqft@xb}{\tqft@ch}}{\pgfqpoint{\tqft@xa}{-\tqft@ch}}{\pgfqpoint{\tqft@xa}{-\tqft@h}}
\else
\pgfpathmoveto{\pgfqpoint{\tqft@xa}{-\tqft@h}}
\fi
\tqft@xb=\tqft@xa
\advance\tqft@xb by -\tqft@w
% \end{macrocode}
% Now draw the lower components
% \begin{macrocode}
\pgfpathmoveto{\pgfqpoint{\tqft@xb}{-\tqft@h}}
% \end{macrocode}
% Now iterate over the remaining outgoing boundary components
% \begin{macrocode}
\ifnum\tqft@outgoing>1
\foreach \tqft@k in {2,...,\tqft@outgoing} {
\advance\tqft@xa by -\tqft@k\tqft@s
\advance\tqft@xb by -\tqft@k\tqft@s
\advance\tqft@xb by 2\tqft@s
\advance\tqft@xa by \tqft@s
\pgfpathcurveto{\pgfqpoint{\tqft@xb}{-\tqft@c}}{\pgfqpoint{\tqft@xa}{-\tqft@c}}{\pgfqpoint{\tqft@xa}{-\tqft@h}}
\advance\tqft@xa by -\tqft@w
\pgfpathmoveto{\pgfqpoint{\tqft@xa}{-\tqft@h}}
}
\fi
% \end{macrocode}
% Shift back up to the incoming components, if we had any, otherwise arc back to our starting point
% \begin{macrocode}
\advance\tqft@xb by -\tqft@outgoing\tqft@s
\advance\tqft@xb by \tqft@s
\ifnum\tqft@incoming>0
\pgfmathsetlength{\tqft@xa}{\tqft@xa - (\tqft@outgoing -1 + \tqft@offset) * \tqft@separation - 2*\tqft@width}
\pgfmathsetlength{\tqft@ch}{min(0,max(-\tqft@h,\tqft@h - (\tqft@h - \tqft@c) * ((abs(\tqft@xb - \tqft@xa) - \tqft@w)/\tqft@s + 1)))}
\pgfpathcurveto{\pgfqpoint{\tqft@xb}{-\tqft@ch}}{\pgfqpoint{\tqft@xa}{\tqft@ch}}{\pgfqpoint{\tqft@xa}{\tqft@h}}
\else
\pgfmathsetlength{\tqft@ch}{min(0,max(-\tqft@h,\tqft@h - (\tqft@h - \tqft@c) * ((abs(\tqft@xb - \tqft@xa) - \tqft@w)/\tqft@s + 1)))}
\pgfpathcurveto{\pgfqpoint{\tqft@xb}{-\tqft@ch}}{\pgfqpoint{\tqft@xa}{-\tqft@ch}}{\pgfqpoint{\tqft@xa}{-\tqft@h}}
\fi
\fi
\edef\tikz@temp{\noexpand\pgfusepath{%
\iftikz@mode@fill fill,\fi%
\iftikz@mode@draw draw\fi%
}}%
\tikz@temp
}
% \end{macrocode}
% This section draws the upper parts of the boundary circles
% \begin{macrocode}
{
% \end{macrocode}
% Initialise the TikZ path settings and read in the style options for the boundary
% \begin{macrocode}
\let\tqft@bdry@path=\pgfutil@empty
\let\tqft@bdry@node@path=\pgfutil@empty
\pgfsyssoftpath@setcurrentpath{\tqft@bdry@path}
\tikz@mode@fillfalse%
\tikz@mode@drawfalse%
\let\tikz@mode=\pgfutil@empty
\let\tikz@options=\pgfutil@empty
\tqftset{boundary upper style contents}
\tikz@mode
\tikz@options
\advance\tqft@xa by -\tqft@s
\advance\tqft@xa by \tqft@w
% \end{macrocode}
% Do we have any incoming boundary components at all?
% \begin{macrocode}
\ifnum\tqft@incoming>0
% \end{macrocode}
% Yes, so iterate over them
% \begin{macrocode}
\foreach \tqft@k in {1,...,\tqft@incoming} {
\advance\tqft@xa by \tqft@k\tqft@s
\pgfpathmoveto{\pgfqpoint{\tqft@xa}{\tqft@h}}
\pgfpatharc{0}{\pgf@tqft@upper180}{\tqft@width and \tqft@depth}
\ifx\tikz@fig@name\pgfutil@empty
\else
{
\advance\tqft@xa by -\tqft@width
\pgftransformshift{\pgfqpoint{\tqft@xa}{\tqft@h}}
\tqft@within@nodetrue
\pgfsyssoftpath@getcurrentpath{\tqft@bdry@path}
\pgfsyssoftpath@setcurrentpath{\tqft@bdry@node@path}
\pgfnode{tqft boundary circle}{centre}{}{\tikz@fig@name\space incoming \tqft@k}{}
\pgfsyssoftpath@getcurrentpath{\tqft@bdry@node@path}
\pgfsyssoftpath@setcurrentpath{\tqft@bdry@path}
}
\fi
}
\fi
% \end{macrocode}
% Now iterate over the outgoing boundary components, if we have any
% \begin{macrocode}
\ifnum\tqft@outgoing>0
\pgfmathsetlength{\tqft@xa}{\tqft@xa + (\tqft@outgoing + \tqft@offset + 1) * \tqft@separation}
\foreach \tqft@k in {1,...,\tqft@outgoing} {
\advance\tqft@xa by -\tqft@k\tqft@s
% \advance\tqft@xa by \tqft@s
\pgfpathmoveto{\pgfqpoint{\tqft@xa}{-\tqft@h}}
\pgfpatharc{0}{\pgf@tqft@upper180}{\tqft@width and \tqft@depth}
\ifx\tikz@fig@name\pgfutil@empty
\else
{
\pgfmathtruncatemacro{\tqft@l}{\tqft@outgoing + 1 - \tqft@k}
\advance\tqft@xa by -\tqft@width
\pgftransformshift{\pgfqpoint{\tqft@xa}{-\tqft@h}}
\tqft@within@nodetrue
\pgfsyssoftpath@getcurrentpath{\tqft@bdry@path}
\pgfsyssoftpath@setcurrentpath{\tqft@bdry@node@path}
\pgfnode{tqft boundary circle}{centre}{}{\tikz@fig@name\space outgoing \tqft@l}{}
\pgfsyssoftpath@getcurrentpath{\tqft@bdry@node@path}
\pgfsyssoftpath@setcurrentpath{\tqft@bdry@path}
}
\fi
}
\fi
% \end{macrocode}
% \begin{macrocode}
\edef\tikz@temp{\noexpand\pgfusepath{%
\iftikz@mode@fill fill,\fi%
\iftikz@mode@draw draw\fi%
}}%
\tikz@temp
}
}
}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{boundary circle shape}
% This is a the shape of the boundary circles
% \begin{macrocode}
\pgfdeclareshape{tqft boundary circle}{
% \end{macrocode}
% Now we save our dimensions: height, separation, and the radii of the boundary circles
% \begin{macrocode}
\saveddimen{\tqft@height}{\pgf@x=\pgfkeysvalueof{/pgf/tqft/cobordism height}}
\saveddimen{\tqft@separation}{\pgf@x=\pgfkeysvalueof{/pgf/tqft/boundary separation}}
\saveddimen{\tqft@width}{\pgf@x=\pgfkeysvalueof{/pgf/tqft/circle width}}
\saveddimen{\tqft@depth}{\pgf@x=\pgfkeysvalueof{/pgf/tqft/circle depth}}
% \end{macrocode}
%
% For the externally available anchors, we need to save the declared transformation; we save the actual transformation, not the macro that points to it.
% If we're called within the main cobordism shape, the transformation is already applied so we ignore it.
% \begin{macrocode}
\savedmacro{\tqft@transformation}{%
\iftqft@within@node
\let\tqft@transformation=\pgfutil@empty
\else
\pgfkeysgetvalue{/pgf/tqft/flow transformation}{\tqft@transformation}
\fi
}
% \end{macrocode}
% \begin{macrocode}
\savedanchor{\tqft@centre}{%
\pgfpointorigin}
% \end{macrocode}
% For completeness, we record the size of the text box (not that we expect any text, but you never know)
% \begin{macrocode}
\savedanchor{\tqft@textsize}{%
\pgf@y=-.5\ht\pgfnodeparttextbox%
\pgf@x=-.5\wd\pgfnodeparttextbox%
}
% \end{macrocode}
% These are our externally available anchors
% \begin{macrocode}
\anchor{centre}{\tqft@centre}
\anchor{center}{\tqft@centre}
\anchor{text}{
\tqft@textsize
}
\anchor{next}{%
\tqft@process{\tqft@separation}{0pt}}%
% \end{macrocode}
% \begin{macrocode}
\anchor{prior}{%
\tqft@process{-\tqft@separation}{0pt}}%
% \end{macrocode}
% \begin{macrocode}
\anchor{above}{%
\tqft@process{0pt}{\tqft@height}}%
% \end{macrocode}
% \begin{macrocode}
\anchor{below}{%
\tqft@process{0pt}{-\tqft@height}}%
% \end{macrocode}
% The anchor border is the ellipse, but we need to take into account the possible transformation.
% (This isn't right if the origin is shifted.)
% At the moment, '0 degrees' is interpreted in the transformed coordinate system.
% Should provide a system whereby that can be intepreted in the main coordinate system.
% \begin{macrocode}
\anchorborder{
% \end{macrocode}
% This next \Verb+\pgf@process+ makes the angles absolute.
% Comment it out to make the angles relative.
% \begin{macrocode}
\tqft@process{\the\pgf@x}{\the\pgf@y}
\edef\tqft@marshal{%
\noexpand\pgfpointborderellipse
{\noexpand\pgfqpoint{\the\pgf@x}{\the\pgf@y}}
{\noexpand\pgfqpoint{\tqft@width}{\tqft@depth}}
}%
\tqft@marshal
\tqft@process{\the\pgf@x}{\the\pgf@y}
}
% \end{macrocode}
% Now we define the background path.
% This is the upper part of the cobordism.
% \begin{macrocode}
\backgroundpath{
% \end{macrocode}
% Apply the internal transformation if we're not within a node
% \begin{macrocode}
\let\tikz@transform=\pgfutil@empty
\expandafter\tikzset\expandafter{\tqft@transformation}
\tikz@transform
% \end{macrocode}
% Draw the boundary circle
% \begin{macrocode}
\pgfpathellipse{\pgfqpoint{0pt}{0pt}}{\pgfqpoint{\tqft@width}{0pt}}{\pgfqpoint{0pt}{\tqft@depth}}
}
% \end{macrocode}
% We draw the upper and lower arcs again with the appropriate styles
% \begin{macrocode}
\beforebackgroundpath{
\iftqft@within@node
\else
\tikz@mode@fillfalse%
\tikz@mode@drawfalse%
\let\tikz@mode=\pgfutil@empty
\let\tikz@options=\pgfutil@empty
{
\pgfsys@beginscope
\tqftset{boundary lower style contents}
\tikz@mode
\tikz@options
\pgfpathmoveto{\pgfqpoint{\tqft@width}{0pt}}
\pgfpatharc{0}{\pgf@tqft@lower180}{\tqft@width and \tqft@depth}
\edef\tikz@temp{\noexpand\pgfusepath{%
\iftikz@mode@fill fill,\fi%
\iftikz@mode@draw draw\fi%
}}%
\tikz@temp
\pgfsys@endscope
}
{
\pgfsys@beginscope
\tqftset{boundary upper style contents}
\tikz@mode
\tikz@options
\pgfpathmoveto{\pgfqpoint{\tqft@width}{0pt}}
\pgfpatharc{0}{\pgf@tqft@upper180}{\tqft@width and \tqft@depth}
\edef\tikz@temp{\noexpand\pgfusepath{%
\iftikz@mode@fill fill,\fi%
\iftikz@mode@draw draw\fi%
}}%
\tikz@temp
\pgfsys@endscope
}
\fi
}
}
% \end{macrocode}
% \end{macro}
% \iffalse
%</package>
% \fi
%
% \Finale
\endinput
|