summaryrefslogtreecommitdiff
path: root/basegfx/util/defs/wntmsci8
blob: 37b9eea74e77a2454f904aaf3fa58ee7148586fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
??0B2DCubicBezier@curve@basegfx@@QAE@ABV012@@Z
??0B2DCubicBezier@curve@basegfx@@QAE@ABVB2DPoint@point@2@000@Z
??0B2DCubicBezier@curve@basegfx@@QAE@ABVB2DPoint@point@2@0@Z
??0B2DCubicBezier@curve@basegfx@@QAE@XZ
??1B2DCubicBezier@curve@basegfx@@QAE@XZ
??4B2DCubicBezier@curve@basegfx@@QAEAAV012@ABV012@@Z
??8B2DCubicBezier@curve@basegfx@@QBEEABV012@@Z
??9B2DCubicBezier@curve@basegfx@@QBEEABV012@@Z
?isBezier@B2DCubicBezier@curve@basegfx@@QBEEXZ
?testAndSolveTrivialBezier@B2DCubicBezier@curve@basegfx@@QAEXXZ
??0B2DQuadraticBezier@curve@basegfx@@QAE@ABV012@@Z
??0B2DQuadraticBezier@curve@basegfx@@QAE@ABVB2DPoint@point@2@00@Z
??0B2DQuadraticBezier@curve@basegfx@@QAE@ABVB2DPoint@point@2@0@Z
??0B2DQuadraticBezier@curve@basegfx@@QAE@XZ
??1B2DQuadraticBezier@curve@basegfx@@QAE@XZ
??4B2DQuadraticBezier@curve@basegfx@@QAEAAV012@ABV012@@Z
??8B2DQuadraticBezier@curve@basegfx@@QBEEABV012@@Z
??9B2DQuadraticBezier@curve@basegfx@@QBEEABV012@@Z
?isBezier@B2DQuadraticBezier@curve@basegfx@@QBEEXZ
?adaptiveSubdivideByAngle@curve@basegfx@@YAJAAVB2DPolygon@polygon@2@ABVB2DCubicBezier@12@N@Z
?adaptiveSubdivideByDistance@curve@basegfx@@YAJAAVB2DPolygon@polygon@2@ABVB2DCubicBezier@12@N@Z
?adaptiveSubdivideByDistance@curve@basegfx@@YAJAAVB2DPolygon@polygon@2@ABVB2DQuadraticBezier@12@N@Z
?subdivideFurther@AngleErrorFunctor@?A0xc8fec892@curve@basegfx@@QAE_NNNNNNNNNNN@Z
?subdivideFurther@DistanceErrorFunctor@?A0xc8fec892@curve@basegfx@@QAE_NABN000000000@Z
_real@3fd5555555555555
_real@3fe0000000000000
_real@3fe5555555555555
??0B2DHomMatrix@matrix@basegfx@@QAE@ABV012@@Z
??0B2DHomMatrix@matrix@basegfx@@QAE@XZ
??1B2DHomMatrix@matrix@basegfx@@QAE@XZ
??4B2DHomMatrix@matrix@basegfx@@QAEAAV012@ABV012@@Z
??8B2DHomMatrix@matrix@basegfx@@QBEEABV012@@Z
??9B2DHomMatrix@matrix@basegfx@@QBEEABV012@@Z
??XB2DHomMatrix@matrix@basegfx@@QAEAAV012@ABV012@@Z
??XB2DHomMatrix@matrix@basegfx@@QAEAAV012@N@Z
??YB2DHomMatrix@matrix@basegfx@@QAEAAV012@ABV012@@Z
??ZB2DHomMatrix@matrix@basegfx@@QAEAAV012@ABV012@@Z
??_0B2DHomMatrix@matrix@basegfx@@QAEAAV012@N@Z
??_H@YGXPAXIHP6EPAX0@Z@Z
?decompose@B2DHomMatrix@matrix@basegfx@@QBEEAAVB2DTuple@tuple@3@0AAN1@Z
?determinant@B2DHomMatrix@matrix@basegfx@@QBENXZ
?get@B2DHomMatrix@matrix@basegfx@@QBENGG@Z
?identity@B2DHomMatrix@matrix@basegfx@@QAEXXZ
?implPrepareChange@B2DHomMatrix@matrix@basegfx@@AAEXXZ
?invert@B2DHomMatrix@matrix@basegfx@@QAEEXZ
?isIdentity@B2DHomMatrix@matrix@basegfx@@QBEEXZ
?isInvertible@B2DHomMatrix@matrix@basegfx@@QBEEXZ
?isNormalized@B2DHomMatrix@matrix@basegfx@@QBEEXZ
?normalize@B2DHomMatrix@matrix@basegfx@@QAEXXZ
?rotate@B2DHomMatrix@matrix@basegfx@@QAEXN@Z
?scale@B2DHomMatrix@matrix@basegfx@@QAEXNN@Z
?set@B2DHomMatrix@matrix@basegfx@@QAEXGGN@Z
?shearX@B2DHomMatrix@matrix@basegfx@@QAEXN@Z
?shearY@B2DHomMatrix@matrix@basegfx@@QAEXN@Z
?trace@B2DHomMatrix@matrix@basegfx@@QBENXZ
?translate@B2DHomMatrix@matrix@basegfx@@QAEXNN@Z
?transpose@B2DHomMatrix@matrix@basegfx@@QAEXXZ
_real@0000000000000000
_real@3ff0000000000000
??0B3DHomMatrix@matrix@basegfx@@QAE@ABV012@@Z
??0B3DHomMatrix@matrix@basegfx@@QAE@XZ
??1B3DHomMatrix@matrix@basegfx@@QAE@XZ
??4B3DHomMatrix@matrix@basegfx@@QAEAAV012@ABV012@@Z
??4B3DTuple@tuple@basegfx@@QAEAAV012@ABV012@@Z
??8B3DHomMatrix@matrix@basegfx@@QBEEABV012@@Z
??9B3DHomMatrix@matrix@basegfx@@QBEEABV012@@Z
??XB3DHomMatrix@matrix@basegfx@@QAEAAV012@ABV012@@Z
??XB3DHomMatrix@matrix@basegfx@@QAEAAV012@N@Z
??YB3DHomMatrix@matrix@basegfx@@QAEAAV012@ABV012@@Z
??ZB3DHomMatrix@matrix@basegfx@@QAEAAV012@ABV012@@Z
??_0B3DHomMatrix@matrix@basegfx@@QAEAAV012@N@Z
?correctValues@B3DTuple@tuple@basegfx@@QAEXN@Z
?decompose@B3DHomMatrix@matrix@basegfx@@QBEEAAVB3DTuple@tuple@3@000@Z
?determinant@B3DHomMatrix@matrix@basegfx@@QBENXZ
?frustum@B3DHomMatrix@matrix@basegfx@@QAEXNNNNNN@Z
?get@B3DHomMatrix@matrix@basegfx@@QBENGG@Z
?identity@B3DHomMatrix@matrix@basegfx@@QAEXXZ
?implPrepareChange@B3DHomMatrix@matrix@basegfx@@AAEXXZ
?invert@B3DHomMatrix@matrix@basegfx@@QAEEXZ
?isIdentity@B3DHomMatrix@matrix@basegfx@@QBEEXZ
?isInvertible@B3DHomMatrix@matrix@basegfx@@QBEEXZ
?isNormalized@B3DHomMatrix@matrix@basegfx@@QBEEXZ
?normalize@B3DHomMatrix@matrix@basegfx@@QAEXXZ
?ortho@B3DHomMatrix@matrix@basegfx@@QAEXNNNNNN@Z
?rotate@B3DHomMatrix@matrix@basegfx@@QAEXNNN@Z
?scalar@B3DVector@vector@basegfx@@QBENABV123@@Z
?scale@B3DHomMatrix@matrix@basegfx@@QAEXNNN@Z
?set@B3DHomMatrix@matrix@basegfx@@QAEXGGN@Z
?shearXY@B3DHomMatrix@matrix@basegfx@@QAEXNN@Z
?shearXZ@B3DHomMatrix@matrix@basegfx@@QAEXNN@Z
?shearYZ@B3DHomMatrix@matrix@basegfx@@QAEXNN@Z
?trace@B3DHomMatrix@matrix@basegfx@@QBENXZ
?translate@B3DHomMatrix@matrix@basegfx@@QAEXNNN@Z
?transpose@B3DHomMatrix@matrix@basegfx@@QAEXXZ
_real@4000000000000000
_real@bff0000000000000
?mfSmallValue@fTools@numeric@basegfx@@0NA
??4B2DPoint@point@basegfx@@QAEAAV012@ABVB2DTuple@tuple@2@@Z
??XB2DPoint@point@basegfx@@QAEAAV012@ABVB2DHomMatrix@matrix@2@@Z
??4B2DHomPoint@point@basegfx@@QAEAAV012@ABV012@@Z
??8B2DHomPoint@point@basegfx@@QBEEABV012@@Z
??9B2DHomPoint@point@basegfx@@QBEEABV012@@Z
??Dpoint@basegfx@@YA?AVB2DHomPoint@01@ABV201@N@Z
??Dpoint@basegfx@@YA?AVB2DHomPoint@01@ABVB2DHomMatrix@matrix@1@ABV201@@Z
??Dpoint@basegfx@@YA?AVB2DHomPoint@01@NABV201@@Z
??GB2DHomPoint@point@basegfx@@QAEAAV012@XZ
??Gpoint@basegfx@@YA?AVB2DHomPoint@01@ABV201@0@Z
??Hpoint@basegfx@@YA?AVB2DHomPoint@01@ABV201@0@Z
??Kpoint@basegfx@@YA?AVB2DHomPoint@01@ABV201@N@Z
??Kpoint@basegfx@@YA?AVB2DHomPoint@01@NABV201@@Z
??XB2DHomPoint@point@basegfx@@QAEAAV012@ABVB2DHomMatrix@matrix@2@@Z
??XB2DHomPoint@point@basegfx@@QAEAAV012@N@Z
??YB2DHomPoint@point@basegfx@@QAEAAV012@ABV012@@Z
??ZB2DHomPoint@point@basegfx@@QAEAAV012@ABV012@@Z
??_0B2DHomPoint@point@basegfx@@QAEAAV012@N@Z
?abs@point@basegfx@@YA?AVB2DHomPoint@12@ABV312@@Z
?average@point@basegfx@@YA?AVB2DHomPoint@12@AAV312@00@Z
?average@point@basegfx@@YA?AVB2DHomPoint@12@AAV312@0@Z
?getB2DPoint@B2DHomPoint@point@basegfx@@QBE?AVB2DPoint@23@XZ
?getX@B2DHomPoint@point@basegfx@@QBENXZ
?getY@B2DHomPoint@point@basegfx@@QBENXZ
?implHomogenize@B2DHomPoint@point@basegfx@@IAEXXZ
?implIsHomogenized@B2DHomPoint@point@basegfx@@IBEEXZ
?implTestAndHomogenize@B2DHomPoint@point@basegfx@@IBEXXZ
?interpolate@point@basegfx@@YA?AVB2DHomPoint@12@AAV312@0N@Z
?max@point@basegfx@@YA?AVB2DHomPoint@12@ABV312@0@Z
?min@point@basegfx@@YA?AVB2DHomPoint@12@ABV312@0@Z
?setX@B2DHomPoint@point@basegfx@@QAEXN@Z
?setY@B2DHomPoint@point@basegfx@@QAEXN@Z
?implHomogenize@B3DHomPoint@point@basegfx@@IAEXXZ
??0?$_Vector_base@VControlVectorPair2D@@V?$allocator@VControlVectorPair2D@@@_STL@@@_STL@@QAE@IABV?$allocator@VControlVectorPair2D@@@1@@Z
??0?$_Vector_base@VCoordinateData2D@@V?$allocator@VCoordinateData2D@@@_STL@@@_STL@@QAE@IABV?$allocator@VCoordinateData2D@@@1@@Z
??0?$vector@VControlVectorPair2D@@V?$allocator@VControlVectorPair2D@@@_STL@@@_STL@@QAE@ABV01@@Z
??0?$vector@VControlVectorPair2D@@V?$allocator@VControlVectorPair2D@@@_STL@@@_STL@@QAE@I@Z
??0?$vector@VCoordinateData2D@@V?$allocator@VCoordinateData2D@@@_STL@@@_STL@@QAE@ABV01@@Z
??0?$vector@VCoordinateData2D@@V?$allocator@VCoordinateData2D@@@_STL@@@_STL@@QAE@I@Z
??0B2DPoint@point@basegfx@@QAE@ABV012@@Z
??0B2DPolygon@polygon@basegfx@@QAE@ABV012@@Z
??0B2DPolygon@polygon@basegfx@@QAE@ABV012@KK@Z
??0B2DPolygon@polygon@basegfx@@QAE@XZ
??0B2DVector@vector@basegfx@@QAE@ABV012@@Z
??0ControlVectorArray2D@@QAE@ABV0@KK@Z
??0ControlVectorPair2D@@QAE@ABV0@@Z
??0CoordinateData2D@@QAE@ABV0@@Z
??0CoordinateDataArray2D@@QAE@ABV0@KK@Z
??1?$vector@VControlVectorPair2D@@V?$allocator@VControlVectorPair2D@@@_STL@@@_STL@@QAE@XZ
??1?$vector@VCoordinateData2D@@V?$allocator@VCoordinateData2D@@@_STL@@@_STL@@QAE@XZ
??1B2DPolygon@polygon@basegfx@@QAE@XZ
??4B2DPolygon@polygon@basegfx@@QAEAAV012@ABV012@@Z
??4ControlVectorPair2D@@QAEAAV0@ABV0@@Z
??8B2DPolygon@polygon@basegfx@@QBEEABV012@@Z
??8ControlVectorPair2D@@QBEEABV0@@Z
??8_STL@@YA_NABV?$vector@VControlVectorPair2D@@V?$allocator@VControlVectorPair2D@@@_STL@@@0@0@Z
??8_STL@@YA_NABV?$vector@VCoordinateData2D@@V?$allocator@VCoordinateData2D@@@_STL@@@0@0@Z
??9B2DPolygon@polygon@basegfx@@QBEEABV012@@Z
??Gtuple@basegfx@@YA?AVB2DTuple@01@ABV201@0@Z
??Htuple@basegfx@@YA?AVB2DTuple@01@ABV201@0@Z
??_GControlVectorArray2D@@QAEPAXI@Z
??_GCoordinateDataArray2D@@QAEPAXI@Z
?DbgIsAssert@@YAKXZ
?_Construct@_STL@@YAXPAVControlVectorPair2D@@ABV2@@Z
?_Destroy@_STL@@YAXPAVControlVectorPair2D@@0@Z
?_M_allocate_and_copy@?$vector@VControlVectorPair2D@@V?$allocator@VControlVectorPair2D@@@_STL@@@_STL@@IAEPAVControlVectorPair2D@@IPAV3@0@Z
?_M_clear@?$vector@VControlVectorPair2D@@V?$allocator@VControlVectorPair2D@@@_STL@@@_STL@@IAEXXZ
?_M_clear@?$vector@VCoordinateData2D@@V?$allocator@VCoordinateData2D@@@_STL@@@_STL@@IAEXXZ
?_M_fill_insert@?$vector@VControlVectorPair2D@@V?$allocator@VControlVectorPair2D@@@_STL@@@_STL@@QAEXPAVControlVectorPair2D@@IABV3@@Z
?_M_fill_insert@?$vector@VCoordinateData2D@@V?$allocator@VCoordinateData2D@@@_STL@@@_STL@@QAEXPAVCoordinateData2D@@IABV3@@Z
?_M_insert_overflow@?$vector@VControlVectorPair2D@@V?$allocator@VControlVectorPair2D@@@_STL@@@_STL@@IAEXPAVControlVectorPair2D@@ABV3@ABU__false_type@2@I_N@Z
?_M_insert_overflow@?$vector@VCoordinateData2D@@V?$allocator@VCoordinateData2D@@@_STL@@@_STL@@IAEXPAVCoordinateData2D@@ABV3@ABU__false_type@2@I_N@Z
?_M_range_initialize@?$vector@VCoordinateData2D@@V?$allocator@VCoordinateData2D@@@_STL@@@_STL@@IAEXPBVCoordinateData2D@@0ABUforward_iterator_tag@2@@Z
?_M_range_insert@?$vector@VControlVectorPair2D@@V?$allocator@VControlVectorPair2D@@@_STL@@@_STL@@QAEXPAVControlVectorPair2D@@PBV3@1ABUforward_iterator_tag@2@@Z
?_M_range_insert@?$vector@VCoordinateData2D@@V?$allocator@VCoordinateData2D@@@_STL@@@_STL@@QAEXPAVCoordinateData2D@@PBV3@1ABUforward_iterator_tag@2@@Z
?__copy_ptrs@_STL@@YAPAVControlVectorPair2D@@PAV2@00ABU__false_type@1@@Z
?__copy_ptrs@_STL@@YAPAVControlVectorPair2D@@PBV2@0PAV2@ABU__false_type@1@@Z
?__copy_ptrs@_STL@@YAPAVCoordinateData2D@@PBV2@0PAV2@ABU__false_type@1@@Z
?append@B2DPolygon@polygon@basegfx@@QAEXABV123@KK@Z
?append@B2DPolygon@polygon@basegfx@@QAEXABVB2DPoint@point@3@K@Z
?areControlPointsUsed@B2DPolygon@polygon@basegfx@@QBEEXZ
?clear@B2DPolygon@polygon@basegfx@@QAEXXZ
?count@B2DPolygon@polygon@basegfx@@QBEKXZ
?erase@?$vector@VCoordinateData2D@@V?$allocator@VCoordinateData2D@@@_STL@@@_STL@@QAEPAVCoordinateData2D@@PAV3@0@Z
?erase@?$vector@VCoordinateData2D@@V?$allocator@VCoordinateData2D@@@_STL@@@_STL@@QAEPAVCoordinateData2D@@PAV3@@Z
?flip@B2DPolygon@polygon@basegfx@@QAEXXZ
?flip@CoordinateDataArray2D@@QAEXXZ
?getB2DPoint@B2DPolygon@polygon@basegfx@@QBE?AVB2DPoint@point@3@K@Z
?getControlVectorA@B2DPolygon@polygon@basegfx@@QBE?AVB2DVector@vector@3@K@Z
?getControlVectorB@B2DPolygon@polygon@basegfx@@QBE?AVB2DVector@vector@3@K@Z
?hasDoublePoints@B2DPolygon@polygon@basegfx@@QBEEXZ
?implForceUniqueCopy@B2DPolygon@polygon@basegfx@@AAEXXZ
?insert@B2DPolygon@polygon@basegfx@@QAEXKABV123@KK@Z
?insert@B2DPolygon@polygon@basegfx@@QAEXKABVB2DPoint@point@3@K@Z
?insert@ControlVectorArray2D@@QAEXKABV1@@Z
?insert@ControlVectorArray2D@@QAEXKABVControlVectorPair2D@@K@Z
?insert@CoordinateDataArray2D@@QAEXKABV1@@Z
?isClosed@B2DPolygon@polygon@basegfx@@QBEEXZ
?push_back@?$vector@VControlVectorPair2D@@V?$allocator@VControlVectorPair2D@@@_STL@@@_STL@@QAEXABVControlVectorPair2D@@@Z
?remove@B2DPolygon@polygon@basegfx@@QAEXKK@Z
?remove@ControlVectorArray2D@@QAEXKK@Z
?removeDoublePoints@B2DPolygon@polygon@basegfx@@QAEXXZ
?removeDoublePointsAtBeginEnd@CoordinateDataArray2D@@QAEXXZ
?removeDoublePointsWholeTrack@CoordinateDataArray2D@@QAEXXZ
?reserve@?$vector@VControlVectorPair2D@@V?$allocator@VControlVectorPair2D@@@_STL@@@_STL@@QAEXI@Z
?setB2DPoint@B2DPolygon@polygon@basegfx@@QAEXKABVB2DPoint@point@3@@Z
?setClosed@B2DPolygon@polygon@basegfx@@QAEXE@Z
?setControlVectorA@B2DPolygon@polygon@basegfx@@QAEXKABVB2DVector@vector@3@@Z
?setControlVectorB@B2DPolygon@polygon@basegfx@@QAEXKABVB2DVector@vector@3@@Z
?setVectorA@ControlVectorArray2D@@QAEXKABVB2DVector@vector@basegfx@@@Z
?setVectorB@ControlVectorArray2D@@QAEXKABVB2DVector@vector@basegfx@@@Z
?swap@_STL@@YAXAAVCoordinateData2D@@0@Z
??0B2DRange@range@basegfx@@QAE@ABV012@@Z
?adaptiveSubdivide@tools@polygon@basegfx@@YA?AVB2DPolygon@23@ABV423@N@Z
?average@tuple@basegfx@@YA?AVB2DTuple@12@ABV312@00@Z
?checkClosed@tools@polygon@basegfx@@YAXAAVB2DPolygon@23@@Z
?expand@B2DRange@range@basegfx@@QAEXABVB2DTuple@tuple@3@@Z
?findCut@tools@polygon@basegfx@@YAGABVB2DPoint@point@3@ABVB2DVector@vector@3@01GPAN2@Z
?findCut@tools@polygon@basegfx@@YAGABVB2DPolygon@23@K0KGPAN1@Z
?findCut@tools@polygon@basegfx@@YAGABVB2DPolygon@23@KKGPAN1@Z
?getArea@tools@polygon@basegfx@@YANABVB2DPolygon@23@@Z
?getContinuityInPoint@tools@polygon@basegfx@@YA?AW4B2DVectorContinuity@vector@3@ABVB2DPolygon@23@K@Z
?getEdgeLength@tools@polygon@basegfx@@YANABVB2DPolygon@23@K@Z
?getIndexOfDifferentPredecessor@tools@polygon@basegfx@@YAKKABVB2DPolygon@23@@Z
?getIndexOfDifferentSuccessor@tools@polygon@basegfx@@YAKKABVB2DPolygon@23@@Z
?getIndexOfOutmostPoint@tools@polygon@basegfx@@YAKABVB2DPolygon@23@@Z
?getIndexOfPredecessor@tools@polygon@basegfx@@YAKKABVB2DPolygon@23@@Z
?getIndexOfSuccessor@tools@polygon@basegfx@@YAKKABVB2DPolygon@23@@Z
?getLength@tools@polygon@basegfx@@YANABVB2DPolygon@23@@Z
?getOrientation@tools@polygon@basegfx@@YA?AW4B2DVectorOrientation@vector@3@ABVB2DPolygon@23@@Z
?getPointOrientation@tools@polygon@basegfx@@YA?AW4B2DVectorOrientation@vector@3@ABVB2DPolygon@23@K@Z
?getPositionAbsolute@tools@polygon@basegfx@@YA?AVB2DPoint@point@3@ABVB2DPolygon@23@NN@Z
?getPositionRelative@tools@polygon@basegfx@@YA?AVB2DPoint@point@3@ABVB2DPolygon@23@NN@Z
?getRange@tools@polygon@basegfx@@YA?AVB2DRange@range@3@ABVB2DPolygon@23@@Z
?isInside@tools@polygon@basegfx@@YAEABVB2DPolygon@23@0E@Z
?isInside@tools@polygon@basegfx@@YAEABVB2DPolygon@23@ABVB2DPoint@point@3@E@Z
?isPointOnEdge@tools@polygon@basegfx@@YAEABVB2DPoint@point@3@0ABVB2DVector@vector@3@PAN@Z
_real@3f847ae147ae147b
??0B2DPolyPolygon@polygon@basegfx@@QAE@ABV012@@Z
??0B2DPolyPolygon@polygon@basegfx@@QAE@XZ
??1?$vector@VB2DPolygon@polygon@basegfx@@V?$allocator@VB2DPolygon@polygon@basegfx@@@_STL@@@_STL@@QAE@XZ
??1B2DPolyPolygon@polygon@basegfx@@QAE@XZ
??4?$vector@VB2DPolygon@polygon@basegfx@@V?$allocator@VB2DPolygon@polygon@basegfx@@@_STL@@@_STL@@QAEAAV01@ABV01@@Z
??4B2DPolyPolygon@polygon@basegfx@@QAEAAV012@ABV012@@Z
??8B2DPolyPolygon@polygon@basegfx@@QBEEABV012@@Z
??8_STL@@YA_NABV?$vector@VB2DPolygon@polygon@basegfx@@V?$allocator@VB2DPolygon@polygon@basegfx@@@_STL@@@0@0@Z
??9B2DPolyPolygon@polygon@basegfx@@QBEEABV012@@Z
?_M_allocate_and_copy@?$vector@VB2DPolygon@polygon@basegfx@@V?$allocator@VB2DPolygon@polygon@basegfx@@@_STL@@@_STL@@IAEPAVB2DPolygon@polygon@basegfx@@IPAV345@0@Z
?_M_allocate_and_copy@?$vector@VB2DPolygon@polygon@basegfx@@V?$allocator@VB2DPolygon@polygon@basegfx@@@_STL@@@_STL@@IAEPAVB2DPolygon@polygon@basegfx@@IPBV345@0@Z
?_M_clear@?$vector@VB2DPolygon@polygon@basegfx@@V?$allocator@VB2DPolygon@polygon@basegfx@@@_STL@@@_STL@@IAEXXZ
?_M_fill_insert@?$vector@VB2DPolygon@polygon@basegfx@@V?$allocator@VB2DPolygon@polygon@basegfx@@@_STL@@@_STL@@QAEXPAVB2DPolygon@polygon@basegfx@@IABV345@@Z
?_M_insert_overflow@?$vector@VB2DPolygon@polygon@basegfx@@V?$allocator@VB2DPolygon@polygon@basegfx@@@_STL@@@_STL@@IAEXPAVB2DPolygon@polygon@basegfx@@ABV345@ABU__false_type@2@I_N@Z
?append@B2DPolyPolygon@polygon@basegfx@@QAEXABV123@@Z
?append@B2DPolyPolygon@polygon@basegfx@@QAEXABVB2DPolygon@23@K@Z
?areControlPointsUsed@B2DPolyPolygon@polygon@basegfx@@QBEEXZ
?clear@B2DPolyPolygon@polygon@basegfx@@QAEXXZ
?count@B2DPolyPolygon@polygon@basegfx@@QBEKXZ
?erase@?$vector@VB2DPolygon@polygon@basegfx@@V?$allocator@VB2DPolygon@polygon@basegfx@@@_STL@@@_STL@@QAEPAVB2DPolygon@polygon@basegfx@@PAV345@0@Z
?flip@B2DPolyPolygon@polygon@basegfx@@QAEXXZ
?getPolygon@B2DPolyPolygon@polygon@basegfx@@QBE?AVB2DPolygon@23@K@Z
?hasDoublePoints@B2DPolyPolygon@polygon@basegfx@@QBEEXZ
?implForceUniqueCopy@B2DPolyPolygon@polygon@basegfx@@AAEXXZ
?insert@?$vector@VB2DPolygon@polygon@basegfx@@V?$allocator@VB2DPolygon@polygon@basegfx@@@_STL@@@_STL@@QAEPAVB2DPolygon@polygon@basegfx@@PAV345@ABV345@@Z
?insert@B2DPolyPolygon@polygon@basegfx@@QAEXKABV123@@Z
?insert@B2DPolyPolygon@polygon@basegfx@@QAEXKABVB2DPolygon@23@K@Z
?isClosed@B2DPolyPolygon@polygon@basegfx@@QBEEXZ
?remove@B2DPolyPolygon@polygon@basegfx@@QAEXKK@Z
?removeDoublePoints@B2DPolyPolygon@polygon@basegfx@@QAEXXZ
?reserve@?$vector@VB2DPolygon@polygon@basegfx@@V?$allocator@VB2DPolygon@polygon@basegfx@@@_STL@@@_STL@@QAEXI@Z
?setClosed@B2DPolyPolygon@polygon@basegfx@@QAEXE@Z
?setPolygon@B2DPolyPolygon@polygon@basegfx@@QAEXKABVB2DPolygon@23@@Z
?adaptiveSubdivide@tools@polygon@basegfx@@YA?AVB2DPolyPolygon@23@ABV423@N@Z
?correctOrientations@tools@polygon@basegfx@@YAXAAVB2DPolyPolygon@23@@Z
?removeIntersections@tools@polygon@basegfx@@YAXAAVB2DPolyPolygon@23@EE@Z
??0?$_Vector_base@PAVB2DSimpleCut@polygon@basegfx@@V?$allocator@PAVB2DSimpleCut@polygon@basegfx@@@_STL@@@_STL@@QAE@ABV?$allocator@PAVB2DSimpleCut@polygon@basegfx@@@1@@Z
??0B2DPolygonNode@polygon@basegfx@@QAE@ABVB2DPoint@point@2@PAV012@@Z
??1?$_Vector_base@PAVB2DSimpleCut@polygon@basegfx@@V?$allocator@PAVB2DSimpleCut@polygon@basegfx@@@_STL@@@_STL@@QAE@XZ
??1B2DPolyPolygonCutter@polygon@basegfx@@QAE@XZ
??1B2DPolygonNode@polygon@basegfx@@QAE@XZ
??4B2DRange@range@basegfx@@QAEXABV012@@Z
?_M_insert_overflow@?$vector@PAVB2DPolygonNode@polygon@basegfx@@V?$allocator@PAVB2DPolygonNode@polygon@basegfx@@@_STL@@@_STL@@IAEXPAPAVB2DPolygonNode@polygon@basegfx@@ABQAV345@ABU__true_type@2@I_N@Z
?_M_insert_overflow@?$vector@PAVB2DSimpleCut@polygon@basegfx@@V?$allocator@PAVB2DSimpleCut@polygon@basegfx@@@_STL@@@_STL@@IAEXPAPAVB2DSimpleCut@polygon@basegfx@@ABQAV345@ABU__true_type@2@I_N@Z
?_M_range_insert@?$vector@PAVB2DSimpleCut@polygon@basegfx@@V?$allocator@PAVB2DSimpleCut@polygon@basegfx@@@_STL@@@_STL@@QAEXPAPAVB2DSimpleCut@polygon@basegfx@@00ABUforward_iterator_tag@2@@Z
?__copy_trivial@_STL@@YAPAXPBX0PAX@Z
?__find@_STL@@YAPAPAVB2DSimpleCut@polygon@basegfx@@PAPAV234@0ABQAV234@ABUrandom_access_iterator_tag@1@@Z
?addAllNodes@B2DPolyPolygonCutter@polygon@basegfx@@AAEXPAVB2DPolygonNode@23@AAPAV423@@Z
?addPolyPolygon@B2DPolyPolygonCutter@polygon@basegfx@@QAEXABVB2DPolyPolygon@23@E@Z
?addToList@B2DPolygonNode@polygon@basegfx@@QAEXAAPAV123@@Z
?calcMinMaxX@B2DPolygonNode@polygon@basegfx@@QBEXAAN0@Z
?calcMinMaxY@B2DPolygonNode@polygon@basegfx@@QBEXAAN0@Z
?changeDepth@B2DClipExtraPolygonInfo@polygon@basegfx@@QAEXE@Z
?clear@?$vector@PAVB2DPolygonNode@polygon@basegfx@@V?$allocator@PAVB2DPolygonNode@polygon@basegfx@@@_STL@@@_STL@@QAEXXZ
?clear@?$vector@PAVB2DSimpleCut@polygon@basegfx@@V?$allocator@PAVB2DSimpleCut@polygon@basegfx@@@_STL@@@_STL@@QAEXXZ
?createNewPolygon@B2DPolyPolygonCutter@polygon@basegfx@@AAEPAVB2DPolygonNode@23@ABVB2DPolygon@23@@Z
?deletePolygon@B2DPolyPolygonCutter@polygon@basegfx@@AAEXPAVB2DPolygonNode@23@@Z
?erase@?$vector@PAVB2DPolygonNode@polygon@basegfx@@V?$allocator@PAVB2DPolygonNode@polygon@basegfx@@@_STL@@@_STL@@QAEPAPAVB2DPolygonNode@polygon@basegfx@@PAPAV345@@Z
?erase@?$vector@PAVB2DSimpleCut@polygon@basegfx@@V?$allocator@PAVB2DSimpleCut@polygon@basegfx@@@_STL@@@_STL@@QAEPAPAVB2DSimpleCut@polygon@basegfx@@PAPAV345@@Z
?extractNextPolygon@B2DPolyPolygonCutter@polygon@basegfx@@AAEPAVB2DPolygonNode@23@AAPAV423@@Z
?find@_STL@@YAPAPAVB2DSimpleCut@polygon@basegfx@@PAPAV234@0ABQAV234@@Z
?getExistingCut@B2DPolyPolygonCutter@polygon@basegfx@@AAEPAVB2DSimpleCut@23@AAV?$vector@PAVB2DSimpleCut@polygon@basegfx@@V?$allocator@PAVB2DSimpleCut@polygon@basegfx@@@_STL@@@_STL@@PAVB2DPolygonNode@23@1@Z
?getOrientation@B2DPolygonNode@polygon@basegfx@@QBEEXZ
?getPolyPolygon@B2DPolyPolygonCutter@polygon@basegfx@@QAEXAAVB2DPolyPolygon@23@@Z
?getRange@B2DPolygonNode@polygon@basegfx@@QBE?AVB2DRange@range@3@XZ
?init@B2DClipExtraPolygonInfo@polygon@basegfx@@QAEXPAVB2DPolygonNode@23@@Z
?interpolate@tuple@basegfx@@YA?AVB2DTuple@12@ABV312@0N@Z
?isCrossover@B2DPolyPolygonCutter@polygon@basegfx@@AAEEPAVB2DPolygonNode@23@0@Z
?isCrossover@B2DPolyPolygonCutter@polygon@basegfx@@AAEEPAVB2DSimpleCut@23@0@Z
?isInside@B2DPolygonNode@polygon@basegfx@@QBEEABVB2DPoint@point@3@E@Z
?isInside@B2DRange@range@basegfx@@QBEEABV123@@Z
?isPolygonInside@B2DPolygonNode@polygon@basegfx@@QBEEPAV123@E@Z
?listToPolys@B2DPolyPolygonCutter@polygon@basegfx@@AAEXAAPAVB2DPolygonNode@23@@Z
?overlaps@B2DRange@range@basegfx@@QBEEABV123@@Z
?polysToList@B2DPolyPolygonCutter@polygon@basegfx@@AAEXAAPAVB2DPolygonNode@23@@Z
?push_back@?$vector@PAVB2DPolygonNode@polygon@basegfx@@V?$allocator@PAVB2DPolygonNode@polygon@basegfx@@@_STL@@@_STL@@QAEXABQAVB2DPolygonNode@polygon@basegfx@@@Z
?push_back@?$vector@PAVB2DSimpleCut@polygon@basegfx@@V?$allocator@PAVB2DSimpleCut@polygon@basegfx@@@_STL@@@_STL@@QAEXABQAVB2DSimpleCut@polygon@basegfx@@@Z
?remFromList@B2DPolygonNode@polygon@basegfx@@QAEXAAPAV123@@Z
?removeDoubleIntersections@B2DPolyPolygonCutter@polygon@basegfx@@QAEXXZ
?removeIncludedPolygons@B2DPolyPolygonCutter@polygon@basegfx@@QAEXE@Z
?removeSelfIntersections@B2DPolyPolygonCutter@polygon@basegfx@@QAEXXZ
?solve@B2DSimpleCut@polygon@basegfx@@QAEXXZ
?solveAllCuts@B2DPolyPolygonCutter@polygon@basegfx@@AAEXAAV?$vector@PAVB2DSimpleCut@polygon@basegfx@@V?$allocator@PAVB2DSimpleCut@polygon@basegfx@@@_STL@@@_STL@@@Z
?swapNextPointers@B2DPolygonNode@polygon@basegfx@@QAEXPAV123@@Z
?swapOrientation@B2DPolygonNode@polygon@basegfx@@QAEXXZ
_real@401921fb54442d18
?correctValues@B2DTuple@tuple@basegfx@@QAEXN@Z
?equal@B2DTuple@tuple@basegfx@@QBEEABV123@@Z
?equal@B2DTuple@tuple@basegfx@@QBEEABV123@ABN@Z
?equalZero@B2DTuple@tuple@basegfx@@QBEEABN@Z
?equalZero@B2DTuple@tuple@basegfx@@QBEEXZ
?maEmptyTuple@B2DTuple@tuple@basegfx@@0V123@A
?maEmptyTuple@B3DTuple@tuple@basegfx@@0V123@A
??4B2DVector@vector@basegfx@@QAEAAV012@ABVB2DTuple@tuple@2@@Z
??Dvector@basegfx@@YA?AVB2DVector@01@ABVB2DHomMatrix@matrix@1@ABV201@@Z
??XB2DVector@vector@basegfx@@QAEAAV012@ABVB2DHomMatrix@matrix@2@@Z
?angle@B2DVector@vector@basegfx@@QBENABV123@@Z
?areParallel@vector@basegfx@@YAEABVB2DVector@12@0@Z
?cross@B2DVector@vector@basegfx@@QBENABV123@@Z
?getContinuity@vector@basegfx@@YA?AW4B2DVectorContinuity@12@ABVB2DVector@12@0@Z
?getEmptyVector@B2DVector@vector@basegfx@@SAABV123@XZ
?getLength@B2DVector@vector@basegfx@@QBENXZ
?getOrientation@vector@basegfx@@YA?AW4B2DVectorOrientation@12@ABVB2DVector@12@0@Z
?getPerpendicular@vector@basegfx@@YA?AVB2DVector@12@ABV312@@Z
?isNormalized@B2DVector@vector@basegfx@@QBEEXZ
?normalize@B2DVector@vector@basegfx@@QAEAAV123@XZ
?scalar@B2DVector@vector@basegfx@@QBENABV123@@Z
?setLength@B2DVector@vector@basegfx@@QAEAAV123@N@Z
?cross@vector@basegfx@@YA?AVB3DVector@12@ABV312@0@Z
?getPerpendicular@B3DVector@vector@basegfx@@QBE?AV123@ABV123@@Z
?getProjectionOnPlane@B3DVector@vector@basegfx@@QBE?AV123@ABV123@@Z
?normalize@B3DVector@vector@basegfx@@QAEAAV123@XZ
??0B2DCubicBezier@basegfx@@QAE@ABV01@@Z
??0B2DCubicBezier@basegfx@@QAE@ABVB2DPoint@1@000@Z
??0B2DCubicBezier@basegfx@@QAE@ABVB2DPoint@1@0@Z
??0B2DCubicBezier@basegfx@@QAE@XZ
??1B2DCubicBezier@basegfx@@QAE@XZ
??4B2DCubicBezier@basegfx@@QAEAAV01@ABV01@@Z
??8B2DCubicBezier@basegfx@@QBEEABV01@@Z
??9B2DCubicBezier@basegfx@@QBEEABV01@@Z
?isBezier@B2DCubicBezier@basegfx@@QBEEXZ
?testAndSolveTrivialBezier@B2DCubicBezier@basegfx@@QAEXXZ
??0B2DQuadraticBezier@basegfx@@QAE@ABV01@@Z
??0B2DQuadraticBezier@basegfx@@QAE@ABVB2DPoint@1@00@Z
??0B2DQuadraticBezier@basegfx@@QAE@ABVB2DPoint@1@0@Z
??0B2DQuadraticBezier@basegfx@@QAE@XZ
??1B2DQuadraticBezier@basegfx@@QAE@XZ
??4B2DQuadraticBezier@basegfx@@QAEAAV01@ABV01@@Z
??8B2DQuadraticBezier@basegfx@@QBEEABV01@@Z
??9B2DQuadraticBezier@basegfx@@QBEEABV01@@Z
?isBezier@B2DQuadraticBezier@basegfx@@QBEEXZ
?adaptiveSubdivideByAngle@basegfx@@YAJAAVB2DPolygon@1@ABVB2DCubicBezier@1@N@Z
?adaptiveSubdivideByDistance@basegfx@@YAJAAVB2DPolygon@1@ABVB2DCubicBezier@1@N@Z
?adaptiveSubdivideByDistance@basegfx@@YAJAAVB2DPolygon@1@ABVB2DQuadraticBezier@1@N@Z
?needsFurtherSubdivision@AngleErrorFunctor@?A0xc8fec892@@QAE_NNNNNNNNNNN@Z
?needsFurtherSubdivision@DistanceErrorFunctor@?A0xc8fec892@@QAE_NABN000000000@Z
_real@400921fb54442d18
_real@4066800000000000
??0B2DHomMatrix@basegfx@@QAE@ABV01@@Z
??0B2DHomMatrix@basegfx@@QAE@XZ
??1B2DHomMatrix@basegfx@@QAE@XZ
??4B2DHomMatrix@basegfx@@QAEAAV01@ABV01@@Z
??8B2DHomMatrix@basegfx@@QBEEABV01@@Z
??9B2DHomMatrix@basegfx@@QBEEABV01@@Z
??XB2DHomMatrix@basegfx@@QAEAAV01@ABV01@@Z
??XB2DHomMatrix@basegfx@@QAEAAV01@N@Z
??YB2DHomMatrix@basegfx@@QAEAAV01@ABV01@@Z
??ZB2DHomMatrix@basegfx@@QAEAAV01@ABV01@@Z
??_0B2DHomMatrix@basegfx@@QAEAAV01@N@Z
?decompose@B2DHomMatrix@basegfx@@QBEEAAVB2DTuple@2@0AAN1@Z
?determinant@B2DHomMatrix@basegfx@@QBENXZ
?get@B2DHomMatrix@basegfx@@QBENGG@Z
?identity@B2DHomMatrix@basegfx@@QAEXXZ
?implPrepareChange@B2DHomMatrix@basegfx@@AAEXXZ
?invert@B2DHomMatrix@basegfx@@QAEEXZ
?isIdentity@B2DHomMatrix@basegfx@@QBEEXZ
?isInvertible@B2DHomMatrix@basegfx@@QBEEXZ
?isNormalized@B2DHomMatrix@basegfx@@QBEEXZ
?normalize@B2DHomMatrix@basegfx@@QAEXXZ
?rotate@B2DHomMatrix@basegfx@@QAEXN@Z
?scale@B2DHomMatrix@basegfx@@QAEXNN@Z
?set@B2DHomMatrix@basegfx@@QAEXGGN@Z
?shearX@B2DHomMatrix@basegfx@@QAEXN@Z
?shearY@B2DHomMatrix@basegfx@@QAEXN@Z
?trace@B2DHomMatrix@basegfx@@QBENXZ
?translate@B2DHomMatrix@basegfx@@QAEXNN@Z
?transpose@B2DHomMatrix@basegfx@@QAEXXZ
??0B3DHomMatrix@basegfx@@QAE@ABV01@@Z
??0B3DHomMatrix@basegfx@@QAE@XZ
??1B3DHomMatrix@basegfx@@QAE@XZ
??4B3DHomMatrix@basegfx@@QAEAAV01@ABV01@@Z
??4B3DTuple@basegfx@@QAEAAV01@ABV01@@Z
??8B3DHomMatrix@basegfx@@QBEEABV01@@Z
??9B3DHomMatrix@basegfx@@QBEEABV01@@Z
??XB3DHomMatrix@basegfx@@QAEAAV01@ABV01@@Z
??XB3DHomMatrix@basegfx@@QAEAAV01@N@Z
??YB3DHomMatrix@basegfx@@QAEAAV01@ABV01@@Z
??ZB3DHomMatrix@basegfx@@QAEAAV01@ABV01@@Z
??_0B3DHomMatrix@basegfx@@QAEAAV01@N@Z
?correctValues@B3DTuple@basegfx@@QAEXN@Z
?decompose@B3DHomMatrix@basegfx@@QBEEAAVB3DTuple@2@000@Z
?determinant@B3DHomMatrix@basegfx@@QBENXZ
?frustum@B3DHomMatrix@basegfx@@QAEXNNNNNN@Z
?get@B3DHomMatrix@basegfx@@QBENGG@Z
?identity@B3DHomMatrix@basegfx@@QAEXXZ
?implPrepareChange@B3DHomMatrix@basegfx@@AAEXXZ
?invert@B3DHomMatrix@basegfx@@QAEEXZ
?isIdentity@B3DHomMatrix@basegfx@@QBEEXZ
?isInvertible@B3DHomMatrix@basegfx@@QBEEXZ
?isNormalized@B3DHomMatrix@basegfx@@QBEEXZ
?normalize@B3DHomMatrix@basegfx@@QAEXXZ
?ortho@B3DHomMatrix@basegfx@@QAEXNNNNNN@Z
?rotate@B3DHomMatrix@basegfx@@QAEXNNN@Z
?scalar@B3DVector@basegfx@@QBENABV12@@Z
?scale@B3DHomMatrix@basegfx@@QAEXNNN@Z
?set@B3DHomMatrix@basegfx@@QAEXGGN@Z
?shearXY@B3DHomMatrix@basegfx@@QAEXNN@Z
?shearXZ@B3DHomMatrix@basegfx@@QAEXNN@Z
?shearYZ@B3DHomMatrix@basegfx@@QAEXNN@Z
?trace@B3DHomMatrix@basegfx@@QBENXZ
?translate@B3DHomMatrix@basegfx@@QAEXNNN@Z
?transpose@B3DHomMatrix@basegfx@@QAEXXZ
?mfSmallValue@fTools@basegfx@@0NA
??4B2DPoint@basegfx@@QAEAAV01@ABVB2DTuple@1@@Z
??XB2DPoint@basegfx@@QAEAAV01@ABVB2DHomMatrix@1@@Z
??4B2DHomPoint@basegfx@@QAEAAV01@ABV01@@Z
??8B2DHomPoint@basegfx@@QBEEABV01@@Z
??9B2DHomPoint@basegfx@@QBEEABV01@@Z
??Dbasegfx@@YA?AVB2DHomPoint@0@ABV10@N@Z
??Dbasegfx@@YA?AVB2DHomPoint@0@ABVB2DHomMatrix@0@ABV10@@Z
??Dbasegfx@@YA?AVB2DHomPoint@0@NABV10@@Z
??GB2DHomPoint@basegfx@@QAEAAV01@XZ
??Gbasegfx@@YA?AVB2DHomPoint@0@ABV10@0@Z
??Hbasegfx@@YA?AVB2DHomPoint@0@ABV10@0@Z
??Kbasegfx@@YA?AVB2DHomPoint@0@ABV10@N@Z
??Kbasegfx@@YA?AVB2DHomPoint@0@NABV10@@Z
??XB2DHomPoint@basegfx@@QAEAAV01@ABVB2DHomMatrix@1@@Z
??XB2DHomPoint@basegfx@@QAEAAV01@N@Z
??YB2DHomPoint@basegfx@@QAEAAV01@ABV01@@Z
??ZB2DHomPoint@basegfx@@QAEAAV01@ABV01@@Z
??_0B2DHomPoint@basegfx@@QAEAAV01@N@Z
?absolute@basegfx@@YA?AVB2DHomPoint@1@ABV21@@Z
?average@basegfx@@YA?AVB2DHomPoint@1@AAV21@00@Z
?average@basegfx@@YA?AVB2DHomPoint@1@AAV21@0@Z
?getB2DPoint@B2DHomPoint@basegfx@@QBE?AVB2DPoint@2@XZ
?getX@B2DHomPoint@basegfx@@QBENXZ
?getY@B2DHomPoint@basegfx@@QBENXZ
?implHomogenize@B2DHomPoint@basegfx@@IAEXXZ
?implIsHomogenized@B2DHomPoint@basegfx@@IBEEXZ
?implTestAndHomogenize@B2DHomPoint@basegfx@@IBEXXZ
?interpolate@basegfx@@YA?AVB2DHomPoint@1@AAV21@0N@Z
?maximum@basegfx@@YA?AVB2DHomPoint@1@ABV21@0@Z
?minimum@basegfx@@YA?AVB2DHomPoint@1@ABV21@0@Z
?setX@B2DHomPoint@basegfx@@QAEXN@Z
?setY@B2DHomPoint@basegfx@@QAEXN@Z
??XB3DPoint@basegfx@@QAEAAV01@ABVB3DHomMatrix@1@@Z
?implHomogenize@B3DHomPoint@basegfx@@IAEXXZ
??0B2DPoint@basegfx@@QAE@ABV01@@Z
??0B2DPolygon@basegfx@@QAE@ABV01@@Z
??0B2DPolygon@basegfx@@QAE@ABV01@KK@Z
??0B2DPolygon@basegfx@@QAE@XZ
??0B2DVector@basegfx@@QAE@ABV01@@Z
??1B2DPolygon@basegfx@@QAE@XZ
??4B2DPolygon@basegfx@@QAEAAV01@ABV01@@Z
??8B2DPolygon@basegfx@@QBEEABV01@@Z
??9B2DPolygon@basegfx@@QBEEABV01@@Z
??Gbasegfx@@YA?AVB2DTuple@0@ABV10@0@Z
??Hbasegfx@@YA?AVB2DTuple@0@ABV10@0@Z
?append@B2DPolygon@basegfx@@QAEXABV12@KK@Z
?append@B2DPolygon@basegfx@@QAEXABVB2DPoint@2@K@Z
?areControlPointsUsed@B2DPolygon@basegfx@@QBEEXZ
?clear@B2DPolygon@basegfx@@QAEXXZ
?count@B2DPolygon@basegfx@@QBEKXZ
?flip@B2DPolygon@basegfx@@QAEXXZ
?getB2DPoint@B2DPolygon@basegfx@@QBE?AVB2DPoint@2@K@Z
?getControlVectorA@B2DPolygon@basegfx@@QBE?AVB2DVector@2@K@Z
?getControlVectorB@B2DPolygon@basegfx@@QBE?AVB2DVector@2@K@Z
?hasDoublePoints@B2DPolygon@basegfx@@QBEEXZ
?implForceUniqueCopy@B2DPolygon@basegfx@@AAEXXZ
?insert@B2DPolygon@basegfx@@QAEXKABV12@KK@Z
?insert@B2DPolygon@basegfx@@QAEXKABVB2DPoint@2@K@Z
?isClosed@B2DPolygon@basegfx@@QBEEXZ
?remove@B2DPolygon@basegfx@@QAEXKK@Z
?removeDoublePoints@B2DPolygon@basegfx@@QAEXXZ
?setB2DPoint@B2DPolygon@basegfx@@QAEXKABVB2DPoint@2@@Z
?setClosed@B2DPolygon@basegfx@@QAEXE@Z
?setControlVectorA@B2DPolygon@basegfx@@QAEXKABVB2DVector@2@@Z
?setControlVectorB@B2DPolygon@basegfx@@QAEXKABVB2DVector@2@@Z
?setCoordinate@CoordinateDataArray2D@@QAEXKABVB2DPoint@basegfx@@@Z
?setVectorA@ControlVectorArray2D@@QAEXKABVB2DVector@basegfx@@@Z
?setVectorB@ControlVectorArray2D@@QAEXKABVB2DVector@basegfx@@@Z
?transform@B2DPolygon@basegfx@@QAEXABVB2DHomMatrix@2@@Z
??0B2DRange@basegfx@@QAE@ABV01@@Z
?adaptiveSubdivideByAngle@tools@basegfx@@YA?AVB2DPolygon@2@ABV32@N@Z
?adaptiveSubdivideByDistance@tools@basegfx@@YA?AVB2DPolygon@2@ABV32@N@Z
?applyLineDashing@tools@basegfx@@YA?AVB2DPolyPolygon@2@ABVB2DPolygon@2@ABV?$vector@NV?$allocator@N@_STL@@@_STL@@N@Z
?checkClosed@tools@basegfx@@YAXAAVB2DPolygon@2@@Z
?expand@B2DRange@basegfx@@QAEXABVB2DTuple@2@@Z
?expand@BasicRange@basegfx@@QAEXN@Z
?findCut@tools@basegfx@@YAGABVB2DPoint@2@ABVB2DVector@2@01GPAN2@Z
?findCut@tools@basegfx@@YAGABVB2DPolygon@2@K0KGPAN1@Z
?findCut@tools@basegfx@@YAGABVB2DPolygon@2@KKGPAN1@Z
?getArea@tools@basegfx@@YANABVB2DPolygon@2@@Z
?getContinuityInPoint@tools@basegfx@@YA?AW4B2DVectorContinuity@2@ABVB2DPolygon@2@K@Z
?getEdgeLength@tools@basegfx@@YANABVB2DPolygon@2@K@Z
?getIndexOfDifferentPredecessor@tools@basegfx@@YAKKABVB2DPolygon@2@@Z
?getIndexOfDifferentSuccessor@tools@basegfx@@YAKKABVB2DPolygon@2@@Z
?getIndexOfOutmostPoint@tools@basegfx@@YAKABVB2DPolygon@2@@Z
?getIndexOfPredecessor@tools@basegfx@@YAKKABVB2DPolygon@2@@Z
?getIndexOfSuccessor@tools@basegfx@@YAKKABVB2DPolygon@2@@Z
?getLength@tools@basegfx@@YANABVB2DPolygon@2@@Z
?getOrientation@tools@basegfx@@YA?AW4B2DVectorOrientation@2@ABVB2DPolygon@2@@Z
?getPointOrientation@tools@basegfx@@YA?AW4B2DVectorOrientation@2@ABVB2DPolygon@2@K@Z
?getPositionAbsolute@tools@basegfx@@YA?AVB2DPoint@2@ABVB2DPolygon@2@NN@Z
?getPositionRelative@tools@basegfx@@YA?AVB2DPoint@2@ABVB2DPolygon@2@NN@Z
?getRange@tools@basegfx@@YA?AVB2DRange@2@ABVB2DPolygon@2@@Z
?interpolate@basegfx@@YA?AVB2DTuple@1@ABV21@0N@Z
?isInside@tools@basegfx@@YAEABVB2DPolygon@2@0E@Z
?isInside@tools@basegfx@@YAEABVB2DPolygon@2@ABVB2DPoint@2@E@Z
?isPointOnEdge@tools@basegfx@@YAEABVB2DPoint@2@0ABVB2DVector@2@PAN@Z
??0B2DPolyPolygon@basegfx@@QAE@ABV01@@Z
??0B2DPolyPolygon@basegfx@@QAE@XZ
??1?$vector@VB2DPolygon@basegfx@@V?$allocator@VB2DPolygon@basegfx@@@_STL@@@_STL@@QAE@XZ
??1B2DPolyPolygon@basegfx@@QAE@XZ
??4?$vector@VB2DPolygon@basegfx@@V?$allocator@VB2DPolygon@basegfx@@@_STL@@@_STL@@QAEAAV01@ABV01@@Z
??4B2DPolyPolygon@basegfx@@QAEAAV01@ABV01@@Z
??8B2DPolyPolygon@basegfx@@QBEEABV01@@Z
??8_STL@@YA_NABV?$vector@VB2DPolygon@basegfx@@V?$allocator@VB2DPolygon@basegfx@@@_STL@@@0@0@Z
??9B2DPolyPolygon@basegfx@@QBEEABV01@@Z
?_M_allocate_and_copy@?$vector@VB2DPolygon@basegfx@@V?$allocator@VB2DPolygon@basegfx@@@_STL@@@_STL@@IAEPAVB2DPolygon@basegfx@@IPAV34@0@Z
?_M_allocate_and_copy@?$vector@VB2DPolygon@basegfx@@V?$allocator@VB2DPolygon@basegfx@@@_STL@@@_STL@@IAEPAVB2DPolygon@basegfx@@IPBV34@0@Z
?_M_clear@?$vector@VB2DPolygon@basegfx@@V?$allocator@VB2DPolygon@basegfx@@@_STL@@@_STL@@IAEXXZ
?_M_fill_insert@?$vector@VB2DPolygon@basegfx@@V?$allocator@VB2DPolygon@basegfx@@@_STL@@@_STL@@QAEXPAVB2DPolygon@basegfx@@IABV34@@Z
?_M_insert_overflow@?$vector@VB2DPolygon@basegfx@@V?$allocator@VB2DPolygon@basegfx@@@_STL@@@_STL@@IAEXPAVB2DPolygon@basegfx@@ABV34@ABU__false_type@2@I_N@Z
?append@B2DPolyPolygon@basegfx@@QAEXABV12@@Z
?append@B2DPolyPolygon@basegfx@@QAEXABVB2DPolygon@2@K@Z
?areControlPointsUsed@B2DPolyPolygon@basegfx@@QBEEXZ
?clear@B2DPolyPolygon@basegfx@@QAEXXZ
?count@B2DPolyPolygon@basegfx@@QBEKXZ
?erase@?$vector@VB2DPolygon@basegfx@@V?$allocator@VB2DPolygon@basegfx@@@_STL@@@_STL@@QAEPAVB2DPolygon@basegfx@@PAV34@0@Z
?flip@B2DPolyPolygon@basegfx@@QAEXXZ
?getB2DPolygon@B2DPolyPolygon@basegfx@@QBE?AVB2DPolygon@2@K@Z
?hasDoublePoints@B2DPolyPolygon@basegfx@@QBEEXZ
?implForceUniqueCopy@B2DPolyPolygon@basegfx@@AAEXXZ
?insert@?$vector@VB2DPolygon@basegfx@@V?$allocator@VB2DPolygon@basegfx@@@_STL@@@_STL@@QAEPAVB2DPolygon@basegfx@@PAV34@ABV34@@Z
?insert@B2DPolyPolygon@basegfx@@QAEXKABV12@@Z
?insert@B2DPolyPolygon@basegfx@@QAEXKABVB2DPolygon@2@K@Z
?isClosed@B2DPolyPolygon@basegfx@@QBEEXZ
?remove@B2DPolyPolygon@basegfx@@QAEXKK@Z
?removeDoublePoints@B2DPolyPolygon@basegfx@@QAEXXZ
?reserve@?$vector@VB2DPolygon@basegfx@@V?$allocator@VB2DPolygon@basegfx@@@_STL@@@_STL@@QAEXI@Z
?setB2DPolygon@B2DPolyPolygon@basegfx@@QAEXKABVB2DPolygon@2@@Z
?setClosed@B2DPolyPolygon@basegfx@@QAEXE@Z
?transform@B2DPolyPolygon@basegfx@@QAEXABVB2DHomMatrix@2@@Z
?adaptiveSubdivideByAngle@tools@basegfx@@YA?AVB2DPolyPolygon@2@ABV32@N@Z
?adaptiveSubdivideByDistance@tools@basegfx@@YA?AVB2DPolyPolygon@2@ABV32@N@Z
?applyLineDashing@tools@basegfx@@YA?AVB2DPolyPolygon@2@ABV32@ABV?$vector@NV?$allocator@N@_STL@@@_STL@@N@Z
?correctOrientations@tools@basegfx@@YAXAAVB2DPolyPolygon@2@@Z
?expand@B2DRange@basegfx@@QAEXABV12@@Z
?getRange@tools@basegfx@@YA?AVB2DRange@2@ABVB2DPolyPolygon@2@@Z
?removeIntersections@tools@basegfx@@YAXAAVB2DPolyPolygon@2@EE@Z
??0?$_Vector_base@PAVB2DSimpleCut@basegfx@@V?$allocator@PAVB2DSimpleCut@basegfx@@@_STL@@@_STL@@QAE@ABV?$allocator@PAVB2DSimpleCut@basegfx@@@1@@Z
??0B2DPolygonNode@basegfx@@QAE@ABVB2DPoint@1@PAV01@@Z
??1?$_Vector_base@PAVB2DSimpleCut@basegfx@@V?$allocator@PAVB2DSimpleCut@basegfx@@@_STL@@@_STL@@QAE@XZ
??1B2DPolyPolygonCutter@basegfx@@QAE@XZ
??1B2DPolygonNode@basegfx@@QAE@XZ
??4B2DRange@basegfx@@QAEXABV01@@Z
?_M_insert_overflow@?$vector@PAVB2DPolygonNode@basegfx@@V?$allocator@PAVB2DPolygonNode@basegfx@@@_STL@@@_STL@@IAEXPAPAVB2DPolygonNode@basegfx@@ABQAV34@ABU__true_type@2@I_N@Z
?_M_insert_overflow@?$vector@PAVB2DSimpleCut@basegfx@@V?$allocator@PAVB2DSimpleCut@basegfx@@@_STL@@@_STL@@IAEXPAPAVB2DSimpleCut@basegfx@@ABQAV34@ABU__true_type@2@I_N@Z
?_M_range_insert@?$vector@PAVB2DSimpleCut@basegfx@@V?$allocator@PAVB2DSimpleCut@basegfx@@@_STL@@@_STL@@QAEXPAPAVB2DSimpleCut@basegfx@@00ABUforward_iterator_tag@2@@Z
?__find@_STL@@YAPAPAVB2DSimpleCut@basegfx@@PAPAV23@0ABQAV23@ABUrandom_access_iterator_tag@1@@Z
?addAllNodes@B2DPolyPolygonCutter@basegfx@@AAEXPAVB2DPolygonNode@2@AAPAV32@@Z
?addPolyPolygon@B2DPolyPolygonCutter@basegfx@@QAEXABVB2DPolyPolygon@2@E@Z
?addToList@B2DPolygonNode@basegfx@@QAEXAAPAV12@@Z
?calcMinMaxX@B2DPolygonNode@basegfx@@QBEXAAN0@Z
?calcMinMaxY@B2DPolygonNode@basegfx@@QBEXAAN0@Z
?changeDepth@B2DClipExtraPolygonInfo@basegfx@@QAEXE@Z
?clear@?$vector@PAVB2DPolygonNode@basegfx@@V?$allocator@PAVB2DPolygonNode@basegfx@@@_STL@@@_STL@@QAEXXZ
?clear@?$vector@PAVB2DSimpleCut@basegfx@@V?$allocator@PAVB2DSimpleCut@basegfx@@@_STL@@@_STL@@QAEXXZ
?createNewPolygon@B2DPolyPolygonCutter@basegfx@@AAEPAVB2DPolygonNode@2@ABVB2DPolygon@2@@Z
?deletePolygon@B2DPolyPolygonCutter@basegfx@@AAEXPAVB2DPolygonNode@2@@Z
?erase@?$vector@PAVB2DPolygonNode@basegfx@@V?$allocator@PAVB2DPolygonNode@basegfx@@@_STL@@@_STL@@QAEPAPAVB2DPolygonNode@basegfx@@PAPAV34@@Z
?erase@?$vector@PAVB2DSimpleCut@basegfx@@V?$allocator@PAVB2DSimpleCut@basegfx@@@_STL@@@_STL@@QAEPAPAVB2DSimpleCut@basegfx@@PAPAV34@@Z
?extractNextPolygon@B2DPolyPolygonCutter@basegfx@@AAEPAVB2DPolygonNode@2@AAPAV32@@Z
?find@_STL@@YAPAPAVB2DSimpleCut@basegfx@@PAPAV23@0ABQAV23@@Z
?getExistingCut@B2DPolyPolygonCutter@basegfx@@AAEPAVB2DSimpleCut@2@AAV?$vector@PAVB2DSimpleCut@basegfx@@V?$allocator@PAVB2DSimpleCut@basegfx@@@_STL@@@_STL@@PAVB2DPolygonNode@2@1@Z
?getOrientation@B2DPolygonNode@basegfx@@QBEEXZ
?getPolyPolygon@B2DPolyPolygonCutter@basegfx@@QAEXAAVB2DPolyPolygon@2@@Z
?getRange@B2DPolygonNode@basegfx@@QBE?AVB2DRange@2@XZ
?init@B2DClipExtraPolygonInfo@basegfx@@QAEXPAVB2DPolygonNode@2@@Z
?isCrossover@B2DPolyPolygonCutter@basegfx@@AAEEPAVB2DPolygonNode@2@0@Z
?isCrossover@B2DPolyPolygonCutter@basegfx@@AAEEPAVB2DSimpleCut@2@0@Z
?isInside@B2DPolygonNode@basegfx@@QBEEABVB2DPoint@2@E@Z
?isInside@B2DRange@basegfx@@QBEEABV12@@Z
?isPolygonInside@B2DPolygonNode@basegfx@@QBEEPAV12@E@Z
?listToPolys@B2DPolyPolygonCutter@basegfx@@AAEXAAPAVB2DPolygonNode@2@@Z
?overlaps@B2DRange@basegfx@@QBEEABV12@@Z
?polysToList@B2DPolyPolygonCutter@basegfx@@AAEXAAPAVB2DPolygonNode@2@@Z
?push_back@?$vector@PAVB2DPolygonNode@basegfx@@V?$allocator@PAVB2DPolygonNode@basegfx@@@_STL@@@_STL@@QAEXABQAVB2DPolygonNode@basegfx@@@Z
?push_back@?$vector@PAVB2DSimpleCut@basegfx@@V?$allocator@PAVB2DSimpleCut@basegfx@@@_STL@@@_STL@@QAEXABQAVB2DSimpleCut@basegfx@@@Z
?remFromList@B2DPolygonNode@basegfx@@QAEXAAPAV12@@Z
?removeDoubleIntersections@B2DPolyPolygonCutter@basegfx@@QAEXXZ
?removeIncludedPolygons@B2DPolyPolygonCutter@basegfx@@QAEXE@Z
?removeSelfIntersections@B2DPolyPolygonCutter@basegfx@@QAEXXZ
?solve@B2DSimpleCut@basegfx@@QAEXXZ
?solveAllCuts@B2DPolyPolygonCutter@basegfx@@AAEXAAV?$vector@PAVB2DSimpleCut@basegfx@@V?$allocator@PAVB2DSimpleCut@basegfx@@@_STL@@@_STL@@@Z
?swapNextPointers@B2DPolygonNode@basegfx@@QAEXPAV12@@Z
?swapOrientation@B2DPolygonNode@basegfx@@QAEXXZ
??0?$_Vector_base@VCoordinateData3D@@V?$allocator@VCoordinateData3D@@@_STL@@@_STL@@QAE@IABV?$allocator@VCoordinateData3D@@@1@@Z
??0?$vector@VCoordinateData3D@@V?$allocator@VCoordinateData3D@@@_STL@@@_STL@@QAE@ABV01@@Z
??0?$vector@VCoordinateData3D@@V?$allocator@VCoordinateData3D@@@_STL@@@_STL@@QAE@I@Z
??0B3DPoint@basegfx@@QAE@ABV01@@Z
??0B3DPolygon@basegfx@@QAE@ABV01@@Z
??0B3DPolygon@basegfx@@QAE@ABV01@KK@Z
??0B3DPolygon@basegfx@@QAE@XZ
??0B3DTuple@basegfx@@QAE@ABV01@@Z
??0CoordinateData3D@@QAE@ABV0@@Z
??0CoordinateDataArray3D@@QAE@ABV0@KK@Z
??1?$vector@VCoordinateData3D@@V?$allocator@VCoordinateData3D@@@_STL@@@_STL@@QAE@XZ
??1B3DPolygon@basegfx@@QAE@XZ
??4B3DPolygon@basegfx@@QAEAAV01@ABV01@@Z
??8B3DPolygon@basegfx@@QBEEABV01@@Z
??8_STL@@YA_NABV?$vector@VCoordinateData3D@@V?$allocator@VCoordinateData3D@@@_STL@@@0@0@Z
??9B3DPolygon@basegfx@@QBEEABV01@@Z
?_M_clear@?$vector@VCoordinateData3D@@V?$allocator@VCoordinateData3D@@@_STL@@@_STL@@IAEXXZ
?_M_fill_insert@?$vector@VCoordinateData3D@@V?$allocator@VCoordinateData3D@@@_STL@@@_STL@@QAEXPAVCoordinateData3D@@IABV3@@Z
?_M_insert_overflow@?$vector@VCoordinateData3D@@V?$allocator@VCoordinateData3D@@@_STL@@@_STL@@IAEXPAVCoordinateData3D@@ABV3@ABU__false_type@2@I_N@Z
?_M_range_initialize@?$vector@VCoordinateData3D@@V?$allocator@VCoordinateData3D@@@_STL@@@_STL@@IAEXPBVCoordinateData3D@@0ABUforward_iterator_tag@2@@Z
?_M_range_insert@?$vector@VCoordinateData3D@@V?$allocator@VCoordinateData3D@@@_STL@@@_STL@@QAEXPAVCoordinateData3D@@PBV3@1ABUforward_iterator_tag@2@@Z
?__copy_ptrs@_STL@@YAPAVCoordinateData3D@@PBV2@0PAV2@ABU__false_type@1@@Z
?append@B3DPolygon@basegfx@@QAEXABV12@KK@Z
?append@B3DPolygon@basegfx@@QAEXABVB3DPoint@2@K@Z
?clear@B3DPolygon@basegfx@@QAEXXZ
?count@B3DPolygon@basegfx@@QBEKXZ
?equal@B3DTuple@basegfx@@QBEEABV12@@Z
?erase@?$vector@VCoordinateData3D@@V?$allocator@VCoordinateData3D@@@_STL@@@_STL@@QAEPAVCoordinateData3D@@PAV3@0@Z
?erase@?$vector@VCoordinateData3D@@V?$allocator@VCoordinateData3D@@@_STL@@@_STL@@QAEPAVCoordinateData3D@@PAV3@@Z
?flip@B3DPolygon@basegfx@@QAEXXZ
?flip@CoordinateDataArray3D@@QAEXXZ
?getB3DPoint@B3DPolygon@basegfx@@QBE?AVB3DPoint@2@K@Z
?hasDoublePoints@B3DPolygon@basegfx@@QBEEXZ
?implForceUniqueCopy@B3DPolygon@basegfx@@AAEXXZ
?insert@B3DPolygon@basegfx@@QAEXKABV12@KK@Z
?insert@B3DPolygon@basegfx@@QAEXKABVB3DPoint@2@K@Z
?insert@CoordinateDataArray3D@@QAEXKABV1@@Z
?isClosed@B3DPolygon@basegfx@@QBEEXZ
?remove@B3DPolygon@basegfx@@QAEXKK@Z
?removeDoublePoints@B3DPolygon@basegfx@@QAEXXZ
?removeDoublePointsAtBeginEnd@CoordinateDataArray3D@@QAEXXZ
?removeDoublePointsWholeTrack@CoordinateDataArray3D@@QAEXXZ
?setB3DPoint@B3DPolygon@basegfx@@QAEXKABVB3DPoint@2@@Z
?setClosed@B3DPolygon@basegfx@@QAEXE@Z
?setCoordinate@CoordinateDataArray3D@@QAEXKABVB3DPoint@basegfx@@@Z
?swap@_STL@@YAXAAVCoordinateData3D@@0@Z
?transform@B3DPolygon@basegfx@@QAEXABVB3DHomMatrix@2@@Z
?uninitialized_fill_n@_STL@@YAPAVCoordinateData3D@@PAV2@IABV2@@Z
??0B3DRange@basegfx@@QAE@ABV01@@Z
??0B3DRange@basegfx@@QAE@XZ
??Dbasegfx@@YA?AVB3DTuple@0@ABV10@N@Z
??Gbasegfx@@YA?AVB3DTuple@0@ABV10@0@Z
??YB3DTuple@basegfx@@QAEAAV01@ABV01@@Z
??ZB3DTuple@basegfx@@QAEAAV01@ABV01@@Z
?applyLineDashing@tools@basegfx@@YA?AVB3DPolyPolygon@2@ABVB3DPolygon@2@ABV?$vector@NV?$allocator@N@_STL@@@_STL@@N@Z
?average@basegfx@@YA?AVB3DTuple@1@ABV21@00@Z
?checkClosed@tools@basegfx@@YAXAAVB3DPolygon@2@@Z
?expand@B3DRange@basegfx@@QAEXABVB3DTuple@2@@Z
?getEdgeLength@tools@basegfx@@YANABVB3DPolygon@2@K@Z
?getIndexOfDifferentPredecessor@tools@basegfx@@YAKKABVB3DPolygon@2@@Z
?getIndexOfDifferentSuccessor@tools@basegfx@@YAKKABVB3DPolygon@2@@Z
?getIndexOfPredecessor@tools@basegfx@@YAKKABVB3DPolygon@2@@Z
?getIndexOfSuccessor@tools@basegfx@@YAKKABVB3DPolygon@2@@Z
?getLength@B3DVector@basegfx@@QBENXZ
?getLength@tools@basegfx@@YANABVB3DPolygon@2@@Z
?getPositionAbsolute@tools@basegfx@@YA?AVB3DPoint@2@ABVB3DPolygon@2@NN@Z
?getPositionRelative@tools@basegfx@@YA?AVB3DPoint@2@ABVB3DPolygon@2@NN@Z
?getRange@tools@basegfx@@YA?AVB3DRange@2@ABVB3DPolygon@2@@Z
??0B3DPolyPolygon@basegfx@@QAE@ABV01@@Z
??0B3DPolyPolygon@basegfx@@QAE@XZ
??1?$vector@VB3DPolygon@basegfx@@V?$allocator@VB3DPolygon@basegfx@@@_STL@@@_STL@@QAE@XZ
??1B3DPolyPolygon@basegfx@@QAE@XZ
??4?$vector@VB3DPolygon@basegfx@@V?$allocator@VB3DPolygon@basegfx@@@_STL@@@_STL@@QAEAAV01@ABV01@@Z
??4B3DPolyPolygon@basegfx@@QAEAAV01@ABV01@@Z
??8B3DPolyPolygon@basegfx@@QBEEABV01@@Z
??8_STL@@YA_NABV?$vector@VB3DPolygon@basegfx@@V?$allocator@VB3DPolygon@basegfx@@@_STL@@@0@0@Z
??9B3DPolyPolygon@basegfx@@QBEEABV01@@Z
?_M_allocate_and_copy@?$vector@VB3DPolygon@basegfx@@V?$allocator@VB3DPolygon@basegfx@@@_STL@@@_STL@@IAEPAVB3DPolygon@basegfx@@IPAV34@0@Z
?_M_allocate_and_copy@?$vector@VB3DPolygon@basegfx@@V?$allocator@VB3DPolygon@basegfx@@@_STL@@@_STL@@IAEPAVB3DPolygon@basegfx@@IPBV34@0@Z
?_M_clear@?$vector@VB3DPolygon@basegfx@@V?$allocator@VB3DPolygon@basegfx@@@_STL@@@_STL@@IAEXXZ
?_M_fill_insert@?$vector@VB3DPolygon@basegfx@@V?$allocator@VB3DPolygon@basegfx@@@_STL@@@_STL@@QAEXPAVB3DPolygon@basegfx@@IABV34@@Z
?_M_insert_overflow@?$vector@VB3DPolygon@basegfx@@V?$allocator@VB3DPolygon@basegfx@@@_STL@@@_STL@@IAEXPAVB3DPolygon@basegfx@@ABV34@ABU__false_type@2@I_N@Z
?append@B3DPolyPolygon@basegfx@@QAEXABV12@@Z
?append@B3DPolyPolygon@basegfx@@QAEXABVB3DPolygon@2@K@Z
?clear@B3DPolyPolygon@basegfx@@QAEXXZ
?count@B3DPolyPolygon@basegfx@@QBEKXZ
?erase@?$vector@VB3DPolygon@basegfx@@V?$allocator@VB3DPolygon@basegfx@@@_STL@@@_STL@@QAEPAVB3DPolygon@basegfx@@PAV34@0@Z
?flip@B3DPolyPolygon@basegfx@@QAEXXZ
?getB3DPolygon@B3DPolyPolygon@basegfx@@QBE?AVB3DPolygon@2@K@Z
?hasDoublePoints@B3DPolyPolygon@basegfx@@QBEEXZ
?implForceUniqueCopy@B3DPolyPolygon@basegfx@@AAEXXZ
?insert@?$vector@VB3DPolygon@basegfx@@V?$allocator@VB3DPolygon@basegfx@@@_STL@@@_STL@@QAEPAVB3DPolygon@basegfx@@PAV34@ABV34@@Z
?insert@B3DPolyPolygon@basegfx@@QAEXKABV12@@Z
?insert@B3DPolyPolygon@basegfx@@QAEXKABVB3DPolygon@2@K@Z
?isClosed@B3DPolyPolygon@basegfx@@QBEEXZ
?remove@B3DPolyPolygon@basegfx@@QAEXKK@Z
?removeDoublePoints@B3DPolyPolygon@basegfx@@QAEXXZ
?reserve@?$vector@VB3DPolygon@basegfx@@V?$allocator@VB3DPolygon@basegfx@@@_STL@@@_STL@@QAEXI@Z
?setB3DPolygon@B3DPolyPolygon@basegfx@@QAEXKABVB3DPolygon@2@@Z
?setClosed@B3DPolyPolygon@basegfx@@QAEXE@Z
?transform@B3DPolyPolygon@basegfx@@QAEXABVB3DHomMatrix@2@@Z
?applyLineDashing@tools@basegfx@@YA?AVB3DPolyPolygon@2@ABV32@ABV?$vector@NV?$allocator@N@_STL@@@_STL@@N@Z
?expand@B3DRange@basegfx@@QAEXABV12@@Z
?getRange@tools@basegfx@@YA?AVB3DRange@2@ABVB3DPolyPolygon@2@@Z
?correctValues@B2DTuple@basegfx@@QAEXN@Z
?equal@B2DTuple@basegfx@@QBEEABV12@@Z
?equal@B2DTuple@basegfx@@QBEEABV12@ABN@Z
?equalZero@B2DTuple@basegfx@@QBEEABN@Z
?equalZero@B2DTuple@basegfx@@QBEEXZ
?maEmptyTuple@B2DTuple@basegfx@@0V12@A
?maEmptyTuple@B3DTuple@basegfx@@0V12@A
??4B2DVector@basegfx@@QAEAAV01@ABVB2DTuple@1@@Z
??Dbasegfx@@YA?AVB2DVector@0@ABVB2DHomMatrix@0@ABV10@@Z
??XB2DVector@basegfx@@QAEAAV01@ABVB2DHomMatrix@1@@Z
?angle@B2DVector@basegfx@@QBENABV12@@Z
?areParallel@basegfx@@YAEABVB2DVector@1@0@Z
?cross@B2DVector@basegfx@@QBENABV12@@Z
?getContinuity@basegfx@@YA?AW4B2DVectorContinuity@1@ABVB2DVector@1@0@Z
?getEmptyVector@B2DVector@basegfx@@SAABV12@XZ
?getLength@B2DVector@basegfx@@QBENXZ
?getOrientation@basegfx@@YA?AW4B2DVectorOrientation@1@ABVB2DVector@1@0@Z
?getPerpendicular@basegfx@@YA?AVB2DVector@1@ABV21@@Z
?isNormalized@B2DVector@basegfx@@QBEEXZ
?normalize@B2DVector@basegfx@@QAEAAV12@XZ
?scalar@B2DVector@basegfx@@QBENABV12@@Z
?setLength@B2DVector@basegfx@@QAEAAV12@N@Z
??Dbasegfx@@YA?AVB3DVector@0@ABVB3DHomMatrix@0@ABV10@@Z
??XB3DVector@basegfx@@QAEAAV01@ABVB3DHomMatrix@1@@Z
?cross@basegfx@@YA?AVB3DVector@1@ABV21@0@Z
?getPerpendicular@B3DVector@basegfx@@QBE?AV12@ABV12@@Z
?getProjectionOnPlane@B3DVector@basegfx@@QBE?AV12@ABV12@@Z
?normalize@B3DVector@basegfx@@QAEAAV12@XZ
??0B2DPoint@basegfx@@QAE@N@Z
??0B2DTuple@basegfx@@QAE@ABV01@@Z
??0B2DTuple@basegfx@@QAE@N@Z
??1B2DPoint@basegfx@@QAE@XZ
??1B2DTuple@basegfx@@QAE@XZ
??4B2DPoint@basegfx@@QAEAAV01@ABV01@@Z
??4B2DTuple@basegfx@@QAEAAV01@ABV01@@Z
??8B2DTuple@basegfx@@QBEEABV01@@Z
??9B2DTuple@basegfx@@QBEEABV01@@Z
??0AngleErrorFunctor@?A0x7c1eec44@@QAE@ABN@Z
??0B2DPoint@basegfx@@QAE@NN@Z
??0B2DTuple@basegfx@@QAE@NN@Z
??0B2DVector@basegfx@@QAE@NN@Z
??0DistanceErrorFunctor@?A0x7c1eec44@@QAE@ABN@Z
??1B2DVector@basegfx@@QAE@XZ
?equal@fTools@basegfx@@SAEABN0@Z
?equalZero@fTools@basegfx@@SAEABN@Z
?getControlPointA@B2DCubicBezier@basegfx@@QBE?AVB2DPoint@2@XZ
?getControlPointB@B2DCubicBezier@basegfx@@QBE?AVB2DPoint@2@XZ
?getEndPoint@B2DCubicBezier@basegfx@@QBE?AVB2DPoint@2@XZ
?getSmallValue@fTools@basegfx@@SANXZ
?getStartPoint@B2DCubicBezier@basegfx@@QBE?AVB2DPoint@2@XZ
?getX@B2DTuple@basegfx@@QBENXZ
?getY@B2DTuple@basegfx@@QBENXZ
?less@fTools@basegfx@@SAEABN0@Z
?max@?$numeric_limits@N@_STL@@SANXZ
?max@_STL@@YAABNABN0@Z
?needsFurtherSubdivision@AngleErrorFunctor@?A0x7c1eec44@@QAE_NNNNNNNNNNN@Z
?needsFurtherSubdivision@DistanceErrorFunctor@?A0x7c1eec44@@QAE_NABN000000000@Z
_real@3f91df46a2529d39
_real@7fefffffffffffff
??0B3DTuple@basegfx@@QAE@N@Z
??1B3DTuple@basegfx@@QAE@XZ
?getX@B3DTuple@basegfx@@QBENXZ
?getY@B3DTuple@basegfx@@QBENXZ
?getZ@B3DTuple@basegfx@@QBENXZ
?implGetDefaultValue@internal@basegfx@@YANGG@Z
?more@fTools@basegfx@@SAEABN0@Z
?moreOrEqual@fTools@basegfx@@SAEABN0@Z
?setX@B2DTuple@basegfx@@QAEXN@Z
?setY@B2DTuple@basegfx@@QAEXN@Z
??0B3DTuple@basegfx@@QAE@NNN@Z
??0B3DVector@basegfx@@QAE@N@Z
??0B3DVector@basegfx@@QAE@NNN@Z
??1B3DVector@basegfx@@QAE@XZ
??4B3DVector@basegfx@@QAEAAV01@ABV01@@Z
??4B3DVector@basegfx@@QAEAAV01@ABVB3DTuple@1@@Z
??GB3DTuple@basegfx@@QBE?AV01@XZ
?setX@B3DTuple@basegfx@@QAEXN@Z
?setY@B3DTuple@basegfx@@QAEXN@Z
?setZ@B3DTuple@basegfx@@QAEXN@Z
??0B2DHomPoint@basegfx@@QAE@ABV01@@Z
??0B2DHomPoint@basegfx@@QAE@NN@Z
??1B2DHomPoint@basegfx@@QAE@XZ
??0?$_STLP_alloc_proxy@PAVControlVectorPair2D@@V1@V?$allocator@VControlVectorPair2D@@@_STL@@@_STL@@QAE@ABV?$allocator@VControlVectorPair2D@@@1@PAVControlVectorPair2D@@@Z
??0?$_STLP_alloc_proxy@PAVCoordinateData2D@@V1@V?$allocator@VCoordinateData2D@@@_STL@@@_STL@@QAE@ABV?$allocator@VCoordinateData2D@@@1@PAVCoordinateData2D@@@Z
??0?$_Vector_base@VControlVectorPair2D@@V?$allocator@VControlVectorPair2D@@@_STL@@@_STL@@QAE@ABV?$allocator@VControlVectorPair2D@@@1@@Z
??0?$_Vector_base@VCoordinateData2D@@V?$allocator@VCoordinateData2D@@@_STL@@@_STL@@QAE@ABV?$allocator@VCoordinateData2D@@@1@@Z
??0?$allocator@VControlVectorPair2D@@@_STL@@QAE@ABV01@@Z
??0?$allocator@VControlVectorPair2D@@@_STL@@QAE@XZ
??0?$allocator@VCoordinateData2D@@@_STL@@QAE@ABV01@@Z
??0?$allocator@VCoordinateData2D@@@_STL@@QAE@XZ
??0?$vector@VControlVectorPair2D@@V?$allocator@VControlVectorPair2D@@@_STL@@@_STL@@QAE@ABV?$allocator@VControlVectorPair2D@@@1@@Z
??0?$vector@VCoordinateData2D@@V?$allocator@VCoordinateData2D@@@_STL@@@_STL@@QAE@PBVCoordinateData2D@@0@Z
??0B2DVector@basegfx@@QAE@ABVB2DTuple@1@@Z
??0B2DVector@basegfx@@QAE@N@Z
??0ControlVectorArray2D@@QAE@ABV0@@Z
??0ControlVectorArray2D@@QAE@K@Z
??0ControlVectorPair2D@@QAE@XZ
??0CoordinateData2D@@QAE@ABVB2DPoint@basegfx@@@Z
??0CoordinateData2D@@QAE@XZ
??0CoordinateDataArray2D@@QAE@ABV0@@Z
??0CoordinateDataArray2D@@QAE@K@Z
??1?$_STLP_alloc_proxy@PAVControlVectorPair2D@@V1@V?$allocator@VControlVectorPair2D@@@_STL@@@_STL@@QAE@XZ
??1?$_STLP_alloc_proxy@PAVCoordinateData2D@@V1@V?$allocator@VCoordinateData2D@@@_STL@@@_STL@@QAE@XZ
??1?$_Vector_base@VControlVectorPair2D@@V?$allocator@VControlVectorPair2D@@@_STL@@@_STL@@QAE@XZ
??1?$_Vector_base@VCoordinateData2D@@V?$allocator@VCoordinateData2D@@@_STL@@@_STL@@QAE@XZ
??1?$allocator@VControlVectorPair2D@@@_STL@@QAE@XZ
??1?$allocator@VCoordinateData2D@@@_STL@@QAE@XZ
??1ControlVectorArray2D@@QAE@XZ
??1ControlVectorPair2D@@QAE@XZ
??1CoordinateData2D@@QAE@XZ
??1CoordinateDataArray2D@@QAE@XZ
??2@YAPAXIPAX@Z
??4B2DVector@basegfx@@QAEAAV01@ABV01@@Z
??4CoordinateData2D@@QAEAAV0@ABV0@@Z
??8CoordinateData2D@@QBEEABV0@@Z
??A?$vector@VControlVectorPair2D@@V?$allocator@VControlVectorPair2D@@@_STL@@@_STL@@QAEAAVControlVectorPair2D@@I@Z
??A?$vector@VControlVectorPair2D@@V?$allocator@VControlVectorPair2D@@@_STL@@@_STL@@QBEABVControlVectorPair2D@@I@Z
??A?$vector@VCoordinateData2D@@V?$allocator@VCoordinateData2D@@@_STL@@@_STL@@QAEAAVCoordinateData2D@@I@Z
??A?$vector@VCoordinateData2D@@V?$allocator@VCoordinateData2D@@@_STL@@@_STL@@QBEABVCoordinateData2D@@I@Z
??YB2DTuple@basegfx@@QAEAAV01@ABV01@@Z
??ZB2DTuple@basegfx@@QAEAAV01@ABV01@@Z
??_GControlVectorPair2D@@QAEPAXI@Z
??_GCoordinateData2D@@QAEPAXI@Z
?_Construct@_STL@@YAXPAVCoordinateData2D@@ABV2@@Z
?_Destroy@_STL@@YAXPAVControlVectorPair2D@@@Z
?_Destroy@_STL@@YAXPAVCoordinateData2D@@0@Z
?_Destroy@_STL@@YAXPAVCoordinateData2D@@@Z
?_IsOKToMemCpy@_STL@@YA?AU?$_OKToMemCpy@VControlVectorPair2D@@V1@@1@PAVControlVectorPair2D@@0@Z
?_IsOKToMemCpy@_STL@@YA?AU?$_OKToMemCpy@VCoordinateData2D@@V1@@1@PAVCoordinateData2D@@0@Z
?_Is_POD@_STL@@YA?AU?$_IsPOD@VControlVectorPair2D@@@1@PAVControlVectorPair2D@@@Z
?_Is_POD@_STL@@YA?AU?$_IsPOD@VCoordinateData2D@@@1@PAVCoordinateData2D@@@Z
?_M_initialize_aux@?$vector@VCoordinateData2D@@V?$allocator@VCoordinateData2D@@@_STL@@@_STL@@QAEXPBVCoordinateData2D@@0ABU__false_type@2@@Z
?_M_insert_dispatch@?$vector@VControlVectorPair2D@@V?$allocator@VControlVectorPair2D@@@_STL@@@_STL@@QAEXPAVControlVectorPair2D@@PBV3@1ABU__false_type@2@@Z
?_M_insert_dispatch@?$vector@VCoordinateData2D@@V?$allocator@VCoordinateData2D@@@_STL@@@_STL@@QAEXPAVCoordinateData2D@@PBV3@1ABU__false_type@2@@Z
?_M_set@?$vector@VControlVectorPair2D@@V?$allocator@VControlVectorPair2D@@@_STL@@@_STL@@IAEXPAVControlVectorPair2D@@00@Z
?_M_set@?$vector@VCoordinateData2D@@V?$allocator@VCoordinateData2D@@@_STL@@@_STL@@IAEXPAVCoordinateData2D@@00@Z
?_Ret@?$_BothPtrType@PBVControlVectorPair2D@@PAV1@@_STL@@SA?AU__true_type@2@XZ
?_Ret@?$_BothPtrType@PBVCoordinateData2D@@PAV1@@_STL@@SA?AU__true_type@2@XZ
?_Ret@?$_IsPOD@VControlVectorPair2D@@@_STL@@SA?AU__false_type@2@XZ
?_Ret@?$_IsPOD@VCoordinateData2D@@@_STL@@SA?AU__false_type@2@XZ
?_Ret@?$_OKToMemCpy@VControlVectorPair2D@@V1@@_STL@@SA?AU__false_type@2@XZ
?_Ret@?$_OKToMemCpy@VCoordinateData2D@@V1@@_STL@@SA?AU__false_type@2@XZ
?__advance@_STL@@YAXAAPBVControlVectorPair2D@@IABUrandom_access_iterator_tag@1@@Z
?__advance@_STL@@YAXAAPBVCoordinateData2D@@IABUrandom_access_iterator_tag@1@@Z
?__copy@_STL@@YAPAVControlVectorPair2D@@PAV2@00ABUrandom_access_iterator_tag@1@PAH@Z
?__copy@_STL@@YAPAVControlVectorPair2D@@PBV2@0PAV2@ABUrandom_access_iterator_tag@1@PAH@Z
?__copy@_STL@@YAPAVCoordinateData2D@@PAV2@00ABUrandom_access_iterator_tag@1@PAH@Z
?__copy@_STL@@YAPAVCoordinateData2D@@PBV2@0PAV2@ABUrandom_access_iterator_tag@1@PAH@Z
?__copy_aux@_STL@@YAPAVControlVectorPair2D@@PBV2@0PAV2@ABU__true_type@1@@Z
?__copy_aux@_STL@@YAPAVCoordinateData2D@@PBV2@0PAV2@ABU__true_type@1@@Z
?__copy_backward@_STL@@YAPAVControlVectorPair2D@@PAV2@00ABUrandom_access_iterator_tag@1@PAH@Z
?__copy_backward@_STL@@YAPAVCoordinateData2D@@PAV2@00ABUrandom_access_iterator_tag@1@PAH@Z
?__copy_backward_ptrs@_STL@@YAPAVControlVectorPair2D@@PAV2@00ABU__false_type@1@@Z
?__copy_backward_ptrs@_STL@@YAPAVCoordinateData2D@@PAV2@00ABU__false_type@1@@Z
?__copy_ptrs@_STL@@YAPAVCoordinateData2D@@PAV2@00ABU__false_type@1@@Z
?__destroy@_STL@@YAXPAVControlVectorPair2D@@00@Z
?__destroy@_STL@@YAXPAVCoordinateData2D@@00@Z
?__destroy_aux@_STL@@YAXPAVControlVectorPair2D@@0ABU__false_type@1@@Z
?__destroy_aux@_STL@@YAXPAVCoordinateData2D@@0ABU__false_type@1@@Z
?__distance@_STL@@YAHABQBVControlVectorPair2D@@0ABUrandom_access_iterator_tag@1@@Z
?__distance@_STL@@YAHABQBVCoordinateData2D@@0ABUrandom_access_iterator_tag@1@@Z
?__uninitialized_copy@_STL@@YAPAVControlVectorPair2D@@PAV2@00ABU__false_type@1@@Z
?__uninitialized_copy@_STL@@YAPAVControlVectorPair2D@@PBV2@0PAV2@ABU__false_type@1@@Z
?__uninitialized_copy@_STL@@YAPAVCoordinateData2D@@PAV2@00ABU__false_type@1@@Z
?__uninitialized_copy@_STL@@YAPAVCoordinateData2D@@PBV2@0PAV2@ABU__false_type@1@@Z
?__uninitialized_fill_n@_STL@@YAPAVControlVectorPair2D@@PAV2@IABV2@ABU__false_type@1@@Z
?__uninitialized_fill_n@_STL@@YAPAVCoordinateData2D@@PAV2@IABV2@ABU__false_type@1@@Z
?advance@_STL@@YAXAAPBVControlVectorPair2D@@I@Z
?advance@_STL@@YAXAAPBVCoordinateData2D@@I@Z
?allocate@?$allocator@VControlVectorPair2D@@@_STL@@QBEPAVControlVectorPair2D@@IPBX@Z
?allocate@?$allocator@VCoordinateData2D@@@_STL@@QBEPAVCoordinateData2D@@IPBX@Z
?begin@?$vector@VControlVectorPair2D@@V?$allocator@VControlVectorPair2D@@@_STL@@@_STL@@QAEPAVControlVectorPair2D@@XZ
?begin@?$vector@VControlVectorPair2D@@V?$allocator@VControlVectorPair2D@@@_STL@@@_STL@@QBEPBVControlVectorPair2D@@XZ
?begin@?$vector@VCoordinateData2D@@V?$allocator@VCoordinateData2D@@@_STL@@@_STL@@QAEPAVCoordinateData2D@@XZ
?begin@?$vector@VCoordinateData2D@@V?$allocator@VCoordinateData2D@@@_STL@@@_STL@@QBEPBVCoordinateData2D@@XZ
?capacity@?$vector@VControlVectorPair2D@@V?$allocator@VControlVectorPair2D@@@_STL@@@_STL@@QBEIXZ
?copy@_STL@@YAPAVControlVectorPair2D@@PBV2@0PAV2@@Z
?copy@_STL@@YAPAVCoordinateData2D@@PBV2@0PAV2@@Z
?count@CoordinateDataArray2D@@QBEKXZ
?deallocate@?$allocator@VControlVectorPair2D@@@_STL@@QBEXPAVControlVectorPair2D@@I@Z
?deallocate@?$allocator@VCoordinateData2D@@@_STL@@QBEXPAVCoordinateData2D@@I@Z
?distance@_STL@@YAHABQBVControlVectorPair2D@@0@Z
?distance@_STL@@YAHABQBVCoordinateData2D@@0@Z
?distance_type@_STL@@YAPAHPBVControlVectorPair2D@@@Z
?distance_type@_STL@@YAPAHPBVCoordinateData2D@@@Z
?end@?$vector@VControlVectorPair2D@@V?$allocator@VControlVectorPair2D@@@_STL@@@_STL@@QBEPBVControlVectorPair2D@@XZ
?end@?$vector@VCoordinateData2D@@V?$allocator@VCoordinateData2D@@@_STL@@@_STL@@QAEPAVCoordinateData2D@@XZ
?end@?$vector@VCoordinateData2D@@V?$allocator@VCoordinateData2D@@@_STL@@@_STL@@QBEPBVCoordinateData2D@@XZ
?equal@_STL@@YA_NPBVControlVectorPair2D@@00@Z
?equal@_STL@@YA_NPBVCoordinateData2D@@00@Z
?erase@?$vector@VControlVectorPair2D@@V?$allocator@VControlVectorPair2D@@@_STL@@@_STL@@QAEPAVControlVectorPair2D@@PAV3@0@Z
?fill@_STL@@YAXPAVControlVectorPair2D@@0ABV2@@Z
?fill@_STL@@YAXPAVCoordinateData2D@@0ABV2@@Z
?getCoordinate@CoordinateData2D@@QBEABVB2DPoint@basegfx@@XZ
?getCoordinate@CoordinateDataArray2D@@QBEABVB2DPoint@basegfx@@K@Z
?getVectorA@ControlVectorArray2D@@QBEABVB2DVector@basegfx@@K@Z
?getVectorA@ControlVectorPair2D@@QBEABVB2DVector@basegfx@@XZ
?getVectorB@ControlVectorArray2D@@QBEABVB2DVector@basegfx@@K@Z
?getVectorB@ControlVectorPair2D@@QBEABVB2DVector@basegfx@@XZ
?get_allocator@?$vector@VControlVectorPair2D@@V?$allocator@VControlVectorPair2D@@@_STL@@@_STL@@QBE?AV?$allocator@VControlVectorPair2D@@@2@XZ
?get_allocator@?$vector@VCoordinateData2D@@V?$allocator@VCoordinateData2D@@@_STL@@@_STL@@QBE?AV?$allocator@VCoordinateData2D@@@2@XZ
?insert@?$vector@VControlVectorPair2D@@V?$allocator@VControlVectorPair2D@@@_STL@@@_STL@@QAEXPAVControlVectorPair2D@@IABV3@@Z
?insert@?$vector@VControlVectorPair2D@@V?$allocator@VControlVectorPair2D@@@_STL@@@_STL@@QAEXPAVControlVectorPair2D@@PBV3@1@Z
?insert@?$vector@VCoordinateData2D@@V?$allocator@VCoordinateData2D@@@_STL@@@_STL@@QAEXPAVCoordinateData2D@@IABV3@@Z
?insert@?$vector@VCoordinateData2D@@V?$allocator@VCoordinateData2D@@@_STL@@@_STL@@QAEXPAVCoordinateData2D@@PBV3@1@Z
?insert@CoordinateDataArray2D@@QAEXKABVCoordinateData2D@@K@Z
?isEqual@ControlVectorArray2D@@QBEEABV1@@Z
?isEqual@CoordinateDataArray2D@@QBEEABV1@@Z
?isUsed@ControlVectorArray2D@@QBEEXZ
?iterator_category@_STL@@YA?AUrandom_access_iterator_tag@1@PBVControlVectorPair2D@@@Z
?iterator_category@_STL@@YA?AUrandom_access_iterator_tag@1@PBVCoordinateData2D@@@Z
?max@_STL@@YAABIABI0@Z
?pop_back@?$vector@VCoordinateData2D@@V?$allocator@VCoordinateData2D@@@_STL@@@_STL@@QAEXXZ
?remove@CoordinateDataArray2D@@QAEXKK@Z
?setCoordinate@CoordinateData2D@@QAEXABVB2DPoint@basegfx@@@Z
?setVectorA@ControlVectorPair2D@@QAEXABVB2DVector@basegfx@@@Z
?setVectorB@ControlVectorPair2D@@QAEXABVB2DVector@basegfx@@@Z
?size@?$vector@VControlVectorPair2D@@V?$allocator@VControlVectorPair2D@@@_STL@@@_STL@@QBEIXZ
?size@?$vector@VCoordinateData2D@@V?$allocator@VCoordinateData2D@@@_STL@@@_STL@@QBEIXZ
?transform@CoordinateData2D@@QAEXABVB2DHomMatrix@basegfx@@@Z
?transform@CoordinateDataArray2D@@QAEXABVB2DHomMatrix@basegfx@@@Z
?uninitialized_fill_n@_STL@@YAPAVControlVectorPair2D@@PAV2@IABV2@@Z
?uninitialized_fill_n@_STL@@YAPAVCoordinateData2D@@PAV2@IABV2@@Z
?value_type@_STL@@YAPAVControlVectorPair2D@@PBV2@@Z
?value_type@_STL@@YAPAVCoordinateData2D@@PBV2@@Z
??0B2DPoint@basegfx@@QAE@ABVB2DTuple@1@@Z
??0B2DRange@basegfx@@QAE@XZ
??0BasicRange@basegfx@@QAE@ABV01@@Z
??0BasicRange@basegfx@@QAE@XZ
??A?$vector@NV?$allocator@N@_STL@@@_STL@@QBEABNI@Z
??Dbasegfx@@YA?AVB2DTuple@0@ABV10@N@Z
??XB2DTuple@basegfx@@QAEAAV01@N@Z
?begin@?$vector@NV?$allocator@N@_STL@@@_STL@@QBEPBNXZ
?getMaximum@BasicRange@basegfx@@QBENXZ
?getMinimum@BasicRange@basegfx@@QBENXZ
?size@?$vector@NV?$allocator@N@_STL@@@_STL@@QBEIXZ
_real@3fb999999999999a
_real@41f0000000000000
??0?$_STLP_alloc_proxy@PAVB2DPolygon@basegfx@@V12@V?$allocator@VB2DPolygon@basegfx@@@_STL@@@_STL@@QAE@ABV?$allocator@VB2DPolygon@basegfx@@@1@PAVB2DPolygon@basegfx@@@Z
??0?$_Vector_base@VB2DPolygon@basegfx@@V?$allocator@VB2DPolygon@basegfx@@@_STL@@@_STL@@QAE@ABV?$allocator@VB2DPolygon@basegfx@@@1@@Z
??0?$allocator@VB2DPolygon@basegfx@@@_STL@@QAE@ABV01@@Z
??0?$allocator@VB2DPolygon@basegfx@@@_STL@@QAE@XZ
??0?$vector@VB2DPolygon@basegfx@@V?$allocator@VB2DPolygon@basegfx@@@_STL@@@_STL@@QAE@ABV?$allocator@VB2DPolygon@basegfx@@@1@@Z
??1?$_STLP_alloc_proxy@PAVB2DPolygon@basegfx@@V12@V?$allocator@VB2DPolygon@basegfx@@@_STL@@@_STL@@QAE@XZ
??1?$_Vector_base@VB2DPolygon@basegfx@@V?$allocator@VB2DPolygon@basegfx@@@_STL@@@_STL@@QAE@XZ
??1?$allocator@VB2DPolygon@basegfx@@@_STL@@QAE@XZ
??9_STL@@YA_NABV?$vector@VB2DPolygon@basegfx@@V?$allocator@VB2DPolygon@basegfx@@@_STL@@@0@0@Z
??A?$vector@VB2DPolygon@basegfx@@V?$allocator@VB2DPolygon@basegfx@@@_STL@@@_STL@@QAEAAVB2DPolygon@basegfx@@I@Z
??A?$vector@VB2DPolygon@basegfx@@V?$allocator@VB2DPolygon@basegfx@@@_STL@@@_STL@@QBEABVB2DPolygon@basegfx@@I@Z
??_GB2DPolygon@basegfx@@QAEPAXI@Z
?_Construct@_STL@@YAXPAVB2DPolygon@basegfx@@ABV23@@Z
?_Destroy@_STL@@YAXPAVB2DPolygon@basegfx@@0@Z
?_Destroy@_STL@@YAXPAVB2DPolygon@basegfx@@@Z
?_Is_POD@_STL@@YA?AU?$_IsPOD@VB2DPolygon@basegfx@@@1@PAVB2DPolygon@basegfx@@@Z
?_M_set@?$vector@VB2DPolygon@basegfx@@V?$allocator@VB2DPolygon@basegfx@@@_STL@@@_STL@@IAEXPAVB2DPolygon@basegfx@@00@Z
?_Ret@?$_IsPOD@VB2DPolygon@basegfx@@@_STL@@SA?AU__false_type@2@XZ
?__copy@_STL@@YAPAVB2DPolygon@basegfx@@PAV23@00ABUrandom_access_iterator_tag@1@PAH@Z
?__copy@_STL@@YAPAVB2DPolygon@basegfx@@PBV23@0PAV23@ABUrandom_access_iterator_tag@1@PAH@Z
?__copy_backward@_STL@@YAPAVB2DPolygon@basegfx@@PAV23@00ABUrandom_access_iterator_tag@1@PAH@Z
?__copy_backward_ptrs@_STL@@YAPAVB2DPolygon@basegfx@@PAV23@00ABU__false_type@1@@Z
?__copy_ptrs@_STL@@YAPAVB2DPolygon@basegfx@@PAV23@00ABU__false_type@1@@Z
?__copy_ptrs@_STL@@YAPAVB2DPolygon@basegfx@@PBV23@0PAV23@ABU__false_type@1@@Z
?__destroy@_STL@@YAXPAVB2DPolygon@basegfx@@00@Z
?__destroy_aux@_STL@@YAXPAVB2DPolygon@basegfx@@0ABU__false_type@1@@Z
?__uninitialized_copy@_STL@@YAPAVB2DPolygon@basegfx@@PAV23@00ABU__false_type@1@@Z
?__uninitialized_copy@_STL@@YAPAVB2DPolygon@basegfx@@PBV23@0PAV23@ABU__false_type@1@@Z
?__uninitialized_fill_n@_STL@@YAPAVB2DPolygon@basegfx@@PAV23@IABV23@ABU__false_type@1@@Z
?allocate@?$allocator@VB2DPolygon@basegfx@@@_STL@@QBEPAVB2DPolygon@basegfx@@IPBX@Z
?begin@?$vector@VB2DPolygon@basegfx@@V?$allocator@VB2DPolygon@basegfx@@@_STL@@@_STL@@QAEPAVB2DPolygon@basegfx@@XZ
?begin@?$vector@VB2DPolygon@basegfx@@V?$allocator@VB2DPolygon@basegfx@@@_STL@@@_STL@@QBEPBVB2DPolygon@basegfx@@XZ
?capacity@?$vector@VB2DPolygon@basegfx@@V?$allocator@VB2DPolygon@basegfx@@@_STL@@@_STL@@QBEIXZ
?deallocate@?$allocator@VB2DPolygon@basegfx@@@_STL@@QBEXPAVB2DPolygon@basegfx@@I@Z
?distance_type@_STL@@YAPAHPBVB2DPolygon@basegfx@@@Z
?end@?$vector@VB2DPolygon@basegfx@@V?$allocator@VB2DPolygon@basegfx@@@_STL@@@_STL@@QAEPAVB2DPolygon@basegfx@@XZ
?end@?$vector@VB2DPolygon@basegfx@@V?$allocator@VB2DPolygon@basegfx@@@_STL@@@_STL@@QBEPBVB2DPolygon@basegfx@@XZ
?equal@_STL@@YA_NPBVB2DPolygon@basegfx@@00@Z
?fill@_STL@@YAXPAVB2DPolygon@basegfx@@0ABV23@@Z
?insert@?$vector@VB2DPolygon@basegfx@@V?$allocator@VB2DPolygon@basegfx@@@_STL@@@_STL@@QAEXPAVB2DPolygon@basegfx@@IABV34@@Z
?iterator_category@_STL@@YA?AUrandom_access_iterator_tag@1@PBVB2DPolygon@basegfx@@@Z
?size@?$vector@VB2DPolygon@basegfx@@V?$allocator@VB2DPolygon@basegfx@@@_STL@@@_STL@@QBEIXZ
?uninitialized_fill_n@_STL@@YAPAVB2DPolygon@basegfx@@PAV23@IABV23@@Z
?value_type@_STL@@YAPAVB2DPolygon@basegfx@@PBV23@@Z
??0?$_STLP_alloc_proxy@PAPAVB2DPolygonNode@basegfx@@PAV12@V?$allocator@PAVB2DPolygonNode@basegfx@@@_STL@@@_STL@@QAE@ABV?$allocator@PAVB2DPolygonNode@basegfx@@@1@PAPAVB2DPolygonNode@basegfx@@@Z
??0?$_Vector_base@PAVB2DPolygonNode@basegfx@@V?$allocator@PAVB2DPolygonNode@basegfx@@@_STL@@@_STL@@QAE@ABV?$allocator@PAVB2DPolygonNode@basegfx@@@1@@Z
??0?$allocator@PAVB2DPolygonNode@basegfx@@@_STL@@QAE@ABV01@@Z
??0?$allocator@PAVB2DPolygonNode@basegfx@@@_STL@@QAE@XZ
??0?$vector@PAVB2DPolygonNode@basegfx@@V?$allocator@PAVB2DPolygonNode@basegfx@@@_STL@@@_STL@@QAE@ABV?$allocator@PAVB2DPolygonNode@basegfx@@@1@@Z
??0B2DPolyPolygonCutter@basegfx@@QAE@XZ
??1?$_STLP_alloc_proxy@PAPAVB2DPolygonNode@basegfx@@PAV12@V?$allocator@PAVB2DPolygonNode@basegfx@@@_STL@@@_STL@@QAE@XZ
??1?$_Vector_base@PAVB2DPolygonNode@basegfx@@V?$allocator@PAVB2DPolygonNode@basegfx@@@_STL@@@_STL@@QAE@XZ
??1?$allocator@PAVB2DPolygonNode@basegfx@@@_STL@@QAE@XZ
??1?$vector@PAVB2DPolygonNode@basegfx@@V?$allocator@PAVB2DPolygonNode@basegfx@@@_STL@@@_STL@@QAE@XZ
?_Destroy@_STL@@YAXPAPAVB2DPolygonNode@basegfx@@0@Z
?__destroy@_STL@@YAXPAPAVB2DPolygonNode@basegfx@@00@Z
?__destroy_aux@_STL@@YAXPAPAVB2DPolygonNode@basegfx@@0ABU__true_type@1@@Z
?deallocate@?$allocator@PAVB2DPolygonNode@basegfx@@@_STL@@QBEXPAPAVB2DPolygonNode@basegfx@@I@Z
?expand@BasicRange@basegfx@@QAEXABV12@@Z
?value_type@_STL@@YAPAPAVB2DPolygonNode@basegfx@@PBQAV23@@Z
??0?$_STLP_alloc_proxy@PAPAVB2DSimpleCut@basegfx@@PAV12@V?$allocator@PAVB2DSimpleCut@basegfx@@@_STL@@@_STL@@QAE@ABV?$allocator@PAVB2DSimpleCut@basegfx@@@1@PAPAVB2DSimpleCut@basegfx@@@Z
??0?$allocator@PAVB2DSimpleCut@basegfx@@@_STL@@QAE@ABV01@@Z
??0?$allocator@PAVB2DSimpleCut@basegfx@@@_STL@@QAE@XZ
??0?$vector@PAVB2DSimpleCut@basegfx@@V?$allocator@PAVB2DSimpleCut@basegfx@@@_STL@@@_STL@@QAE@ABV?$allocator@PAVB2DSimpleCut@basegfx@@@1@@Z
??0B2DClipExtraPolygonInfo@basegfx@@QAE@XZ
??0B2DSimpleCut@basegfx@@QAE@PAVB2DPolygonNode@1@0EE@Z
??1?$_STLP_alloc_proxy@PAPAVB2DSimpleCut@basegfx@@PAV12@V?$allocator@PAVB2DSimpleCut@basegfx@@@_STL@@@_STL@@QAE@XZ
??1?$allocator@PAVB2DSimpleCut@basegfx@@@_STL@@QAE@XZ
??1?$vector@PAVB2DSimpleCut@basegfx@@V?$allocator@PAVB2DSimpleCut@basegfx@@@_STL@@@_STL@@QAE@XZ
??4BasicRange@basegfx@@QAEXABV01@@Z
??A?$vector@PAVB2DPolygonNode@basegfx@@V?$allocator@PAVB2DPolygonNode@basegfx@@@_STL@@@_STL@@QAEAAPAVB2DPolygonNode@basegfx@@I@Z
??A?$vector@PAVB2DSimpleCut@basegfx@@V?$allocator@PAVB2DSimpleCut@basegfx@@@_STL@@@_STL@@QAEAAPAVB2DSimpleCut@basegfx@@I@Z
??_GB2DPolygonNode@basegfx@@QAEPAXI@Z
?_Construct@_STL@@YAXPAPAVB2DPolygonNode@basegfx@@ABQAV23@@Z
?_Construct@_STL@@YAXPAPAVB2DSimpleCut@basegfx@@ABQAV23@@Z
?_Destroy@_STL@@YAXPAPAVB2DPolygonNode@basegfx@@@Z
?_Destroy@_STL@@YAXPAPAVB2DSimpleCut@basegfx@@0@Z
?_Destroy@_STL@@YAXPAPAVB2DSimpleCut@basegfx@@@Z
?_IsOKToMemCpy@_STL@@YA?AU?$_OKToMemCpy@PAVB2DSimpleCut@basegfx@@PAV12@@1@PAPAVB2DSimpleCut@basegfx@@0@Z
?_M_clear@?$vector@PAVB2DPolygonNode@basegfx@@V?$allocator@PAVB2DPolygonNode@basegfx@@@_STL@@@_STL@@IAEXXZ
?_M_clear@?$vector@PAVB2DSimpleCut@basegfx@@V?$allocator@PAVB2DSimpleCut@basegfx@@@_STL@@@_STL@@IAEXXZ
?_M_insert_dispatch@?$vector@PAVB2DSimpleCut@basegfx@@V?$allocator@PAVB2DSimpleCut@basegfx@@@_STL@@@_STL@@QAEXPAPAVB2DSimpleCut@basegfx@@00ABU__false_type@2@@Z
?_M_set@?$vector@PAVB2DPolygonNode@basegfx@@V?$allocator@PAVB2DPolygonNode@basegfx@@@_STL@@@_STL@@IAEXPAPAVB2DPolygonNode@basegfx@@00@Z
?_M_set@?$vector@PAVB2DSimpleCut@basegfx@@V?$allocator@PAVB2DSimpleCut@basegfx@@@_STL@@@_STL@@IAEXPAPAVB2DSimpleCut@basegfx@@00@Z
?_Ret@?$_BothPtrType@PAPAVB2DSimpleCut@basegfx@@PAPAV12@@_STL@@SA?AU__true_type@2@XZ
?_Ret@?$_OKToMemCpy@PAVB2DSimpleCut@basegfx@@PAV12@@_STL@@SA?AU__true_type@2@XZ
?__advance@_STL@@YAXAAPAPAVB2DSimpleCut@basegfx@@IABUrandom_access_iterator_tag@1@@Z
?__copy_aux@_STL@@YAPAPAVB2DSimpleCut@basegfx@@PAPAV23@00ABU__true_type@1@@Z
?__copy_backward_ptrs@_STL@@YAPAPAVB2DSimpleCut@basegfx@@PAPAV23@00ABU__true_type@1@@Z
?__copy_ptrs@_STL@@YAPAPAVB2DPolygonNode@basegfx@@PAPAV23@00ABU__true_type@1@@Z
?__copy_ptrs@_STL@@YAPAPAVB2DSimpleCut@basegfx@@PAPAV23@00ABU__true_type@1@@Z
?__copy_trivial_backward@_STL@@YAPAXPBX0PAX@Z
?__destroy@_STL@@YAXPAPAVB2DSimpleCut@basegfx@@00@Z
?__destroy_aux@_STL@@YAXPAPAVB2DSimpleCut@basegfx@@0ABU__true_type@1@@Z
?__distance@_STL@@YAHABQAPAVB2DSimpleCut@basegfx@@0ABUrandom_access_iterator_tag@1@@Z
?__uninitialized_copy@_STL@@YAPAPAVB2DSimpleCut@basegfx@@PAPAV23@00ABU__true_type@1@@Z
?advance@_STL@@YAXAAPAPAVB2DSimpleCut@basegfx@@I@Z
?allocate@?$allocator@PAVB2DPolygonNode@basegfx@@@_STL@@QBEPAPAVB2DPolygonNode@basegfx@@IPBX@Z
?allocate@?$allocator@PAVB2DSimpleCut@basegfx@@@_STL@@QBEPAPAVB2DSimpleCut@basegfx@@IPBX@Z
?begin@?$vector@PAVB2DPolygonNode@basegfx@@V?$allocator@PAVB2DPolygonNode@basegfx@@@_STL@@@_STL@@QAEPAPAVB2DPolygonNode@basegfx@@XZ
?begin@?$vector@PAVB2DSimpleCut@basegfx@@V?$allocator@PAVB2DSimpleCut@basegfx@@@_STL@@@_STL@@QAEPAPAVB2DSimpleCut@basegfx@@XZ
?copy@_STL@@YAPAPAVB2DSimpleCut@basegfx@@PAPAV23@00@Z
?deallocate@?$allocator@PAVB2DSimpleCut@basegfx@@@_STL@@QBEXPAPAVB2DSimpleCut@basegfx@@I@Z
?distance@_STL@@YAHABQAPAVB2DSimpleCut@basegfx@@0@Z
?doRangesInclude@B2DPolyPolygonCutter@basegfx@@ABEEABVB2DRange@2@0@Z
?doRangesIntersect@B2DPolyPolygonCutter@basegfx@@ABEEABVB2DRange@2@0@Z
?end@?$vector@PAVB2DPolygonNode@basegfx@@V?$allocator@PAVB2DPolygonNode@basegfx@@@_STL@@@_STL@@QAEPAPAVB2DPolygonNode@basegfx@@XZ
?end@?$vector@PAVB2DSimpleCut@basegfx@@V?$allocator@PAVB2DSimpleCut@basegfx@@@_STL@@@_STL@@QAEPAPAVB2DSimpleCut@basegfx@@XZ
?erase@?$vector@PAVB2DPolygonNode@basegfx@@V?$allocator@PAVB2DPolygonNode@basegfx@@@_STL@@@_STL@@QAEPAPAVB2DPolygonNode@basegfx@@PAPAV34@0@Z
?erase@?$vector@PAVB2DSimpleCut@basegfx@@V?$allocator@PAVB2DSimpleCut@basegfx@@@_STL@@@_STL@@QAEPAPAVB2DSimpleCut@basegfx@@PAPAV34@0@Z
?fill_n@_STL@@YAPAPAVB2DPolygonNode@basegfx@@PAPAV23@IABQAV23@@Z
?fill_n@_STL@@YAPAPAVB2DSimpleCut@basegfx@@PAPAV23@IABQAV23@@Z
?getDepth@B2DClipExtraPolygonInfo@basegfx@@QBEJXZ
?getLeft@B2DSimpleCut@basegfx@@QBEPAVB2DPolygonNode@2@XZ
?getNext@B2DPolygonNode@basegfx@@QBEPAV12@XZ
?getOrientation@B2DClipExtraPolygonInfo@basegfx@@QBEEXZ
?getPosition@B2DPolygonNode@basegfx@@QBEABVB2DPoint@2@XZ
?getPrevious@B2DPolygonNode@basegfx@@QBEPAV12@XZ
?getRange@B2DClipExtraPolygonInfo@basegfx@@QBEABVB2DRange@2@XZ
?getRight@B2DSimpleCut@basegfx@@QBEPAVB2DPolygonNode@2@XZ
?insert@?$vector@PAVB2DSimpleCut@basegfx@@V?$allocator@PAVB2DSimpleCut@basegfx@@@_STL@@@_STL@@QAEXPAPAVB2DSimpleCut@basegfx@@00@Z
?isInside@BasicRange@basegfx@@QBEEABV12@@Z
?isNextSamePos@B2DPolyPolygonCutter@basegfx@@AAEEPAVB2DPolygonNode@2@0@Z
?isPrevSamePos@B2DPolyPolygonCutter@basegfx@@AAEEPAVB2DPolygonNode@2@0@Z
?isSameCut@B2DSimpleCut@basegfx@@QBEEPAVB2DPolygonNode@2@0@Z
?isSamePos@B2DPolyPolygonCutter@basegfx@@AAEEABVB2DPoint@2@0@Z
?iterator_category@_STL@@YA?AUrandom_access_iterator_tag@1@PBQAVB2DSimpleCut@basegfx@@@Z
?overlaps@BasicRange@basegfx@@QBEEABV12@@Z
?size@?$vector@PAVB2DPolygonNode@basegfx@@V?$allocator@PAVB2DPolygonNode@basegfx@@@_STL@@@_STL@@QBEIXZ
?size@?$vector@PAVB2DSimpleCut@basegfx@@V?$allocator@PAVB2DSimpleCut@basegfx@@@_STL@@@_STL@@QBEIXZ
?swapPreviousNext@B2DPolygonNode@basegfx@@QAEXXZ
?value_type@_STL@@YAPAPAVB2DSimpleCut@basegfx@@PBQAV23@@Z
??0?$_STLP_alloc_proxy@PAVCoordinateData3D@@V1@V?$allocator@VCoordinateData3D@@@_STL@@@_STL@@QAE@ABV?$allocator@VCoordinateData3D@@@1@PAVCoordinateData3D@@@Z
??0?$_Vector_base@VCoordinateData3D@@V?$allocator@VCoordinateData3D@@@_STL@@@_STL@@QAE@ABV?$allocator@VCoordinateData3D@@@1@@Z
??0?$allocator@VCoordinateData3D@@@_STL@@QAE@ABV01@@Z
??0?$allocator@VCoordinateData3D@@@_STL@@QAE@XZ
??0?$vector@VCoordinateData3D@@V?$allocator@VCoordinateData3D@@@_STL@@@_STL@@QAE@PBVCoordinateData3D@@0@Z
??0B3DPoint@basegfx@@QAE@N@Z
??0CoordinateData3D@@QAE@ABVB3DPoint@basegfx@@@Z
??0CoordinateData3D@@QAE@XZ
??0CoordinateDataArray3D@@QAE@ABV0@@Z
??0CoordinateDataArray3D@@QAE@K@Z
??1?$_STLP_alloc_proxy@PAVCoordinateData3D@@V1@V?$allocator@VCoordinateData3D@@@_STL@@@_STL@@QAE@XZ
??1?$_Vector_base@VCoordinateData3D@@V?$allocator@VCoordinateData3D@@@_STL@@@_STL@@QAE@XZ
??1?$allocator@VCoordinateData3D@@@_STL@@QAE@XZ
??1B3DPoint@basegfx@@QAE@XZ
??1CoordinateData3D@@QAE@XZ
??1CoordinateDataArray3D@@QAE@XZ
??4B3DPoint@basegfx@@QAEAAV01@ABV01@@Z
??4CoordinateData3D@@QAEAAV0@ABV0@@Z
??8B3DTuple@basegfx@@QBEEABV01@@Z
??8CoordinateData3D@@QBEEABV0@@Z
??9B3DTuple@basegfx@@QBEEABV01@@Z
??A?$vector@VCoordinateData3D@@V?$allocator@VCoordinateData3D@@@_STL@@@_STL@@QAEAAVCoordinateData3D@@I@Z
??A?$vector@VCoordinateData3D@@V?$allocator@VCoordinateData3D@@@_STL@@@_STL@@QBEABVCoordinateData3D@@I@Z
??_GCoordinateData3D@@QAEPAXI@Z
?_Construct@_STL@@YAXPAVCoordinateData3D@@ABV2@@Z
?_Destroy@_STL@@YAXPAVCoordinateData3D@@0@Z
?_Destroy@_STL@@YAXPAVCoordinateData3D@@@Z
?_IsOKToMemCpy@_STL@@YA?AU?$_OKToMemCpy@VCoordinateData3D@@V1@@1@PAVCoordinateData3D@@0@Z
?_Is_POD@_STL@@YA?AU?$_IsPOD@VCoordinateData3D@@@1@PAVCoordinateData3D@@@Z
?_M_initialize_aux@?$vector@VCoordinateData3D@@V?$allocator@VCoordinateData3D@@@_STL@@@_STL@@QAEXPBVCoordinateData3D@@0ABU__false_type@2@@Z
?_M_insert_dispatch@?$vector@VCoordinateData3D@@V?$allocator@VCoordinateData3D@@@_STL@@@_STL@@QAEXPAVCoordinateData3D@@PBV3@1ABU__false_type@2@@Z
?_M_set@?$vector@VCoordinateData3D@@V?$allocator@VCoordinateData3D@@@_STL@@@_STL@@IAEXPAVCoordinateData3D@@00@Z
?_Ret@?$_BothPtrType@PBVCoordinateData3D@@PAV1@@_STL@@SA?AU__true_type@2@XZ
?_Ret@?$_IsPOD@VCoordinateData3D@@@_STL@@SA?AU__false_type@2@XZ
?_Ret@?$_OKToMemCpy@VCoordinateData3D@@V1@@_STL@@SA?AU__false_type@2@XZ
?__advance@_STL@@YAXAAPBVCoordinateData3D@@IABUrandom_access_iterator_tag@1@@Z
?__copy@_STL@@YAPAVCoordinateData3D@@PAV2@00ABUrandom_access_iterator_tag@1@PAH@Z
?__copy@_STL@@YAPAVCoordinateData3D@@PBV2@0PAV2@ABUrandom_access_iterator_tag@1@PAH@Z
?__copy_aux@_STL@@YAPAVCoordinateData3D@@PBV2@0PAV2@ABU__true_type@1@@Z
?__copy_backward@_STL@@YAPAVCoordinateData3D@@PAV2@00ABUrandom_access_iterator_tag@1@PAH@Z
?__copy_backward_ptrs@_STL@@YAPAVCoordinateData3D@@PAV2@00ABU__false_type@1@@Z
?__copy_ptrs@_STL@@YAPAVCoordinateData3D@@PAV2@00ABU__false_type@1@@Z
?__destroy@_STL@@YAXPAVCoordinateData3D@@00@Z
?__destroy_aux@_STL@@YAXPAVCoordinateData3D@@0ABU__false_type@1@@Z
?__distance@_STL@@YAHABQBVCoordinateData3D@@0ABUrandom_access_iterator_tag@1@@Z
?__uninitialized_copy@_STL@@YAPAVCoordinateData3D@@PAV2@00ABU__false_type@1@@Z
?__uninitialized_copy@_STL@@YAPAVCoordinateData3D@@PBV2@0PAV2@ABU__false_type@1@@Z
?__uninitialized_fill_n@_STL@@YAPAVCoordinateData3D@@PAV2@IABV2@ABU__false_type@1@@Z
?advance@_STL@@YAXAAPBVCoordinateData3D@@I@Z
?allocate@?$allocator@VCoordinateData3D@@@_STL@@QBEPAVCoordinateData3D@@IPBX@Z
?begin@?$vector@VCoordinateData3D@@V?$allocator@VCoordinateData3D@@@_STL@@@_STL@@QAEPAVCoordinateData3D@@XZ
?begin@?$vector@VCoordinateData3D@@V?$allocator@VCoordinateData3D@@@_STL@@@_STL@@QBEPBVCoordinateData3D@@XZ
?copy@_STL@@YAPAVCoordinateData3D@@PBV2@0PAV2@@Z
?count@CoordinateDataArray3D@@QBEKXZ
?deallocate@?$allocator@VCoordinateData3D@@@_STL@@QBEXPAVCoordinateData3D@@I@Z
?distance@_STL@@YAHABQBVCoordinateData3D@@0@Z
?distance_type@_STL@@YAPAHPBVCoordinateData3D@@@Z
?end@?$vector@VCoordinateData3D@@V?$allocator@VCoordinateData3D@@@_STL@@@_STL@@QAEPAVCoordinateData3D@@XZ
?end@?$vector@VCoordinateData3D@@V?$allocator@VCoordinateData3D@@@_STL@@@_STL@@QBEPBVCoordinateData3D@@XZ
?equal@_STL@@YA_NPBVCoordinateData3D@@00@Z
?fill@_STL@@YAXPAVCoordinateData3D@@0ABV2@@Z
?getCoordinate@CoordinateData3D@@QBEABVB3DPoint@basegfx@@XZ
?getCoordinate@CoordinateDataArray3D@@QBEABVB3DPoint@basegfx@@K@Z
?get_allocator@?$vector@VCoordinateData3D@@V?$allocator@VCoordinateData3D@@@_STL@@@_STL@@QBE?AV?$allocator@VCoordinateData3D@@@2@XZ
?insert@?$vector@VCoordinateData3D@@V?$allocator@VCoordinateData3D@@@_STL@@@_STL@@QAEXPAVCoordinateData3D@@IABV3@@Z
?insert@?$vector@VCoordinateData3D@@V?$allocator@VCoordinateData3D@@@_STL@@@_STL@@QAEXPAVCoordinateData3D@@PBV3@1@Z
?insert@CoordinateDataArray3D@@QAEXKABVCoordinateData3D@@K@Z
?isEqual@CoordinateDataArray3D@@QBEEABV1@@Z
?iterator_category@_STL@@YA?AUrandom_access_iterator_tag@1@PBVCoordinateData3D@@@Z
?pop_back@?$vector@VCoordinateData3D@@V?$allocator@VCoordinateData3D@@@_STL@@@_STL@@QAEXXZ
?remove@CoordinateDataArray3D@@QAEXKK@Z
?setCoordinate@CoordinateData3D@@QAEXABVB3DPoint@basegfx@@@Z
?size@?$vector@VCoordinateData3D@@V?$allocator@VCoordinateData3D@@@_STL@@@_STL@@QBEIXZ
?transform@CoordinateData3D@@QAEXABVB3DHomMatrix@basegfx@@@Z
?transform@CoordinateDataArray3D@@QAEXABVB3DHomMatrix@basegfx@@@Z
?value_type@_STL@@YAPAVCoordinateData3D@@PBV2@@Z
??0B3DPoint@basegfx@@QAE@ABVB3DTuple@1@@Z
??0B3DVector@basegfx@@QAE@ABVB3DTuple@1@@Z
??Hbasegfx@@YA?AVB3DTuple@0@ABV10@0@Z
??XB3DTuple@basegfx@@QAEAAV01@N@Z
??0?$_STLP_alloc_proxy@PAVB3DPolygon@basegfx@@V12@V?$allocator@VB3DPolygon@basegfx@@@_STL@@@_STL@@QAE@ABV?$allocator@VB3DPolygon@basegfx@@@1@PAVB3DPolygon@basegfx@@@Z
??0?$_Vector_base@VB3DPolygon@basegfx@@V?$allocator@VB3DPolygon@basegfx@@@_STL@@@_STL@@QAE@ABV?$allocator@VB3DPolygon@basegfx@@@1@@Z
??0?$allocator@VB3DPolygon@basegfx@@@_STL@@QAE@ABV01@@Z
??0?$allocator@VB3DPolygon@basegfx@@@_STL@@QAE@XZ
??0?$vector@VB3DPolygon@basegfx@@V?$allocator@VB3DPolygon@basegfx@@@_STL@@@_STL@@QAE@ABV?$allocator@VB3DPolygon@basegfx@@@1@@Z
??1?$_STLP_alloc_proxy@PAVB3DPolygon@basegfx@@V12@V?$allocator@VB3DPolygon@basegfx@@@_STL@@@_STL@@QAE@XZ
??1?$_Vector_base@VB3DPolygon@basegfx@@V?$allocator@VB3DPolygon@basegfx@@@_STL@@@_STL@@QAE@XZ
??1?$allocator@VB3DPolygon@basegfx@@@_STL@@QAE@XZ
??9_STL@@YA_NABV?$vector@VB3DPolygon@basegfx@@V?$allocator@VB3DPolygon@basegfx@@@_STL@@@0@0@Z
??A?$vector@VB3DPolygon@basegfx@@V?$allocator@VB3DPolygon@basegfx@@@_STL@@@_STL@@QAEAAVB3DPolygon@basegfx@@I@Z
??A?$vector@VB3DPolygon@basegfx@@V?$allocator@VB3DPolygon@basegfx@@@_STL@@@_STL@@QBEABVB3DPolygon@basegfx@@I@Z
??_GB3DPolygon@basegfx@@QAEPAXI@Z
?_Construct@_STL@@YAXPAVB3DPolygon@basegfx@@ABV23@@Z
?_Destroy@_STL@@YAXPAVB3DPolygon@basegfx@@0@Z
?_Destroy@_STL@@YAXPAVB3DPolygon@basegfx@@@Z
?_Is_POD@_STL@@YA?AU?$_IsPOD@VB3DPolygon@basegfx@@@1@PAVB3DPolygon@basegfx@@@Z
?_M_set@?$vector@VB3DPolygon@basegfx@@V?$allocator@VB3DPolygon@basegfx@@@_STL@@@_STL@@IAEXPAVB3DPolygon@basegfx@@00@Z
?_Ret@?$_IsPOD@VB3DPolygon@basegfx@@@_STL@@SA?AU__false_type@2@XZ
?__copy@_STL@@YAPAVB3DPolygon@basegfx@@PAV23@00ABUrandom_access_iterator_tag@1@PAH@Z
?__copy@_STL@@YAPAVB3DPolygon@basegfx@@PBV23@0PAV23@ABUrandom_access_iterator_tag@1@PAH@Z
?__copy_backward@_STL@@YAPAVB3DPolygon@basegfx@@PAV23@00ABUrandom_access_iterator_tag@1@PAH@Z
?__copy_backward_ptrs@_STL@@YAPAVB3DPolygon@basegfx@@PAV23@00ABU__false_type@1@@Z
?__copy_ptrs@_STL@@YAPAVB3DPolygon@basegfx@@PAV23@00ABU__false_type@1@@Z
?__copy_ptrs@_STL@@YAPAVB3DPolygon@basegfx@@PBV23@0PAV23@ABU__false_type@1@@Z
?__destroy@_STL@@YAXPAVB3DPolygon@basegfx@@00@Z
?__destroy_aux@_STL@@YAXPAVB3DPolygon@basegfx@@0ABU__false_type@1@@Z
?__uninitialized_copy@_STL@@YAPAVB3DPolygon@basegfx@@PAV23@00ABU__false_type@1@@Z
?__uninitialized_copy@_STL@@YAPAVB3DPolygon@basegfx@@PBV23@0PAV23@ABU__false_type@1@@Z
?__uninitialized_fill_n@_STL@@YAPAVB3DPolygon@basegfx@@PAV23@IABV23@ABU__false_type@1@@Z
?allocate@?$allocator@VB3DPolygon@basegfx@@@_STL@@QBEPAVB3DPolygon@basegfx@@IPBX@Z
?begin@?$vector@VB3DPolygon@basegfx@@V?$allocator@VB3DPolygon@basegfx@@@_STL@@@_STL@@QAEPAVB3DPolygon@basegfx@@XZ
?begin@?$vector@VB3DPolygon@basegfx@@V?$allocator@VB3DPolygon@basegfx@@@_STL@@@_STL@@QBEPBVB3DPolygon@basegfx@@XZ
?capacity@?$vector@VB3DPolygon@basegfx@@V?$allocator@VB3DPolygon@basegfx@@@_STL@@@_STL@@QBEIXZ
?deallocate@?$allocator@VB3DPolygon@basegfx@@@_STL@@QBEXPAVB3DPolygon@basegfx@@I@Z
?distance_type@_STL@@YAPAHPBVB3DPolygon@basegfx@@@Z
?end@?$vector@VB3DPolygon@basegfx@@V?$allocator@VB3DPolygon@basegfx@@@_STL@@@_STL@@QAEPAVB3DPolygon@basegfx@@XZ
?end@?$vector@VB3DPolygon@basegfx@@V?$allocator@VB3DPolygon@basegfx@@@_STL@@@_STL@@QBEPBVB3DPolygon@basegfx@@XZ
?equal@_STL@@YA_NPBVB3DPolygon@basegfx@@00@Z
?fill@_STL@@YAXPAVB3DPolygon@basegfx@@0ABV23@@Z
?insert@?$vector@VB3DPolygon@basegfx@@V?$allocator@VB3DPolygon@basegfx@@@_STL@@@_STL@@QAEXPAVB3DPolygon@basegfx@@IABV34@@Z
?iterator_category@_STL@@YA?AUrandom_access_iterator_tag@1@PBVB3DPolygon@basegfx@@@Z
?size@?$vector@VB3DPolygon@basegfx@@V?$allocator@VB3DPolygon@basegfx@@@_STL@@@_STL@@QBEIXZ
?uninitialized_fill_n@_STL@@YAPAVB3DPolygon@basegfx@@PAV23@IABV23@@Z
?value_type@_STL@@YAPAVB3DPolygon@basegfx@@PBV23@@Z
?equal@fTools@basegfx@@SAEABN00@Z
?equalZero@fTools@basegfx@@SAEABN0@Z
?getEmptyTuple@B2DTuple@basegfx@@SAABV12@XZ
_real@4024000000000000
??0B3DVector@basegfx@@QAE@ABV01@@Z
?interpolate@basegfx@@YA?AVB3DTuple@1@ABV21@0N@Z
?expand@?$BasicRange@NUDoubleTraits@basegfx@@@basegfx@@QAEXN@Z
??4B2IPoint@basegfx@@QAEAAV01@ABVB2ITuple@1@@Z
??XB2IPoint@basegfx@@QAEAAV01@ABVB2DHomMatrix@1@@Z
??XB3IPoint@basegfx@@QAEAAV01@ABVB3DHomMatrix@1@@Z
?getContinuityInPoint@tools@basegfx@@YA?AW4B2VectorContinuity@2@ABVB2DPolygon@2@K@Z
?getOrientation@tools@basegfx@@YA?AW4B2VectorOrientation@2@ABVB2DPolygon@2@@Z
?getPointOrientation@tools@basegfx@@YA?AW4B2VectorOrientation@2@ABVB2DPolygon@2@K@Z
?maEmptyTuple@B2ITuple@basegfx@@0V12@A
?maEmptyTuple@B3ITuple@basegfx@@0V12@A
?maEmptyTuple@B2I64Tuple@basegfx@@0V12@A
?maEmptyTuple@B3I64Tuple@basegfx@@0V12@A
?getContinuity@basegfx@@YA?AW4B2VectorContinuity@1@ABVB2DVector@1@0@Z
?getOrientation@basegfx@@YA?AW4B2VectorOrientation@1@ABVB2DVector@1@0@Z
??4B2IVector@basegfx@@QAEAAV01@ABVB2ITuple@1@@Z
??Dbasegfx@@YA?AVB2IVector@0@ABVB2DHomMatrix@0@ABV10@@Z
??XB2IVector@basegfx@@QAEAAV01@ABVB2DHomMatrix@1@@Z
?angle@B2IVector@basegfx@@QBENABV12@@Z
?areParallel@basegfx@@YA_NABVB2IVector@1@0@Z
?cross@B2IVector@basegfx@@QBENABV12@@Z
?getContinuity@basegfx@@YA?AW4B2VectorContinuity@1@ABVB2IVector@1@0@Z
?getEmptyVector@B2IVector@basegfx@@SAABV12@XZ
?getLength@B2IVector@basegfx@@QBENXZ
?getOrientation@basegfx@@YA?AW4B2VectorOrientation@1@ABVB2IVector@1@0@Z
?getPerpendicular@basegfx@@YA?AVB2IVector@1@ABV21@@Z
?scalar@B2IVector@basegfx@@QBENABV12@@Z
?setLength@B2IVector@basegfx@@QAEAAV12@N@Z
??Dbasegfx@@YA?AVB3IVector@0@ABVB3DHomMatrix@0@ABV10@@Z
??XB3IVector@basegfx@@QAEAAV01@ABVB3DHomMatrix@1@@Z
??8B2DCubicBezier@basegfx@@QBE_NABV01@@Z
??9B2DCubicBezier@basegfx@@QBE_NABV01@@Z
?isBezier@B2DCubicBezier@basegfx@@QBE_NXZ
??8B2DQuadraticBezier@basegfx@@QBE_NABV01@@Z
??9B2DQuadraticBezier@basegfx@@QBE_NABV01@@Z
?isBezier@B2DQuadraticBezier@basegfx@@QBE_NXZ
??8B2DHomMatrix@basegfx@@QBE_NABV01@@Z
??9B2DHomMatrix@basegfx@@QBE_NABV01@@Z
?decompose@B2DHomMatrix@basegfx@@QBE_NAAVB2DTuple@2@0AAN1@Z
?invert@B2DHomMatrix@basegfx@@QAE_NXZ
?isIdentity@B2DHomMatrix@basegfx@@QBE_NXZ
?isInvertible@B2DHomMatrix@basegfx@@QBE_NXZ
?isNormalized@B2DHomMatrix@basegfx@@QBE_NXZ
??8B3DHomMatrix@basegfx@@QBE_NABV01@@Z
??9B3DHomMatrix@basegfx@@QBE_NABV01@@Z
?decompose@B3DHomMatrix@basegfx@@QBE_NAAVB3DTuple@2@000@Z
?invert@B3DHomMatrix@basegfx@@QAE_NXZ
?isIdentity@B3DHomMatrix@basegfx@@QBE_NXZ
?isInvertible@B3DHomMatrix@basegfx@@QBE_NXZ
?isNormalized@B3DHomMatrix@basegfx@@QBE_NXZ
??8B2DHomPoint@basegfx@@QBE_NABV01@@Z
??9B2DHomPoint@basegfx@@QBE_NABV01@@Z
?implIsHomogenized@B2DHomPoint@basegfx@@IBE_NXZ
??8B2DPolygon@basegfx@@QBE_NABV01@@Z
??8ControlVectorPair2D@@QBE_NABV0@@Z
??9B2DPolygon@basegfx@@QBE_NABV01@@Z
?areControlPointsUsed@B2DPolygon@basegfx@@QBE_NXZ
?hasDoublePoints@B2DPolygon@basegfx@@QBE_NXZ
?isClosed@B2DPolygon@basegfx@@QBE_NXZ
?setClosed@B2DPolygon@basegfx@@QAEX_N@Z
?isInside@tools@basegfx@@YA_NABVB2DPolygon@2@0_N@Z
?isInside@tools@basegfx@@YA_NABVB2DPolygon@2@ABVB2DPoint@2@_N@Z
?isPointOnEdge@tools@basegfx@@YA_NABVB2DPoint@2@0ABVB2DVector@2@PAN@Z
??8B2DPolyPolygon@basegfx@@QBE_NABV01@@Z
??9B2DPolyPolygon@basegfx@@QBE_NABV01@@Z
?areControlPointsUsed@B2DPolyPolygon@basegfx@@QBE_NXZ
?hasDoublePoints@B2DPolyPolygon@basegfx@@QBE_NXZ
?isClosed@B2DPolyPolygon@basegfx@@QBE_NXZ
?setClosed@B2DPolyPolygon@basegfx@@QAEX_N@Z
?removeIntersections@tools@basegfx@@YAXAAVB2DPolyPolygon@2@_N1@Z
?addPolyPolygon@B2DPolyPolygonCutter@basegfx@@QAEXABVB2DPolyPolygon@2@_N@Z
?changeDepth@B2DClipExtraPolygonInfo@basegfx@@QAEX_N@Z
?getOrientation@B2DPolygonNode@basegfx@@QBE_NXZ
?isCrossover@B2DPolyPolygonCutter@basegfx@@AAE_NPAVB2DPolygonNode@2@0@Z
?isCrossover@B2DPolyPolygonCutter@basegfx@@AAE_NPAVB2DSimpleCut@2@0@Z
?isInside@B2DPolygonNode@basegfx@@QBE_NABVB2DPoint@2@_N@Z
?isInside@B2DRange@basegfx@@QBE_NABV12@@Z
?isPolygonInside@B2DPolygonNode@basegfx@@QBE_NPAV12@_N@Z
?overlaps@B2DRange@basegfx@@QBE_NABV12@@Z
?removeIncludedPolygons@B2DPolyPolygonCutter@basegfx@@QAEX_N@Z
??8B3DPolygon@basegfx@@QBE_NABV01@@Z
??9B3DPolygon@basegfx@@QBE_NABV01@@Z
?equal@B3DTuple@basegfx@@QBE_NABV12@@Z
?hasDoublePoints@B3DPolygon@basegfx@@QBE_NXZ
?isClosed@B3DPolygon@basegfx@@QBE_NXZ
?setClosed@B3DPolygon@basegfx@@QAEX_N@Z
??8B3DPolyPolygon@basegfx@@QBE_NABV01@@Z
??9B3DPolyPolygon@basegfx@@QBE_NABV01@@Z
?hasDoublePoints@B3DPolyPolygon@basegfx@@QBE_NXZ
?isClosed@B3DPolyPolygon@basegfx@@QBE_NXZ
?setClosed@B3DPolyPolygon@basegfx@@QAEX_N@Z
?equal@B2DTuple@basegfx@@QBE_NABV12@@Z
?equal@B2DTuple@basegfx@@QBE_NABV12@ABN@Z
?equalZero@B2DTuple@basegfx@@QBE_NABN@Z
?equalZero@B2DTuple@basegfx@@QBE_NXZ
?areParallel@basegfx@@YA_NABVB2DVector@1@0@Z
?isNormalized@B2DVector@basegfx@@QBE_NXZ
??Dbasegfx@@YA?AVB2DPoint@0@ABVB2DHomMatrix@0@ABV10@@Z
??Dbasegfx@@YA?AVB3DPoint@0@ABVB3DHomMatrix@0@ABV10@@Z
?isInEpsilonRange@tools@basegfx@@YA_NABVB2DPoint@2@00N@Z
?isInEpsilonRange@tools@basegfx@@YA_NABVB2DPolygon@2@ABVB2DPoint@2@N@Z
?isInEpsilonRange@tools@basegfx@@YA_NABVB2DPolyPolygon@2@ABVB2DPoint@2@N@Z
??0B2DPoint@basegfx@@QAE@XZ
??0B2DTuple@basegfx@@QAE@XZ
??8B2DTuple@basegfx@@QBE_NABV01@@Z
??9B2DTuple@basegfx@@QBE_NABV01@@Z
?getControlPolygonLength@B2DCubicBezier@basegfx@@QBENXZ
?getEdgeLength@B2DCubicBezier@basegfx@@QBENXZ
??0AngleErrorFunctor@?A0xaa41c9a9@@QAE@ABN@Z
??0DistanceErrorFunctor@?A0xaa41c9a9@@QAE@ABN@Z
?equal@fTools@basegfx@@SA_NABN0@Z
?equalZero@fTools@basegfx@@SA_NABN@Z
?less@fTools@basegfx@@SA_NABN0@Z
?needsFurtherSubdivision@AngleErrorFunctor@?A0xaa41c9a9@@QAE_NNNNNNNNNNN@Z
?needsFurtherSubdivision@DistanceErrorFunctor@?A0xaa41c9a9@@QAE_NABN000000000@Z
??0B3DTuple@basegfx@@QAE@XZ
?more@fTools@basegfx@@SA_NABN0@Z
?moreOrEqual@fTools@basegfx@@SA_NABN0@Z
??0B3DVector@basegfx@@QAE@XZ
?fround@basegfx@@YAJN@Z
?getX@B2ITuple@basegfx@@QBEJXZ
?getY@B2ITuple@basegfx@@QBEJXZ
??0B2DVector@basegfx@@QAE@XZ
??8CoordinateData2D@@QBE_NABV0@@Z
?areControlVectorsUsed@B2DPolygon@basegfx@@QBE_NXZ
?getControlPointA@B2DPolygon@basegfx@@QBE?AVB2DPoint@2@K@Z
?getControlPointB@B2DPolygon@basegfx@@QBE?AVB2DPoint@2@K@Z
?isEqual@ControlVectorArray2D@@QBE_NABV1@@Z
?isEqual@CoordinateDataArray2D@@QBE_NABV1@@Z
?isUsed@ControlVectorArray2D@@QBE_NXZ
?setControlPointA@B2DPolygon@basegfx@@QAEXKABVB2DPoint@2@@Z
?setControlPointB@B2DPolygon@basegfx@@QAEXKABVB2DPoint@2@@Z
??0?$BasicRange@NUDoubleTraits@basegfx@@@basegfx@@QAE@ABV01@@Z
??0?$BasicRange@NUDoubleTraits@basegfx@@@basegfx@@QAE@XZ
?initMax@DoubleTraits@basegfx@@SANXZ
?initMin@DoubleTraits@basegfx@@SANXZ
_real@0010000000000000
?areControlVectorsUsed@B2DPolyPolygon@basegfx@@QBE_NXZ
?expand@?$BasicRange@NUDoubleTraits@basegfx@@@basegfx@@QAEXABV12@@Z
??0B2DSimpleCut@basegfx@@QAE@PAVB2DPolygonNode@1@0_N1@Z
??4?$BasicRange@NUDoubleTraits@basegfx@@@basegfx@@QAEXABV01@@Z
?doRangesInclude@B2DPolyPolygonCutter@basegfx@@ABE_NABVB2DRange@2@0@Z
?doRangesIntersect@B2DPolyPolygonCutter@basegfx@@ABE_NABVB2DRange@2@0@Z
?getOrientation@B2DClipExtraPolygonInfo@basegfx@@QBE_NXZ
?isInside@?$BasicRange@NUDoubleTraits@basegfx@@@basegfx@@QBE_NABV12@@Z
?isNextSamePos@B2DPolyPolygonCutter@basegfx@@AAE_NPAVB2DPolygonNode@2@0@Z
?isPrevSamePos@B2DPolyPolygonCutter@basegfx@@AAE_NPAVB2DPolygonNode@2@0@Z
?isSameCut@B2DSimpleCut@basegfx@@QBE_NPAVB2DPolygonNode@2@0@Z
?isSamePos@B2DPolyPolygonCutter@basegfx@@AAE_NABVB2DPoint@2@0@Z
?overlaps@?$BasicRange@NUDoubleTraits@basegfx@@@basegfx@@QBE_NABV12@@Z
??0B3DPoint@basegfx@@QAE@XZ
??8B3DTuple@basegfx@@QBE_NABV01@@Z
??8CoordinateData3D@@QBE_NABV0@@Z
??9B3DTuple@basegfx@@QBE_NABV01@@Z
?isEqual@CoordinateDataArray3D@@QBE_NABV1@@Z
?equal@fTools@basegfx@@SA_NABN00@Z
?equalZero@fTools@basegfx@@SA_NABN0@Z
??0B2ITuple@basegfx@@QAE@ABV01@@Z
??0B2ITuple@basegfx@@QAE@JJ@Z
??1B2ITuple@basegfx@@QAE@XZ
??Dbasegfx@@YA?AVB2ITuple@0@ABV10@0@Z
??Dbasegfx@@YA?AVB2ITuple@0@ABV10@J@Z
??Dbasegfx@@YA?AVB2ITuple@0@JABV10@@Z
??Gbasegfx@@YA?AVB2ITuple@0@ABV10@0@Z
??Hbasegfx@@YA?AVB2ITuple@0@ABV10@0@Z
??Kbasegfx@@YA?AVB2ITuple@0@ABV10@0@Z
??Kbasegfx@@YA?AVB2ITuple@0@ABV10@J@Z
??Kbasegfx@@YA?AVB2ITuple@0@JABV10@@Z
??XB2ITuple@basegfx@@QAEAAV01@ABV01@@Z
??XB2ITuple@basegfx@@QAEAAV01@J@Z
??YB2ITuple@basegfx@@QAEAAV01@ABV01@@Z
??ZB2ITuple@basegfx@@QAEAAV01@ABV01@@Z
??_0B2ITuple@basegfx@@QAEAAV01@ABV01@@Z
??_0B2ITuple@basegfx@@QAEAAV01@J@Z
?absolute@basegfx@@YA?AVB2ITuple@1@ABV21@@Z
?average@basegfx@@YA?AVB2DTuple@1@ABVB2ITuple@1@00@Z
?average@basegfx@@YA?AVB2DTuple@1@ABVB2ITuple@1@0@Z
?interpolate@basegfx@@YA?AVB2DTuple@1@ABVB2ITuple@1@0N@Z
?maximum@basegfx@@YA?AVB2ITuple@1@ABV21@0@Z
?minimum@basegfx@@YA?AVB2ITuple@1@ABV21@0@Z
??0B3ITuple@basegfx@@QAE@JJJ@Z
??1B3ITuple@basegfx@@QAE@XZ
??0B2I64Tuple@basegfx@@QAE@_J0@Z
??1B2I64Tuple@basegfx@@QAE@XZ
??0B3I64Tuple@basegfx@@QAE@_J00@Z
??1B3I64Tuple@basegfx@@QAE@XZ
??0?$BasicRange@JUInt32Traits@basegfx@@@basegfx@@QAE@J@Z
??0?$BasicRange@NUDoubleTraits@basegfx@@@basegfx@@QAE@N@Z
??0?$Reference@VXPolyPolygon2D@rendering@star@sun@com@drafts@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z
??0?$Reference@VXPolyPolygon2D@rendering@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ
??0?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@QAE@ABV01234@@Z
??0?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@QAE@J@Z
??0?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@QAE@ABV01234@@Z
??0?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@QAE@J@Z
??0?$Sequence@V?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@uno@star@sun@com@@QAE@J@Z
??0?$Sequence@V?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@uno@star@sun@com@@QAE@J@Z
??0B2DRange@basegfx@@QAE@NNNN@Z
??0B2IPoint@basegfx@@QAE@JJ@Z
??0B2IRange@basegfx@@QAE@JJJJ@Z
??0B2IVector@basegfx@@QAE@JJ@Z
??0IntegerPoint2D@geometry@star@sun@com@drafts@@QAE@ABJ0@Z
??0IntegerRectangle2D@geometry@star@sun@com@drafts@@QAE@ABJ000@Z
??0IntegerSize2D@geometry@star@sun@com@drafts@@QAE@ABJ0@Z
??0RealBezierSegment2D@geometry@star@sun@com@drafts@@QAE@ABN00000@Z
??0RealPoint2D@geometry@star@sun@com@drafts@@QAE@ABN0@Z
??0RealRectangle2D@geometry@star@sun@com@drafts@@QAE@ABN000@Z
??0RealSize2D@geometry@star@sun@com@drafts@@QAE@ABN0@Z
??0bad_alloc@std@@QAE@ABV01@@Z
??0bad_alloc@std@@QAE@PBD@Z
??1?$Reference@VXBezierPolyPolygon2D@rendering@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXLinePolyPolygon2D@rendering@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXPolyPolygon2D@rendering@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ
??1?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ
??1?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ
??1?$Sequence@V?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Sequence@V?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1Any@uno@star@sun@com@@QAE@XZ
??1B2IPoint@basegfx@@QAE@XZ
??1B2IVector@basegfx@@QAE@XZ
??1bad_alloc@std@@UAE@XZ
??4?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
??4?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
??A?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@QAAAAURealBezierSegment2D@geometry@234drafts@@J@Z
??A?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@QAAAAURealPoint2D@geometry@234drafts@@J@Z
??A?$Sequence@V?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@uno@star@sun@com@@QAAAAV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@1234@J@Z
??A?$Sequence@V?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@uno@star@sun@com@@QAAAAV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@1234@J@Z
??C?$Reference@VXGraphicDevice@rendering@star@sun@com@drafts@@@uno@star@sun@com@@QBAPAVXGraphicDevice@rendering@234drafts@@XZ
??_7bad_alloc@std@@6B@
??_C@_0CJ@PLLOKPAP@drafts?4com?4sun?4star?4geometry?4Rea@
??_C@_0CN@CLLEGIOK@drafts?4com?4sun?4star?4rendering?4XP@
??_C@_0DB@JNGPGCBG@drafts?4com?4sun?4star?4geometry?4Rea@
??_C@_0P@GHFPNOJB@bad?5allocation?$AA@
??_Gbad_alloc@std@@UAEPAXI@Z
??_R0?AVbad_alloc@std@@@8
??_R0?AVexception@@@8
?affineMatrixFromHomMatrix@unotools@basegfx@@YAAAUAffineMatrix2D@geometry@star@sun@com@drafts@@AAU345678@ABVB2DHomMatrix@2@@Z
?b2DPointFromRealPoint2D@unotools@basegfx@@YA?AVB2DPoint@2@ABURealPoint2D@geometry@star@sun@com@drafts@@@Z
?b2DRectangleFromRealRectangle2D@unotools@basegfx@@YA?AVB2DRange@2@ABURealRectangle2D@geometry@star@sun@com@drafts@@@Z
?b2DSizeFromRealSize2D@unotools@basegfx@@YA?AVB2DVector@2@ABURealSize2D@geometry@star@sun@com@drafts@@@Z
?b2IPointFromIntegerPoint2D@unotools@basegfx@@YA?AVB2IPoint@2@ABUIntegerPoint2D@geometry@star@sun@com@drafts@@@Z
?b2IRectangleFromIntegerRectangle2D@unotools@basegfx@@YA?AVB2IRange@2@ABUIntegerRectangle2D@geometry@star@sun@com@drafts@@@Z
?b2ISizeFromIntegerSize2D@unotools@basegfx@@YA?AVB2IVector@2@ABUIntegerSize2D@geometry@star@sun@com@drafts@@@Z
?bezierSequenceFromB2DPolygon@?A0xa4886fdd@unotools@basegfx@@YA?AV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVB2DPolygon@3@@Z
?cpp_acquire@uno@star@sun@com@@YAXPAX@Z
?cpp_release@uno@star@sun@com@@YAXPAX@Z
?expand@?$BasicRange@JUInt32Traits@basegfx@@@basegfx@@QAEXJ@Z
?get@BaseReference@uno@star@sun@com@@QBAPAVXInterface@2345@XZ
?getArray@?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@QAAPAURealBezierSegment2D@geometry@345drafts@@XZ
?getArray@?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@QAAPAURealPoint2D@geometry@345drafts@@XZ
?getArray@?$Sequence@V?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@uno@star@sun@com@@QAAPAV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@2345@XZ
?getArray@?$Sequence@V?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@uno@star@sun@com@@QAAPAV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@2345@XZ
?getCppuType@@YAABVType@uno@star@sun@com@@PBURealBezierSegment2D@geometry@345drafts@@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBURealPoint2D@geometry@345drafts@@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPolyPolygon2D@rendering@star@sun@com@drafts@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@V?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@V?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@2345@@Z
?getMaxX@B2DRange@basegfx@@QBENXZ
?getMaxX@B2IRange@basegfx@@QBEJXZ
?getMaxY@B2DRange@basegfx@@QBENXZ
?getMaxY@B2IRange@basegfx@@QBEJXZ
?getMaximum@?$BasicRange@JUInt32Traits@basegfx@@@basegfx@@QBEJXZ
?getMaximum@?$BasicRange@NUDoubleTraits@basegfx@@@basegfx@@QBENXZ
?getMinX@B2DRange@basegfx@@QBENXZ
?getMinX@B2IRange@basegfx@@QBEJXZ
?getMinY@B2DRange@basegfx@@QBENXZ
?getMinY@B2IRange@basegfx@@QBEJXZ
?getMinimum@?$BasicRange@JUInt32Traits@basegfx@@@basegfx@@QBEJXZ
?getMinimum@?$BasicRange@NUDoubleTraits@basegfx@@@basegfx@@QBENXZ
?getTypeLibType@Type@uno@star@sun@com@@QBAPAU_typelib_TypeDescriptionReference@@XZ
?homMatrixFromAffineMatrix@unotools@basegfx@@YAAAVB2DHomMatrix@2@AAV32@ABUAffineMatrix2D@geometry@star@sun@com@drafts@@@Z
?integerPoint2DFromB2IPoint@unotools@basegfx@@YA?AUIntegerPoint2D@geometry@star@sun@com@drafts@@ABVB2IPoint@2@@Z
?integerRectangle2DFromB2IRectangle@unotools@basegfx@@YA?AUIntegerRectangle2D@geometry@star@sun@com@drafts@@ABVB2IRange@2@@Z
?integerSize2DFromB2ISize@unotools@basegfx@@YA?AUIntegerSize2D@geometry@star@sun@com@drafts@@ABVB2IVector@2@@Z
?iquery@?$Reference@VXPolyPolygon2D@rendering@star@sun@com@drafts@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
?iquery@BaseReference@uno@star@sun@com@@KAPAVXInterface@2345@PAV62345@ABVType@2345@@Z
?is@BaseReference@uno@star@sun@com@@QBAEXZ
?point2DFromB2DPoint@unotools@basegfx@@YA?AURealPoint2D@geometry@star@sun@com@drafts@@ABVB2DPoint@2@@Z
?pointSequenceFromB2DPolygon@?A0xa4886fdd@unotools@basegfx@@YA?AV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVB2DPolygon@3@@Z
?rectangle2DFromB2DRectangle@unotools@basegfx@@YA?AURealRectangle2D@geometry@star@sun@com@drafts@@ABVB2DRange@2@@Z
?s_pType@?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
?s_pType@?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
?s_pType@?$Sequence@V?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
?s_pType@?$Sequence@V?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
?s_pType_drafts_com_sun_star_geometry_RealBezierSegment2D@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBURealBezierSegment2D@geometry@456drafts@@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_drafts_com_sun_star_geometry_RealPoint2D@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBURealPoint2D@geometry@456drafts@@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_drafts_com_sun_star_rendering_XPolyPolygon2D@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPolyPolygon2D@rendering@star@sun@com@drafts@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?size2DFromB2DSize@unotools@basegfx@@YA?AURealSize2D@geometry@star@sun@com@drafts@@ABVB2DVector@2@@Z
?xPolyPolygonFromB2DPolyPolygon@unotools@basegfx@@YA?AV?$Reference@VXPolyPolygon2D@rendering@star@sun@com@drafts@@@uno@star@sun@com@@ABV?$Reference@VXGraphicDevice@rendering@star@sun@com@drafts@@@4567@ABVB2DPolyPolygon@2@@Z
?xPolyPolygonFromB2DPolygon@unotools@basegfx@@YA?AV?$Reference@VXPolyPolygon2D@rendering@star@sun@com@drafts@@@uno@star@sun@com@@ABV?$Reference@VXGraphicDevice@rendering@star@sun@com@drafts@@@4567@ABVB2DPolygon@2@@Z
_TI2?AVbad_alloc@std@@
??0B2IVector@basegfx@@QAE@ABV01@@Z
??8B2ITuple@basegfx@@QBE_NABV01@@Z
?equalZero@B2ITuple@basegfx@@QBE_NXZ
?getEmptyTuple@B2ITuple@basegfx@@SAABV12@XZ
??0B3ITuple@basegfx@@QAE@ABV01@@Z
??0B3IVector@basegfx@@QAE@ABV01@@Z
??1B3IVector@basegfx@@QAE@XZ
??0AngleErrorFunctor@?A0x244df453@@QAE@ABN@Z
??0DistanceErrorFunctor@?A0x244df453@@QAE@ABN@Z
?needsFurtherSubdivision@AngleErrorFunctor@?A0x244df453@@QAE_NNNNNNNNNNN@Z
?needsFurtherSubdivision@DistanceErrorFunctor@?A0x244df453@@QAE_NABN000000000@Z
??_C@_0BP@EGLBGAIM@?$CD?$CD?$CD?5illegal?5index?5of?5sequence?$CB?$AA@
??_C@_0DF@OACFFDKI@o?3?2SRC680?2wntmsci8?2inc?2com?1sun?1s@
?bezierSequenceFromB2DPolygon@?A0x20643f19@unotools@basegfx@@YA?AV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVB2DPolygon@3@@Z
?getLength@?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@QBAJXZ
?getLength@?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@QBAJXZ
?getLength@?$Sequence@V?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@uno@star@sun@com@@QBAJXZ
?getLength@?$Sequence@V?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@uno@star@sun@com@@QBAJXZ
?pointSequenceFromB2DPolygon@?A0x20643f19@unotools@basegfx@@YA?AV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVB2DPolygon@3@@Z
??0AngleErrorFunctor@?A0x14bb73f0@@QAE@ABN@Z
??0DistanceErrorFunctor@?A0x14bb73f0@@QAE@ABN@Z
?needsFurtherSubdivision@AngleErrorFunctor@?A0x14bb73f0@@QAE_NNNNNNNNNNN@Z
?needsFurtherSubdivision@DistanceErrorFunctor@?A0x14bb73f0@@QAE_NABN000000000@Z
?bezierSequenceFromB2DPolygon@?A0x9b6466ea@unotools@basegfx@@YA?AV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVB2DPolygon@3@@Z
?pointSequenceFromB2DPolygon@?A0x9b6466ea@unotools@basegfx@@YA?AV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVB2DPolygon@3@@Z
??0AngleErrorFunctor@?A0x2fe004b6@@QAE@ABN@Z
??0DistanceErrorFunctor@?A0x2fe004b6@@QAE@ABN@Z
?needsFurtherSubdivision@AngleErrorFunctor@?A0x2fe004b6@@QAE_NNNNNNNNNNN@Z
?needsFurtherSubdivision@DistanceErrorFunctor@?A0x2fe004b6@@QAE_NABN000000000@Z
?bezierSequenceFromB2DPolygon@?A0x050e1221@unotools@basegfx@@YA?AV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVB2DPolygon@3@@Z
?pointSequenceFromB2DPolygon@?A0x050e1221@unotools@basegfx@@YA?AV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVB2DPolygon@3@@Z
?bezierSequenceFromB2DPolygon@?A0x469d2e72@unotools@basegfx@@YA?AV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVB2DPolygon@3@@Z
?pointSequenceFromB2DPolygon@?A0x469d2e72@unotools@basegfx@@YA?AV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVB2DPolygon@3@@Z
??0AngleErrorFunctor@?A0x4195793e@@QAE@ABN@Z
??0DistanceErrorFunctor@?A0x4195793e@@QAE@ABN@Z
?needsFurtherSubdivision@AngleErrorFunctor@?A0x4195793e@@QAE_NNNNNNNNNNN@Z
?needsFurtherSubdivision@DistanceErrorFunctor@?A0x4195793e@@QAE_NABN000000000@Z
?bezierSequenceFromB2DPolygon@?A0x4396d985@unotools@basegfx@@YA?AV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVB2DPolygon@3@@Z
?pointSequenceFromB2DPolygon@?A0x4396d985@unotools@basegfx@@YA?AV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVB2DPolygon@3@@Z
??0AngleErrorFunctor@?A0x4a415347@@QAE@ABN@Z
??0DistanceErrorFunctor@?A0x4a415347@@QAE@ABN@Z
?needsFurtherSubdivision@AngleErrorFunctor@?A0x4a415347@@QAE_NNNNNNNNNNN@Z
?needsFurtherSubdivision@DistanceErrorFunctor@?A0x4a415347@@QAE_NABN000000000@Z
?bezierSequenceFromB2DPolygon@?A0xad034f3f@unotools@basegfx@@YA?AV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVB2DPolygon@3@@Z
?pointSequenceFromB2DPolygon@?A0xad034f3f@unotools@basegfx@@YA?AV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVB2DPolygon@3@@Z
??0AngleErrorFunctor@?A0x7cc9d985@@QAE@ABN@Z
??0DistanceErrorFunctor@?A0x7cc9d985@@QAE@ABN@Z
?needsFurtherSubdivision@AngleErrorFunctor@?A0x7cc9d985@@QAE_NNNNNNNNNNN@Z
?needsFurtherSubdivision@DistanceErrorFunctor@?A0x7cc9d985@@QAE_NABN000000000@Z
?bezierSequenceFromB2DPolygon@?A0x2e4719e6@unotools@basegfx@@YA?AV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVB2DPolygon@3@@Z
?pointSequenceFromB2DPolygon@?A0x2e4719e6@unotools@basegfx@@YA?AV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVB2DPolygon@3@@Z
?bezierSequenceFromB2DPolygon@?A0xe89634e1@unotools@basegfx@@YA?AV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVB2DPolygon@3@@Z
?pointSequenceFromB2DPolygon@?A0xe89634e1@unotools@basegfx@@YA?AV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVB2DPolygon@3@@Z
??0AngleErrorFunctor@?A0xfcda49b9@@QAE@ABN@Z
??0DistanceErrorFunctor@?A0xfcda49b9@@QAE@ABN@Z
?needsFurtherSubdivision@AngleErrorFunctor@?A0xfcda49b9@@QAE_NNNNNNNNNNN@Z
?needsFurtherSubdivision@DistanceErrorFunctor@?A0xfcda49b9@@QAE_NABN000000000@Z
?bezierSequenceFromB2DPolygon@?A0x1c4a370b@unotools@basegfx@@YA?AV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVB2DPolygon@3@@Z
?pointSequenceFromB2DPolygon@?A0x1c4a370b@unotools@basegfx@@YA?AV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVB2DPolygon@3@@Z
??0AngleErrorFunctor@?A0x4c586fb3@@QAE@ABN@Z
??0DistanceErrorFunctor@?A0x4c586fb3@@QAE@ABN@Z
?needsFurtherSubdivision@AngleErrorFunctor@?A0x4c586fb3@@QAE_NNNNNNNNNNN@Z
?needsFurtherSubdivision@DistanceErrorFunctor@?A0x4c586fb3@@QAE_NABN000000000@Z
??0AngleErrorFunctor@?A0xda002d69@@QAE@ABN@Z
??0DistanceErrorFunctor@?A0xda002d69@@QAE@ABN@Z
?needsFurtherSubdivision@AngleErrorFunctor@?A0xda002d69@@QAE_NNNNNNNNNNN@Z
?needsFurtherSubdivision@DistanceErrorFunctor@?A0xda002d69@@QAE_NABN000000000@Z
?bezierSequenceFromB2DPolygon@?A0x79fe1bc5@unotools@basegfx@@YA?AV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVB2DPolygon@3@@Z
?pointSequenceFromB2DPolygon@?A0x79fe1bc5@unotools@basegfx@@YA?AV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVB2DPolygon@3@@Z
??0AngleErrorFunctor@?A0xf31b2f99@@QAE@ABN@Z
??0DistanceErrorFunctor@?A0xf31b2f99@@QAE@ABN@Z
?needsFurtherSubdivision@AngleErrorFunctor@?A0xf31b2f99@@QAE_NNNNNNNNNNN@Z
?needsFurtherSubdivision@DistanceErrorFunctor@?A0xf31b2f99@@QAE_NABN000000000@Z
?bezierSequenceFromB2DPolygon@?A0x078ad47d@unotools@basegfx@@YA?AV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVB2DPolygon@3@@Z
?pointSequenceFromB2DPolygon@?A0x078ad47d@unotools@basegfx@@YA?AV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVB2DPolygon@3@@Z
??0AngleErrorFunctor@?A0xe15ece9b@@QAE@ABN@Z
??0DistanceErrorFunctor@?A0xe15ece9b@@QAE@ABN@Z
?needsFurtherSubdivision@AngleErrorFunctor@?A0xe15ece9b@@QAE_NNNNNNNNNNN@Z
?needsFurtherSubdivision@DistanceErrorFunctor@?A0xe15ece9b@@QAE_NABN000000000@Z
??0AngleErrorFunctor@?A0x24706ced@@QAE@ABN@Z
??0DistanceErrorFunctor@?A0x24706ced@@QAE@ABN@Z
?needsFurtherSubdivision@AngleErrorFunctor@?A0x24706ced@@QAE_NNNNNNNNNNN@Z
?needsFurtherSubdivision@DistanceErrorFunctor@?A0x24706ced@@QAE_NABN000000000@Z
??0AngleErrorFunctor@?A0x46ac0147@@QAE@ABN@Z
??0DistanceErrorFunctor@?A0x46ac0147@@QAE@ABN@Z
?needsFurtherSubdivision@AngleErrorFunctor@?A0x46ac0147@@QAE_NNNNNNNNNNN@Z
?needsFurtherSubdivision@DistanceErrorFunctor@?A0x46ac0147@@QAE_NABN000000000@Z
??0AngleErrorFunctor@?A0x807e821b@@QAE@ABN@Z
??0DistanceErrorFunctor@?A0x807e821b@@QAE@ABN@Z
?needsFurtherSubdivision@AngleErrorFunctor@?A0x807e821b@@QAE_NNNNNNNNNNN@Z
?needsFurtherSubdivision@DistanceErrorFunctor@?A0x807e821b@@QAE_NABN000000000@Z
?bezierSequenceFromB2DPolygon@?A0x44c2fcc8@unotools@basegfx@@YA?AV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVB2DPolygon@3@@Z
?pointSequenceFromB2DPolygon@?A0x44c2fcc8@unotools@basegfx@@YA?AV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVB2DPolygon@3@@Z
??0AngleErrorFunctor@?A0x88d56212@@QAE@ABN@Z
??0DistanceErrorFunctor@?A0x88d56212@@QAE@ABN@Z
?needsFurtherSubdivision@AngleErrorFunctor@?A0x88d56212@@QAE_NNNNNNNNNNN@Z
?needsFurtherSubdivision@DistanceErrorFunctor@?A0x88d56212@@QAE_NABN000000000@Z
?bezierSequenceFromB2DPolygon@?A0x5a7275d2@unotools@basegfx@@YA?AV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVB2DPolygon@3@@Z
?pointSequenceFromB2DPolygon@?A0x5a7275d2@unotools@basegfx@@YA?AV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVB2DPolygon@3@@Z
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBURealBezierSegment2D@geometry@456drafts@@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBURealPoint2D@geometry@456drafts@@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPolyPolygon2D@rendering@star@sun@com@drafts@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?bezierSequenceFromB2DPolygon@?A0x60dbb8bb@unotools@basegfx@@YA?AV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVB2DPolygon@3@@Z
?pointSequenceFromB2DPolygon@?A0x60dbb8bb@unotools@basegfx@@YA?AV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVB2DPolygon@3@@Z
??0AngleErrorFunctor@?A0xca52a4c9@@QAE@ABN@Z
??0DistanceErrorFunctor@?A0xca52a4c9@@QAE@ABN@Z
?needsFurtherSubdivision@AngleErrorFunctor@?A0xca52a4c9@@QAE_NNNNNNNNNNN@Z
?needsFurtherSubdivision@DistanceErrorFunctor@?A0xca52a4c9@@QAE_NABN000000000@Z