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 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550
|
// std lib related includes
#include <tuple>
// pybind 11 related includes
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
namespace py = pybind11;
// Standard Handle
#include <Standard_Handle.hxx>
// includes to resolve forward declarations
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <BOPDS_PaveBlock.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <BOPDS_PaveBlock.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <BOPDS_DS.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
// module includes
#include <BOPDS_CommonBlock.hxx>
#include <BOPDS_CoupleOfPaveBlocks.hxx>
#include <BOPDS_Curve.hxx>
#include <BOPDS_DataMapOfIntegerListOfPaveBlock.hxx>
#include <BOPDS_DataMapOfPaveBlockCommonBlock.hxx>
#include <BOPDS_DataMapOfPaveBlockListOfInteger.hxx>
#include <BOPDS_DataMapOfPaveBlockListOfPaveBlock.hxx>
#include <BOPDS_DataMapOfShapeCoupleOfPaveBlocks.hxx>
#include <BOPDS_DS.hxx>
#include <BOPDS_FaceInfo.hxx>
#include <BOPDS_IndexedDataMapOfPaveBlockListOfInteger.hxx>
#include <BOPDS_IndexedDataMapOfPaveBlockListOfPaveBlock.hxx>
#include <BOPDS_IndexedDataMapOfShapeCoupleOfPaveBlocks.hxx>
#include <BOPDS_IndexedMapOfPaveBlock.hxx>
#include <BOPDS_IndexRange.hxx>
#include <BOPDS_Interf.hxx>
#include <BOPDS_ListOfPave.hxx>
#include <BOPDS_ListOfPaveBlock.hxx>
#include <BOPDS_MapOfCommonBlock.hxx>
#include <BOPDS_MapOfPair.hxx>
#include <BOPDS_MapOfPave.hxx>
#include <BOPDS_MapOfPaveBlock.hxx>
#include <BOPDS_Pair.hxx>
#include <BOPDS_Pave.hxx>
#include <BOPDS_PaveBlock.hxx>
#include <BOPDS_PDS.hxx>
#include <BOPDS_PIterator.hxx>
#include <BOPDS_PIteratorSI.hxx>
#include <BOPDS_Point.hxx>
#include <BOPDS_ShapeInfo.hxx>
#include <BOPDS_SubIterator.hxx>
#include <BOPDS_Tools.hxx>
#include <BOPDS_VectorOfCurve.hxx>
#include <BOPDS_VectorOfFaceInfo.hxx>
#include <BOPDS_VectorOfIndexRange.hxx>
#include <BOPDS_VectorOfInterfEE.hxx>
#include <BOPDS_VectorOfInterfEF.hxx>
#include <BOPDS_VectorOfInterfEZ.hxx>
#include <BOPDS_VectorOfInterfFF.hxx>
#include <BOPDS_VectorOfInterfFZ.hxx>
#include <BOPDS_VectorOfInterfVE.hxx>
#include <BOPDS_VectorOfInterfVF.hxx>
#include <BOPDS_VectorOfInterfVV.hxx>
#include <BOPDS_VectorOfInterfVZ.hxx>
#include <BOPDS_VectorOfInterfZZ.hxx>
#include <BOPDS_VectorOfListOfPaveBlock.hxx>
#include <BOPDS_VectorOfPair.hxx>
#include <BOPDS_VectorOfPave.hxx>
#include <BOPDS_VectorOfPoint.hxx>
#include <BOPDS_VectorOfShapeInfo.hxx>
#include <BOPDS_VectorOfVectorOfPair.hxx>
// template related includes
// ./opencascade/BOPDS_DataMapOfIntegerListOfPaveBlock.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_DataMapOfPaveBlockListOfInteger.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_DataMapOfPaveBlockListOfPaveBlock.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_DataMapOfShapeCoupleOfPaveBlocks.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_IndexedDataMapOfPaveBlockListOfInteger.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_IndexedDataMapOfPaveBlockListOfPaveBlock.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_IndexedDataMapOfShapeCoupleOfPaveBlocks.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_IndexedMapOfPaveBlock.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_ListOfPave.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_ListOfPaveBlock.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_MapOfCommonBlock.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_MapOfPair.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_MapOfPave.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_MapOfPaveBlock.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_VectorOfCurve.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_VectorOfFaceInfo.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_VectorOfIndexRange.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_VectorOfInterfEE.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_VectorOfInterfEF.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_VectorOfInterfEZ.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_VectorOfInterfFF.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_VectorOfInterfFZ.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_VectorOfInterfVE.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_VectorOfInterfVF.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_VectorOfInterfVV.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_VectorOfInterfVZ.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_VectorOfInterfZZ.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_VectorOfListOfPaveBlock.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_VectorOfPair.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_VectorOfPave.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_VectorOfPoint.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_VectorOfShapeInfo.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/BOPDS_VectorOfVectorOfPair.hxx
#include "NCollection_tmpl.hxx"
// user-defined pre
#include "OCP_specific.inc"
// user-defined inclusion per module
// Module definiiton
void register_BOPDS(py::module &main_module) {
py::module m = static_cast<py::module>(main_module.attr("BOPDS"));
py::object klass;
//Python trampoline classes
// classes
// Class BOPDS_CommonBlock from ./opencascade/BOPDS_CommonBlock.hxx
klass = m.attr("BOPDS_CommonBlock");
// nested enums
static_cast<py::class_<BOPDS_CommonBlock ,opencascade::handle<BOPDS_CommonBlock> , Standard_Transient >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const opencascade::handle<NCollection_BaseAllocator> & >() , py::arg("theAllocator") )
// custom constructors
// methods
.def("AddPaveBlock",
(void (BOPDS_CommonBlock::*)( const opencascade::handle<BOPDS_PaveBlock> & ) ) static_cast<void (BOPDS_CommonBlock::*)( const opencascade::handle<BOPDS_PaveBlock> & ) >(&BOPDS_CommonBlock::AddPaveBlock),
R"#(Modifier Adds the pave block <aPB> to the list of pave blocks of the common block)#" , py::arg("aPB")
)
.def("SetPaveBlocks",
(void (BOPDS_CommonBlock::*)( const NCollection_List<opencascade::handle<BOPDS_PaveBlock>> & ) ) static_cast<void (BOPDS_CommonBlock::*)( const NCollection_List<opencascade::handle<BOPDS_PaveBlock>> & ) >(&BOPDS_CommonBlock::SetPaveBlocks),
R"#(Modifier Sets the list of pave blocks for the common block)#" , py::arg("aLPB")
)
.def("AddFace",
(void (BOPDS_CommonBlock::*)( const Standard_Integer ) ) static_cast<void (BOPDS_CommonBlock::*)( const Standard_Integer ) >(&BOPDS_CommonBlock::AddFace),
R"#(Modifier Adds the index of the face <aF> to the list of indices of faces of the common block)#" , py::arg("aF")
)
.def("SetFaces",
(void (BOPDS_CommonBlock::*)( const NCollection_List<Standard_Integer> & ) ) static_cast<void (BOPDS_CommonBlock::*)( const NCollection_List<Standard_Integer> & ) >(&BOPDS_CommonBlock::SetFaces),
R"#(Modifier Sets the list of indices of faces <aLF> of the common block)#" , py::arg("aLF")
)
.def("AppendFaces",
(void (BOPDS_CommonBlock::*)( NCollection_List<Standard_Integer> & ) ) static_cast<void (BOPDS_CommonBlock::*)( NCollection_List<Standard_Integer> & ) >(&BOPDS_CommonBlock::AppendFaces),
R"#(Modifier Appends the list of indices of faces <aLF> to the list of indices of faces of the common block (the input list is emptied))#" , py::arg("aLF")
)
.def("PaveBlockOnEdge",
(opencascade::handle<BOPDS_PaveBlock> & (BOPDS_CommonBlock::*)( const Standard_Integer ) ) static_cast<opencascade::handle<BOPDS_PaveBlock> & (BOPDS_CommonBlock::*)( const Standard_Integer ) >(&BOPDS_CommonBlock::PaveBlockOnEdge),
R"#(Selector Returns the pave block that belongs to the edge with index <theIx>)#" , py::arg("theIndex")
)
.def("IsPaveBlockOnFace",
(Standard_Boolean (BOPDS_CommonBlock::*)( const Standard_Integer ) const) static_cast<Standard_Boolean (BOPDS_CommonBlock::*)( const Standard_Integer ) const>(&BOPDS_CommonBlock::IsPaveBlockOnFace),
R"#(Query Returns true if the common block contains a pave block that belongs to the face with index <theIx>)#" , py::arg("theIndex")
)
.def("IsPaveBlockOnEdge",
(Standard_Boolean (BOPDS_CommonBlock::*)( const Standard_Integer ) const) static_cast<Standard_Boolean (BOPDS_CommonBlock::*)( const Standard_Integer ) const>(&BOPDS_CommonBlock::IsPaveBlockOnEdge),
R"#(Query Returns true if the common block contains a pave block that belongs to the edge with index <theIx>)#" , py::arg("theIndex")
)
.def("Contains",
(Standard_Boolean (BOPDS_CommonBlock::*)( const opencascade::handle<BOPDS_PaveBlock> & ) const) static_cast<Standard_Boolean (BOPDS_CommonBlock::*)( const opencascade::handle<BOPDS_PaveBlock> & ) const>(&BOPDS_CommonBlock::Contains),
R"#(Query Returns true if the common block contains a pave block that is equal to <thePB>)#" , py::arg("thePB")
)
.def("Contains",
(Standard_Boolean (BOPDS_CommonBlock::*)( const Standard_Integer ) const) static_cast<Standard_Boolean (BOPDS_CommonBlock::*)( const Standard_Integer ) const>(&BOPDS_CommonBlock::Contains),
R"#(Query Returns true if the common block contains the face with index equal to <theF>)#" , py::arg("theF")
)
.def("SetEdge",
(void (BOPDS_CommonBlock::*)( const Standard_Integer ) ) static_cast<void (BOPDS_CommonBlock::*)( const Standard_Integer ) >(&BOPDS_CommonBlock::SetEdge),
R"#(Modifier Assign the index <theEdge> as the edge index to all pave blocks of the common block)#" , py::arg("theEdge")
)
.def("Edge",
(Standard_Integer (BOPDS_CommonBlock::*)() const) static_cast<Standard_Integer (BOPDS_CommonBlock::*)() const>(&BOPDS_CommonBlock::Edge),
R"#(Selector Returns the index of the edge of all pave blocks of the common block)#"
)
.def("Dump",
(void (BOPDS_CommonBlock::*)() const) static_cast<void (BOPDS_CommonBlock::*)() const>(&BOPDS_CommonBlock::Dump),
R"#(None)#"
)
.def("SetRealPaveBlock",
(void (BOPDS_CommonBlock::*)( const opencascade::handle<BOPDS_PaveBlock> & ) ) static_cast<void (BOPDS_CommonBlock::*)( const opencascade::handle<BOPDS_PaveBlock> & ) >(&BOPDS_CommonBlock::SetRealPaveBlock),
R"#(Moves the pave blocks in the list to make the given pave block to be the first. It will be representative for the whole group.)#" , py::arg("thePB")
)
.def("SetTolerance",
(void (BOPDS_CommonBlock::*)( const Standard_Real ) ) static_cast<void (BOPDS_CommonBlock::*)( const Standard_Real ) >(&BOPDS_CommonBlock::SetTolerance),
R"#(Sets the tolerance for the common block)#" , py::arg("theTol")
)
.def("Tolerance",
(Standard_Real (BOPDS_CommonBlock::*)() const) static_cast<Standard_Real (BOPDS_CommonBlock::*)() const>(&BOPDS_CommonBlock::Tolerance),
R"#(Return the tolerance of common block)#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&BOPDS_CommonBlock::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPDS_CommonBlock::get_type_descriptor),
R"#(None)#"
)
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("PaveBlocks",
(const BOPDS_ListOfPaveBlock & (BOPDS_CommonBlock::*)() const) static_cast<const BOPDS_ListOfPaveBlock & (BOPDS_CommonBlock::*)() const>(&BOPDS_CommonBlock::PaveBlocks),
R"#(Selector Returns the list of pave blocks of the common block)#"
)
.def("Faces",
(const TColStd_ListOfInteger & (BOPDS_CommonBlock::*)() const) static_cast<const TColStd_ListOfInteger & (BOPDS_CommonBlock::*)() const>(&BOPDS_CommonBlock::Faces),
R"#(Selector Returns the list of indices of faces of the common block)#"
, py::return_value_policy::reference_internal
)
.def("PaveBlock1",
(const opencascade::handle<BOPDS_PaveBlock> & (BOPDS_CommonBlock::*)() const) static_cast<const opencascade::handle<BOPDS_PaveBlock> & (BOPDS_CommonBlock::*)() const>(&BOPDS_CommonBlock::PaveBlock1),
R"#(Selector Returns the first pave block of the common block)#"
)
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (BOPDS_CommonBlock::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPDS_CommonBlock::*)() const>(&BOPDS_CommonBlock::DynamicType),
R"#(None)#"
)
;
// Class BOPDS_CoupleOfPaveBlocks from ./opencascade/BOPDS_CoupleOfPaveBlocks.hxx
klass = m.attr("BOPDS_CoupleOfPaveBlocks");
// nested enums
static_cast<py::class_<BOPDS_CoupleOfPaveBlocks , shared_ptr<BOPDS_CoupleOfPaveBlocks> >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const opencascade::handle<BOPDS_PaveBlock> &,const opencascade::handle<BOPDS_PaveBlock> & >() , py::arg("thePB1"), py::arg("thePB2") )
// custom constructors
// methods
.def("SetIndex",
(void (BOPDS_CoupleOfPaveBlocks::*)( const Standard_Integer ) ) static_cast<void (BOPDS_CoupleOfPaveBlocks::*)( const Standard_Integer ) >(&BOPDS_CoupleOfPaveBlocks::SetIndex),
R"#(Sets an index)#" , py::arg("theIndex")
)
.def("Index",
(Standard_Integer (BOPDS_CoupleOfPaveBlocks::*)() const) static_cast<Standard_Integer (BOPDS_CoupleOfPaveBlocks::*)() const>(&BOPDS_CoupleOfPaveBlocks::Index),
R"#(Returns the index)#"
)
.def("SetIndexInterf",
(void (BOPDS_CoupleOfPaveBlocks::*)( const Standard_Integer ) ) static_cast<void (BOPDS_CoupleOfPaveBlocks::*)( const Standard_Integer ) >(&BOPDS_CoupleOfPaveBlocks::SetIndexInterf),
R"#(Sets an index of an interference)#" , py::arg("theIndex")
)
.def("IndexInterf",
(Standard_Integer (BOPDS_CoupleOfPaveBlocks::*)() const) static_cast<Standard_Integer (BOPDS_CoupleOfPaveBlocks::*)() const>(&BOPDS_CoupleOfPaveBlocks::IndexInterf),
R"#(Returns the index of an interference)#"
)
.def("SetPaveBlocks",
(void (BOPDS_CoupleOfPaveBlocks::*)( const opencascade::handle<BOPDS_PaveBlock> & , const opencascade::handle<BOPDS_PaveBlock> & ) ) static_cast<void (BOPDS_CoupleOfPaveBlocks::*)( const opencascade::handle<BOPDS_PaveBlock> & , const opencascade::handle<BOPDS_PaveBlock> & ) >(&BOPDS_CoupleOfPaveBlocks::SetPaveBlocks),
R"#(Sets pave blocks)#" , py::arg("thePB1"), py::arg("thePB2")
)
.def("SetPaveBlock1",
(void (BOPDS_CoupleOfPaveBlocks::*)( const opencascade::handle<BOPDS_PaveBlock> & ) ) static_cast<void (BOPDS_CoupleOfPaveBlocks::*)( const opencascade::handle<BOPDS_PaveBlock> & ) >(&BOPDS_CoupleOfPaveBlocks::SetPaveBlock1),
R"#(Sets the first pave block)#" , py::arg("thePB")
)
.def("SetPaveBlock2",
(void (BOPDS_CoupleOfPaveBlocks::*)( const opencascade::handle<BOPDS_PaveBlock> & ) ) static_cast<void (BOPDS_CoupleOfPaveBlocks::*)( const opencascade::handle<BOPDS_PaveBlock> & ) >(&BOPDS_CoupleOfPaveBlocks::SetPaveBlock2),
R"#(Sets the second pave block)#" , py::arg("thePB")
)
.def("SetTolerance",
(void (BOPDS_CoupleOfPaveBlocks::*)( const Standard_Real ) ) static_cast<void (BOPDS_CoupleOfPaveBlocks::*)( const Standard_Real ) >(&BOPDS_CoupleOfPaveBlocks::SetTolerance),
R"#(Sets the tolerance associated with this couple)#" , py::arg("theTol")
)
.def("Tolerance",
(Standard_Real (BOPDS_CoupleOfPaveBlocks::*)() const) static_cast<Standard_Real (BOPDS_CoupleOfPaveBlocks::*)() const>(&BOPDS_CoupleOfPaveBlocks::Tolerance),
R"#(Returns the tolerance associated with this couple)#"
)
// methods using call by reference i.s.o. return
.def("PaveBlocks",
[]( BOPDS_CoupleOfPaveBlocks &self , BOPDS_PaveBlock& thePB1,BOPDS_PaveBlock& thePB2 ){
opencascade::handle<BOPDS_PaveBlock> thePB1_ptr; thePB1_ptr = &thePB1;
opencascade::handle<BOPDS_PaveBlock> thePB2_ptr; thePB2_ptr = &thePB2;
self.PaveBlocks(thePB1_ptr,thePB2_ptr);
if ( thePB1_ptr.get() != &thePB1 ) copy_if_copy_constructible(thePB1, *thePB1_ptr);
if ( thePB2_ptr.get() != &thePB2 ) copy_if_copy_constructible(thePB2, *thePB2_ptr);
return std::make_tuple(); },
R"#(Returns pave blocks)#" , py::arg("thePB1"), py::arg("thePB2")
)
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("PaveBlock1",
(const opencascade::handle<BOPDS_PaveBlock> & (BOPDS_CoupleOfPaveBlocks::*)() const) static_cast<const opencascade::handle<BOPDS_PaveBlock> & (BOPDS_CoupleOfPaveBlocks::*)() const>(&BOPDS_CoupleOfPaveBlocks::PaveBlock1),
R"#(Returns the first pave block)#"
)
.def("PaveBlock2",
(const opencascade::handle<BOPDS_PaveBlock> & (BOPDS_CoupleOfPaveBlocks::*)() const) static_cast<const opencascade::handle<BOPDS_PaveBlock> & (BOPDS_CoupleOfPaveBlocks::*)() const>(&BOPDS_CoupleOfPaveBlocks::PaveBlock2),
R"#(Returns the second pave block)#"
)
;
// Class BOPDS_Curve from ./opencascade/BOPDS_Curve.hxx
klass = m.attr("BOPDS_Curve");
// nested enums
static_cast<py::class_<BOPDS_Curve , shared_ptr<BOPDS_Curve> >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const opencascade::handle<NCollection_BaseAllocator> & >() , py::arg("theAllocator") )
// custom constructors
// methods
.def("SetCurve",
(void (BOPDS_Curve::*)( const IntTools_Curve & ) ) static_cast<void (BOPDS_Curve::*)( const IntTools_Curve & ) >(&BOPDS_Curve::SetCurve),
R"#(Modifier Sets the curve <theC>)#" , py::arg("theC")
)
.def("SetBox",
(void (BOPDS_Curve::*)( const Bnd_Box & ) ) static_cast<void (BOPDS_Curve::*)( const Bnd_Box & ) >(&BOPDS_Curve::SetBox),
R"#(Modifier Sets the bounding box <theBox> of the curve)#" , py::arg("theBox")
)
.def("SetPaveBlocks",
(void (BOPDS_Curve::*)( const NCollection_List<opencascade::handle<BOPDS_PaveBlock>> & ) ) static_cast<void (BOPDS_Curve::*)( const NCollection_List<opencascade::handle<BOPDS_PaveBlock>> & ) >(&BOPDS_Curve::SetPaveBlocks),
R"#(None)#" , py::arg("theLPB")
)
.def("InitPaveBlock1",
(void (BOPDS_Curve::*)() ) static_cast<void (BOPDS_Curve::*)() >(&BOPDS_Curve::InitPaveBlock1),
R"#(Creates initial pave block of the curve)#"
)
.def("HasEdge",
(Standard_Boolean (BOPDS_Curve::*)() const) static_cast<Standard_Boolean (BOPDS_Curve::*)() const>(&BOPDS_Curve::HasEdge),
R"#(Query Returns true if at least one pave block of the curve has edge)#"
)
.def("SetTolerance",
(void (BOPDS_Curve::*)( const Standard_Real ) ) static_cast<void (BOPDS_Curve::*)( const Standard_Real ) >(&BOPDS_Curve::SetTolerance),
R"#(Sets the tolerance for the curve.)#" , py::arg("theTol")
)
.def("Tolerance",
(Standard_Real (BOPDS_Curve::*)() const) static_cast<Standard_Real (BOPDS_Curve::*)() const>(&BOPDS_Curve::Tolerance),
R"#(Returns the tolerance of the curve)#"
)
.def("TangentialTolerance",
(Standard_Real (BOPDS_Curve::*)() const) static_cast<Standard_Real (BOPDS_Curve::*)() const>(&BOPDS_Curve::TangentialTolerance),
R"#(Returns the tangential tolerance of the curve)#"
)
.def("SetCurve",
(void (BOPDS_Curve::*)( const IntTools_Curve & ) ) static_cast<void (BOPDS_Curve::*)( const IntTools_Curve & ) >(&BOPDS_Curve::SetCurve),
R"#(Modifier Sets the curve <theC>)#" , py::arg("theCurve")
)
.def("SetPaveBlocks",
(void (BOPDS_Curve::*)( const NCollection_List<opencascade::handle<BOPDS_PaveBlock>> & ) ) static_cast<void (BOPDS_Curve::*)( const NCollection_List<opencascade::handle<BOPDS_PaveBlock>> & ) >(&BOPDS_Curve::SetPaveBlocks),
R"#(None)#" , py::arg("theLPB")
)
.def("InitPaveBlock1",
(void (BOPDS_Curve::*)() ) static_cast<void (BOPDS_Curve::*)() >(&BOPDS_Curve::InitPaveBlock1),
R"#(Creates initial pave block of the curve)#"
)
.def("SetBox",
(void (BOPDS_Curve::*)( const Bnd_Box & ) ) static_cast<void (BOPDS_Curve::*)( const Bnd_Box & ) >(&BOPDS_Curve::SetBox),
R"#(Modifier Sets the bounding box <theBox> of the curve)#" , py::arg("theBox")
)
.def("HasEdge",
(Standard_Boolean (BOPDS_Curve::*)() const) static_cast<Standard_Boolean (BOPDS_Curve::*)() const>(&BOPDS_Curve::HasEdge),
R"#(Query Returns true if at least one pave block of the curve has edge)#"
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("Curve",
(const IntTools_Curve & (BOPDS_Curve::*)() const) static_cast<const IntTools_Curve & (BOPDS_Curve::*)() const>(&BOPDS_Curve::Curve),
R"#(Selector Returns the curve)#"
)
.def("Box",
(const Bnd_Box & (BOPDS_Curve::*)() const) static_cast<const Bnd_Box & (BOPDS_Curve::*)() const>(&BOPDS_Curve::Box),
R"#(Selector Returns the bounding box of the curve)#"
)
.def("ChangeBox",
(Bnd_Box & (BOPDS_Curve::*)() ) static_cast<Bnd_Box & (BOPDS_Curve::*)() >(&BOPDS_Curve::ChangeBox),
R"#(Selector/Modifier Returns the bounding box of the curve)#"
, py::return_value_policy::reference_internal
)
.def("PaveBlocks",
(const BOPDS_ListOfPaveBlock & (BOPDS_Curve::*)() const) static_cast<const BOPDS_ListOfPaveBlock & (BOPDS_Curve::*)() const>(&BOPDS_Curve::PaveBlocks),
R"#(Selector Returns the list of pave blocks of the curve)#"
)
.def("ChangePaveBlocks",
(BOPDS_ListOfPaveBlock & (BOPDS_Curve::*)() ) static_cast<BOPDS_ListOfPaveBlock & (BOPDS_Curve::*)() >(&BOPDS_Curve::ChangePaveBlocks),
R"#(Selector/Modifier Returns the list of pave blocks of the curve)#"
, py::return_value_policy::reference_internal
)
.def("ChangePaveBlock1",
(opencascade::handle<BOPDS_PaveBlock> & (BOPDS_Curve::*)() ) static_cast<opencascade::handle<BOPDS_PaveBlock> & (BOPDS_Curve::*)() >(&BOPDS_Curve::ChangePaveBlock1),
R"#(Selector/Modifier Returns initial pave block of the curve)#"
)
.def("TechnoVertices",
(const TColStd_ListOfInteger & (BOPDS_Curve::*)() const) static_cast<const TColStd_ListOfInteger & (BOPDS_Curve::*)() const>(&BOPDS_Curve::TechnoVertices),
R"#(Selector Returns list of indices of technologic vertices of the curve)#"
, py::return_value_policy::reference_internal
)
.def("ChangeTechnoVertices",
(TColStd_ListOfInteger & (BOPDS_Curve::*)() ) static_cast<TColStd_ListOfInteger & (BOPDS_Curve::*)() >(&BOPDS_Curve::ChangeTechnoVertices),
R"#(Selector/Modifier Returns list of indices of technologic vertices of the curve)#"
, py::return_value_policy::reference_internal
)
.def("Curve",
(const IntTools_Curve & (BOPDS_Curve::*)() const) static_cast<const IntTools_Curve & (BOPDS_Curve::*)() const>(&BOPDS_Curve::Curve),
R"#(Selector Returns the curve)#"
)
.def("PaveBlocks",
(const BOPDS_ListOfPaveBlock & (BOPDS_Curve::*)() const) static_cast<const BOPDS_ListOfPaveBlock & (BOPDS_Curve::*)() const>(&BOPDS_Curve::PaveBlocks),
R"#(Selector Returns the list of pave blocks of the curve)#"
)
.def("ChangePaveBlocks",
(BOPDS_ListOfPaveBlock & (BOPDS_Curve::*)() ) static_cast<BOPDS_ListOfPaveBlock & (BOPDS_Curve::*)() >(&BOPDS_Curve::ChangePaveBlocks),
R"#(Selector/Modifier Returns the list of pave blocks of the curve)#"
, py::return_value_policy::reference_internal
)
.def("ChangePaveBlock1",
(opencascade::handle<BOPDS_PaveBlock> & (BOPDS_Curve::*)() ) static_cast<opencascade::handle<BOPDS_PaveBlock> & (BOPDS_Curve::*)() >(&BOPDS_Curve::ChangePaveBlock1),
R"#(Selector/Modifier Returns initial pave block of the curve)#"
)
.def("TechnoVertices",
(const TColStd_ListOfInteger & (BOPDS_Curve::*)() const) static_cast<const TColStd_ListOfInteger & (BOPDS_Curve::*)() const>(&BOPDS_Curve::TechnoVertices),
R"#(Selector Returns list of indices of technologic vertices of the curve)#"
, py::return_value_policy::reference_internal
)
.def("ChangeTechnoVertices",
(TColStd_ListOfInteger & (BOPDS_Curve::*)() ) static_cast<TColStd_ListOfInteger & (BOPDS_Curve::*)() >(&BOPDS_Curve::ChangeTechnoVertices),
R"#(Selector/Modifier Returns list of indices of technologic vertices of the curve)#"
, py::return_value_policy::reference_internal
)
.def("Box",
(const Bnd_Box & (BOPDS_Curve::*)() const) static_cast<const Bnd_Box & (BOPDS_Curve::*)() const>(&BOPDS_Curve::Box),
R"#(Selector Returns the bounding box of the curve)#"
)
.def("ChangeBox",
(Bnd_Box & (BOPDS_Curve::*)() ) static_cast<Bnd_Box & (BOPDS_Curve::*)() >(&BOPDS_Curve::ChangeBox),
R"#(Selector/Modifier Returns the bounding box of the curve)#"
, py::return_value_policy::reference_internal
)
;
// Class BOPDS_DS from ./opencascade/BOPDS_DS.hxx
klass = m.attr("BOPDS_DS");
// nested enums
static_cast<py::class_<BOPDS_DS , shared_ptr<BOPDS_DS> >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const opencascade::handle<NCollection_BaseAllocator> & >() , py::arg("theAllocator") )
// custom constructors
// methods
.def("Clear",
(void (BOPDS_DS::*)() ) static_cast<void (BOPDS_DS::*)() >(&BOPDS_DS::Clear),
R"#(Clears the contents)#"
)
.def("SetArguments",
(void (BOPDS_DS::*)( const NCollection_List<TopoDS_Shape> & ) ) static_cast<void (BOPDS_DS::*)( const NCollection_List<TopoDS_Shape> & ) >(&BOPDS_DS::SetArguments),
R"#(Modifier Sets the arguments [theLS] of an operation)#" , py::arg("theLS")
)
.def("Init",
(void (BOPDS_DS::*)( const Standard_Real ) ) static_cast<void (BOPDS_DS::*)( const Standard_Real ) >(&BOPDS_DS::Init),
R"#(Initializes the data structure for the arguments)#" , py::arg("theFuzz")=static_cast<const Standard_Real>(Precision :: Confusion ( ))
)
.def("NbShapes",
(Standard_Integer (BOPDS_DS::*)() const) static_cast<Standard_Integer (BOPDS_DS::*)() const>(&BOPDS_DS::NbShapes),
R"#(Selector Returns the total number of shapes stored)#"
)
.def("NbSourceShapes",
(Standard_Integer (BOPDS_DS::*)() const) static_cast<Standard_Integer (BOPDS_DS::*)() const>(&BOPDS_DS::NbSourceShapes),
R"#(Selector Returns the total number of source shapes stored)#"
)
.def("NbRanges",
(Standard_Integer (BOPDS_DS::*)() const) static_cast<Standard_Integer (BOPDS_DS::*)() const>(&BOPDS_DS::NbRanges),
R"#(Selector Returns the number of index ranges)#"
)
.def("Range",
(const BOPDS_IndexRange & (BOPDS_DS::*)( const Standard_Integer ) const) static_cast<const BOPDS_IndexRange & (BOPDS_DS::*)( const Standard_Integer ) const>(&BOPDS_DS::Range),
R"#(Selector Returns the index range "i")#" , py::arg("theIndex")
)
.def("Rank",
(Standard_Integer (BOPDS_DS::*)( const Standard_Integer ) const) static_cast<Standard_Integer (BOPDS_DS::*)( const Standard_Integer ) const>(&BOPDS_DS::Rank),
R"#(Selector Returns the rank of the shape of index "i")#" , py::arg("theIndex")
)
.def("IsNewShape",
(Standard_Boolean (BOPDS_DS::*)( const Standard_Integer ) const) static_cast<Standard_Boolean (BOPDS_DS::*)( const Standard_Integer ) const>(&BOPDS_DS::IsNewShape),
R"#(Returns true if the shape of index "i" is not the source shape/sub-shape)#" , py::arg("theIndex")
)
.def("Append",
(Standard_Integer (BOPDS_DS::*)( const BOPDS_ShapeInfo & ) ) static_cast<Standard_Integer (BOPDS_DS::*)( const BOPDS_ShapeInfo & ) >(&BOPDS_DS::Append),
R"#(Modifier Appends the information about the shape [theSI] to the data structure Returns the index of theSI in the data structure)#" , py::arg("theSI")
)
.def("Append",
(Standard_Integer (BOPDS_DS::*)( const TopoDS_Shape & ) ) static_cast<Standard_Integer (BOPDS_DS::*)( const TopoDS_Shape & ) >(&BOPDS_DS::Append),
R"#(Modifier Appends the default information about the shape [theS] to the data structure Returns the index of theS in the data structure)#" , py::arg("theS")
)
.def("ShapeInfo",
(const BOPDS_ShapeInfo & (BOPDS_DS::*)( const Standard_Integer ) const) static_cast<const BOPDS_ShapeInfo & (BOPDS_DS::*)( const Standard_Integer ) const>(&BOPDS_DS::ShapeInfo),
R"#(Selector Returns the information about the shape with index theIndex)#" , py::arg("theIndex")
)
.def("ChangeShapeInfo",
(BOPDS_ShapeInfo & (BOPDS_DS::*)( const Standard_Integer ) ) static_cast<BOPDS_ShapeInfo & (BOPDS_DS::*)( const Standard_Integer ) >(&BOPDS_DS::ChangeShapeInfo),
R"#(Selector/Modifier Returns the information about the shape with index theIndex)#" , py::arg("theIndex")
)
.def("Shape",
(const TopoDS_Shape & (BOPDS_DS::*)( const Standard_Integer ) const) static_cast<const TopoDS_Shape & (BOPDS_DS::*)( const Standard_Integer ) const>(&BOPDS_DS::Shape),
R"#(Selector Returns the shape with index theIndex)#" , py::arg("theIndex")
)
.def("Index",
(Standard_Integer (BOPDS_DS::*)( const TopoDS_Shape & ) const) static_cast<Standard_Integer (BOPDS_DS::*)( const TopoDS_Shape & ) const>(&BOPDS_DS::Index),
R"#(Selector Returns the index of the shape theS)#" , py::arg("theS")
)
.def("HasPaveBlocks",
(Standard_Boolean (BOPDS_DS::*)( const Standard_Integer ) const) static_cast<Standard_Boolean (BOPDS_DS::*)( const Standard_Integer ) const>(&BOPDS_DS::HasPaveBlocks),
R"#(Query Returns true if the shape with index theIndex has the information about pave blocks)#" , py::arg("theIndex")
)
.def("PaveBlocks",
(const BOPDS_ListOfPaveBlock & (BOPDS_DS::*)( const Standard_Integer ) const) static_cast<const BOPDS_ListOfPaveBlock & (BOPDS_DS::*)( const Standard_Integer ) const>(&BOPDS_DS::PaveBlocks),
R"#(Selector Returns the pave blocks for the shape with index theIndex)#" , py::arg("theIndex")
)
.def("ChangePaveBlocks",
(BOPDS_ListOfPaveBlock & (BOPDS_DS::*)( const Standard_Integer ) ) static_cast<BOPDS_ListOfPaveBlock & (BOPDS_DS::*)( const Standard_Integer ) >(&BOPDS_DS::ChangePaveBlocks),
R"#(Selector/Modifier Returns the pave blocks for the shape with index theIndex)#" , py::arg("theIndex")
)
.def("UpdatePaveBlocks",
(void (BOPDS_DS::*)() ) static_cast<void (BOPDS_DS::*)() >(&BOPDS_DS::UpdatePaveBlocks),
R"#(Update the pave blocks for the all shapes in data structure)#"
)
.def("UpdatePaveBlock",
(void (BOPDS_DS::*)( const opencascade::handle<BOPDS_PaveBlock> & ) ) static_cast<void (BOPDS_DS::*)( const opencascade::handle<BOPDS_PaveBlock> & ) >(&BOPDS_DS::UpdatePaveBlock),
R"#(Update the pave block thePB)#" , py::arg("thePB")
)
.def("UpdateCommonBlock",
(void (BOPDS_DS::*)( const opencascade::handle<BOPDS_CommonBlock> & , const Standard_Real ) ) static_cast<void (BOPDS_DS::*)( const opencascade::handle<BOPDS_CommonBlock> & , const Standard_Real ) >(&BOPDS_DS::UpdateCommonBlock),
R"#(Update the common block theCB)#" , py::arg("theCB"), py::arg("theFuzz")
)
.def("IsCommonBlock",
(Standard_Boolean (BOPDS_DS::*)( const opencascade::handle<BOPDS_PaveBlock> & ) const) static_cast<Standard_Boolean (BOPDS_DS::*)( const opencascade::handle<BOPDS_PaveBlock> & ) const>(&BOPDS_DS::IsCommonBlock),
R"#(Query Returns true if the pave block is common block)#" , py::arg("thePB")
)
.def("CommonBlock",
(opencascade::handle<BOPDS_CommonBlock> (BOPDS_DS::*)( const opencascade::handle<BOPDS_PaveBlock> & ) const) static_cast<opencascade::handle<BOPDS_CommonBlock> (BOPDS_DS::*)( const opencascade::handle<BOPDS_PaveBlock> & ) const>(&BOPDS_DS::CommonBlock),
R"#(Selector Returns the common block)#" , py::arg("thePB")
)
.def("SetCommonBlock",
(void (BOPDS_DS::*)( const opencascade::handle<BOPDS_PaveBlock> & , const opencascade::handle<BOPDS_CommonBlock> & ) ) static_cast<void (BOPDS_DS::*)( const opencascade::handle<BOPDS_PaveBlock> & , const opencascade::handle<BOPDS_CommonBlock> & ) >(&BOPDS_DS::SetCommonBlock),
R"#(Modifier Sets the common block <theCB>)#" , py::arg("thePB"), py::arg("theCB")
)
.def("RealPaveBlock",
(opencascade::handle<BOPDS_PaveBlock> (BOPDS_DS::*)( const opencascade::handle<BOPDS_PaveBlock> & ) const) static_cast<opencascade::handle<BOPDS_PaveBlock> (BOPDS_DS::*)( const opencascade::handle<BOPDS_PaveBlock> & ) const>(&BOPDS_DS::RealPaveBlock),
R"#(Selector Returns the real first pave block)#" , py::arg("thePB")
)
.def("IsCommonBlockOnEdge",
(Standard_Boolean (BOPDS_DS::*)( const opencascade::handle<BOPDS_PaveBlock> & ) const) static_cast<Standard_Boolean (BOPDS_DS::*)( const opencascade::handle<BOPDS_PaveBlock> & ) const>(&BOPDS_DS::IsCommonBlockOnEdge),
R"#(Query Returns true if common block contains more then one pave block)#" , py::arg("thePB")
)
.def("HasFaceInfo",
(Standard_Boolean (BOPDS_DS::*)( const Standard_Integer ) const) static_cast<Standard_Boolean (BOPDS_DS::*)( const Standard_Integer ) const>(&BOPDS_DS::HasFaceInfo),
R"#(Query Returns true if the shape with index theIndex has the information about state of face)#" , py::arg("theIndex")
)
.def("FaceInfo",
(const BOPDS_FaceInfo & (BOPDS_DS::*)( const Standard_Integer ) const) static_cast<const BOPDS_FaceInfo & (BOPDS_DS::*)( const Standard_Integer ) const>(&BOPDS_DS::FaceInfo),
R"#(Selector Returns the state of face with index theIndex)#" , py::arg("theIndex")
)
.def("ChangeFaceInfo",
(BOPDS_FaceInfo & (BOPDS_DS::*)( const Standard_Integer ) ) static_cast<BOPDS_FaceInfo & (BOPDS_DS::*)( const Standard_Integer ) >(&BOPDS_DS::ChangeFaceInfo),
R"#(Selector/Modifier Returns the state of face with index theIndex)#" , py::arg("theIndex")
)
.def("UpdateFaceInfoIn",
(void (BOPDS_DS::*)( const Standard_Integer ) ) static_cast<void (BOPDS_DS::*)( const Standard_Integer ) >(&BOPDS_DS::UpdateFaceInfoIn),
R"#(Update the state In of face with index theIndex)#" , py::arg("theIndex")
)
.def("UpdateFaceInfoIn",
(void (BOPDS_DS::*)( const NCollection_Map<Standard_Integer> & ) ) static_cast<void (BOPDS_DS::*)( const NCollection_Map<Standard_Integer> & ) >(&BOPDS_DS::UpdateFaceInfoIn),
R"#(Update the state IN for all faces in the given map)#" , py::arg("theFaces")
)
.def("UpdateFaceInfoOn",
(void (BOPDS_DS::*)( const Standard_Integer ) ) static_cast<void (BOPDS_DS::*)( const Standard_Integer ) >(&BOPDS_DS::UpdateFaceInfoOn),
R"#(Update the state On of face with index theIndex)#" , py::arg("theIndex")
)
.def("UpdateFaceInfoOn",
(void (BOPDS_DS::*)( const NCollection_Map<Standard_Integer> & ) ) static_cast<void (BOPDS_DS::*)( const NCollection_Map<Standard_Integer> & ) >(&BOPDS_DS::UpdateFaceInfoOn),
R"#(Update the state ON for all faces in the given map)#" , py::arg("theFaces")
)
.def("FaceInfoOn",
(void (BOPDS_DS::*)( const Standard_Integer , NCollection_IndexedMap<opencascade::handle<BOPDS_PaveBlock>> & , NCollection_Map<Standard_Integer> & ) ) static_cast<void (BOPDS_DS::*)( const Standard_Integer , NCollection_IndexedMap<opencascade::handle<BOPDS_PaveBlock>> & , NCollection_Map<Standard_Integer> & ) >(&BOPDS_DS::FaceInfoOn),
R"#(Selector Returns the state On [theMPB,theMVP] of face with index theIndex)#" , py::arg("theIndex"), py::arg("theMPB"), py::arg("theMVP")
)
.def("FaceInfoIn",
(void (BOPDS_DS::*)( const Standard_Integer , NCollection_IndexedMap<opencascade::handle<BOPDS_PaveBlock>> & , NCollection_Map<Standard_Integer> & ) ) static_cast<void (BOPDS_DS::*)( const Standard_Integer , NCollection_IndexedMap<opencascade::handle<BOPDS_PaveBlock>> & , NCollection_Map<Standard_Integer> & ) >(&BOPDS_DS::FaceInfoIn),
R"#(Selector Returns the state In [theMPB,theMVP] of face with index theIndex)#" , py::arg("theIndex"), py::arg("theMPB"), py::arg("theMVP")
)
.def("AloneVertices",
(void (BOPDS_DS::*)( const Standard_Integer , NCollection_List<Standard_Integer> & ) const) static_cast<void (BOPDS_DS::*)( const Standard_Integer , NCollection_List<Standard_Integer> & ) const>(&BOPDS_DS::AloneVertices),
R"#(Selector Returns the indices of alone vertices for the face with index theIndex)#" , py::arg("theF"), py::arg("theLI")
)
.def("RefineFaceInfoOn",
(void (BOPDS_DS::*)() ) static_cast<void (BOPDS_DS::*)() >(&BOPDS_DS::RefineFaceInfoOn),
R"#(Refine the state On for the all faces having state information)#"
)
.def("RefineFaceInfoIn",
(void (BOPDS_DS::*)() ) static_cast<void (BOPDS_DS::*)() >(&BOPDS_DS::RefineFaceInfoIn),
R"#(Removes any pave block from list of having IN state if it has also the state ON.)#"
)
.def("SubShapesOnIn",
(void (BOPDS_DS::*)( const Standard_Integer , const Standard_Integer , NCollection_Map<Standard_Integer> & , NCollection_Map<Standard_Integer> & , NCollection_IndexedMap<opencascade::handle<BOPDS_PaveBlock>> & , NCollection_Map<opencascade::handle<BOPDS_PaveBlock>> & ) const) static_cast<void (BOPDS_DS::*)( const Standard_Integer , const Standard_Integer , NCollection_Map<Standard_Integer> & , NCollection_Map<Standard_Integer> & , NCollection_IndexedMap<opencascade::handle<BOPDS_PaveBlock>> & , NCollection_Map<opencascade::handle<BOPDS_PaveBlock>> & ) const>(&BOPDS_DS::SubShapesOnIn),
R"#(Returns information about ON/IN sub-shapes of the given faces.)#" , py::arg("theNF1"), py::arg("theNF2"), py::arg("theMVOnIn"), py::arg("theMVCommon"), py::arg("thePBOnIn"), py::arg("theCommonPB")
)
.def("SharedEdges",
(void (BOPDS_DS::*)( const Standard_Integer , const Standard_Integer , NCollection_List<Standard_Integer> & , const opencascade::handle<NCollection_BaseAllocator> & ) ) static_cast<void (BOPDS_DS::*)( const Standard_Integer , const Standard_Integer , NCollection_List<Standard_Integer> & , const opencascade::handle<NCollection_BaseAllocator> & ) >(&BOPDS_DS::SharedEdges),
R"#(Returns the indices of edges that are shared for the faces with indices theF1, theF2)#" , py::arg("theF1"), py::arg("theF2"), py::arg("theLI"), py::arg("theAllocator")
)
.def("AddShapeSD",
(void (BOPDS_DS::*)( const Standard_Integer , const Standard_Integer ) ) static_cast<void (BOPDS_DS::*)( const Standard_Integer , const Standard_Integer ) >(&BOPDS_DS::AddShapeSD),
R"#(Modifier Adds the information about same domain shapes with indices theIndex, theIndexSD)#" , py::arg("theIndex"), py::arg("theIndexSD")
)
.def("HasShapeSD",
(Standard_Boolean (BOPDS_DS::*)( const Standard_Integer , Standard_Integer & ) const) static_cast<Standard_Boolean (BOPDS_DS::*)( const Standard_Integer , Standard_Integer & ) const>(&BOPDS_DS::HasShapeSD),
R"#(Query Returns true if the shape with index theIndex has the same domain shape. In this case theIndexSD will contain the index of same domain shape found)#" , py::arg("theIndex"), py::arg("theIndexSD")
)
.def("AddInterf",
(Standard_Boolean (BOPDS_DS::*)( const Standard_Integer , const Standard_Integer ) ) static_cast<Standard_Boolean (BOPDS_DS::*)( const Standard_Integer , const Standard_Integer ) >(&BOPDS_DS::AddInterf),
R"#(Modifier Adds the information about an interference between shapes with indices theI1, theI2 to the summary table of interferences)#" , py::arg("theI1"), py::arg("theI2")
)
.def("HasInterf",
(Standard_Boolean (BOPDS_DS::*)( const Standard_Integer ) const) static_cast<Standard_Boolean (BOPDS_DS::*)( const Standard_Integer ) const>(&BOPDS_DS::HasInterf),
R"#(Query Returns true if the shape with index theI is interferred)#" , py::arg("theI")
)
.def("HasInterf",
(Standard_Boolean (BOPDS_DS::*)( const Standard_Integer , const Standard_Integer ) const) static_cast<Standard_Boolean (BOPDS_DS::*)( const Standard_Integer , const Standard_Integer ) const>(&BOPDS_DS::HasInterf),
R"#(Query Returns true if the shapes with indices theI1, theI2 are interferred)#" , py::arg("theI1"), py::arg("theI2")
)
.def("HasInterfShapeSubShapes",
(Standard_Boolean (BOPDS_DS::*)( const Standard_Integer , const Standard_Integer , const Standard_Boolean ) const) static_cast<Standard_Boolean (BOPDS_DS::*)( const Standard_Integer , const Standard_Integer , const Standard_Boolean ) const>(&BOPDS_DS::HasInterfShapeSubShapes),
R"#(Query Returns true if the shape with index theI1 is interfered with any sub-shape of the shape with index theI2 (theFlag=true) all sub-shapes of the shape with index theI2 (theFlag=false))#" , py::arg("theI1"), py::arg("theI2"), py::arg("theFlag")=static_cast<const Standard_Boolean>(Standard_True)
)
.def("HasInterfSubShapes",
(Standard_Boolean (BOPDS_DS::*)( const Standard_Integer , const Standard_Integer ) const) static_cast<Standard_Boolean (BOPDS_DS::*)( const Standard_Integer , const Standard_Integer ) const>(&BOPDS_DS::HasInterfSubShapes),
R"#(Query Returns true if the shapes with indices theI1, theI2 have interferred sub-shapes)#" , py::arg("theI1"), py::arg("theI2")
)
.def("Dump",
(void (BOPDS_DS::*)() const) static_cast<void (BOPDS_DS::*)() const>(&BOPDS_DS::Dump),
R"#(None)#"
)
.def("IsSubShape",
(Standard_Boolean (BOPDS_DS::*)( const Standard_Integer , const Standard_Integer ) ) static_cast<Standard_Boolean (BOPDS_DS::*)( const Standard_Integer , const Standard_Integer ) >(&BOPDS_DS::IsSubShape),
R"#(None)#" , py::arg("theI1"), py::arg("theI2")
)
.def("Paves",
(void (BOPDS_DS::*)( const Standard_Integer , NCollection_List<BOPDS_Pave> & ) ) static_cast<void (BOPDS_DS::*)( const Standard_Integer , NCollection_List<BOPDS_Pave> & ) >(&BOPDS_DS::Paves),
R"#(Fills theLP with sorted paves of the shape with index theIndex)#" , py::arg("theIndex"), py::arg("theLP")
)
.def("UpdatePaveBlocksWithSDVertices",
(void (BOPDS_DS::*)() ) static_cast<void (BOPDS_DS::*)() >(&BOPDS_DS::UpdatePaveBlocksWithSDVertices),
R"#(Update the pave blocks for all shapes in data structure)#"
)
.def("UpdatePaveBlockWithSDVertices",
(void (BOPDS_DS::*)( const opencascade::handle<BOPDS_PaveBlock> & ) ) static_cast<void (BOPDS_DS::*)( const opencascade::handle<BOPDS_PaveBlock> & ) >(&BOPDS_DS::UpdatePaveBlockWithSDVertices),
R"#(Update the pave block for all shapes in data structure)#" , py::arg("thePB")
)
.def("UpdateCommonBlockWithSDVertices",
(void (BOPDS_DS::*)( const opencascade::handle<BOPDS_CommonBlock> & ) ) static_cast<void (BOPDS_DS::*)( const opencascade::handle<BOPDS_CommonBlock> & ) >(&BOPDS_DS::UpdateCommonBlockWithSDVertices),
R"#(Update the pave block of the common block for all shapes in data structure)#" , py::arg("theCB")
)
.def("InitPaveBlocksForVertex",
(void (BOPDS_DS::*)( const Standard_Integer ) ) static_cast<void (BOPDS_DS::*)( const Standard_Integer ) >(&BOPDS_DS::InitPaveBlocksForVertex),
R"#(None)#" , py::arg("theNV")
)
.def("ReleasePaveBlocks",
(void (BOPDS_DS::*)() ) static_cast<void (BOPDS_DS::*)() >(&BOPDS_DS::ReleasePaveBlocks),
R"#(Clears information about PaveBlocks for the untouched edges)#"
)
.def("IsValidShrunkData",
(Standard_Boolean (BOPDS_DS::*)( const opencascade::handle<BOPDS_PaveBlock> & ) ) static_cast<Standard_Boolean (BOPDS_DS::*)( const opencascade::handle<BOPDS_PaveBlock> & ) >(&BOPDS_DS::IsValidShrunkData),
R"#(Checks if the existing shrunk data of the pave block is still valid. The shrunk data may become invalid if e.g. the vertices of the pave block have been replaced with the new one with bigger tolerances, or the tolerances of the existing vertices have been increased.)#" , py::arg("thePB")
)
.def("BuildBndBoxSolid",
(void (BOPDS_DS::*)( const Standard_Integer , Bnd_Box & , const Standard_Boolean ) ) static_cast<void (BOPDS_DS::*)( const Standard_Integer , Bnd_Box & , const Standard_Boolean ) >(&BOPDS_DS::BuildBndBoxSolid),
R"#(Computes bounding box <theBox> for the solid with DS-index <theIndex>. The flag <theCheckInverted> enables/disables the check of the solid for inverted status. By default the solids will be checked.)#" , py::arg("theIndex"), py::arg("theBox"), py::arg("theCheckInverted")=static_cast<const Standard_Boolean>(Standard_True)
)
.def("AddInterf",
(Standard_Boolean (BOPDS_DS::*)( const Standard_Integer , const Standard_Integer ) ) static_cast<Standard_Boolean (BOPDS_DS::*)( const Standard_Integer , const Standard_Integer ) >(&BOPDS_DS::AddInterf),
R"#(Modifier Adds the information about an interference between shapes with indices theI1, theI2 to the summary table of interferences)#" , py::arg("theI1"), py::arg("theI2")
)
.def("HasInterf",
(Standard_Boolean (BOPDS_DS::*)( const Standard_Integer ) const) static_cast<Standard_Boolean (BOPDS_DS::*)( const Standard_Integer ) const>(&BOPDS_DS::HasInterf),
R"#(Query Returns true if the shape with index theI is interferred)#" , py::arg("theI")
)
.def("HasInterf",
(Standard_Boolean (BOPDS_DS::*)( const Standard_Integer , const Standard_Integer ) const) static_cast<Standard_Boolean (BOPDS_DS::*)( const Standard_Integer , const Standard_Integer ) const>(&BOPDS_DS::HasInterf),
R"#(Query Returns true if the shapes with indices theI1, theI2 are interferred)#" , py::arg("theI1"), py::arg("theI2")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("NbInterfTypes_s",
(Standard_Integer (*)() ) static_cast<Standard_Integer (*)() >(&BOPDS_DS::NbInterfTypes),
R"#(Returns the number of types of the interferences)#"
)
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("Allocator",
(const opencascade::handle<NCollection_BaseAllocator> & (BOPDS_DS::*)() const) static_cast<const opencascade::handle<NCollection_BaseAllocator> & (BOPDS_DS::*)() const>(&BOPDS_DS::Allocator),
R"#(Selector)#"
)
.def("Arguments",
(const TopTools_ListOfShape & (BOPDS_DS::*)() const) static_cast<const TopTools_ListOfShape & (BOPDS_DS::*)() const>(&BOPDS_DS::Arguments),
R"#(Selector Returns the arguments of an operation)#"
)
.def("PaveBlocksPool",
(const BOPDS_VectorOfListOfPaveBlock & (BOPDS_DS::*)() const) static_cast<const BOPDS_VectorOfListOfPaveBlock & (BOPDS_DS::*)() const>(&BOPDS_DS::PaveBlocksPool),
R"#(Selector Returns the information about pave blocks on source edges)#"
)
.def("ChangePaveBlocksPool",
(BOPDS_VectorOfListOfPaveBlock & (BOPDS_DS::*)() ) static_cast<BOPDS_VectorOfListOfPaveBlock & (BOPDS_DS::*)() >(&BOPDS_DS::ChangePaveBlocksPool),
R"#(Selector/Modifier Returns the information about pave blocks on source edges)#"
, py::return_value_policy::reference_internal
)
.def("FaceInfoPool",
(const BOPDS_VectorOfFaceInfo & (BOPDS_DS::*)() const) static_cast<const BOPDS_VectorOfFaceInfo & (BOPDS_DS::*)() const>(&BOPDS_DS::FaceInfoPool),
R"#(Selector Returns the information about state of faces)#"
)
.def("ShapesSD",
(TColStd_DataMapOfIntegerInteger & (BOPDS_DS::*)() ) static_cast<TColStd_DataMapOfIntegerInteger & (BOPDS_DS::*)() >(&BOPDS_DS::ShapesSD),
R"#(Selector Returns the collection same domain shapes)#"
, py::return_value_policy::reference_internal
)
.def("InterfVV",
(BOPDS_VectorOfInterfVV & (BOPDS_DS::*)() ) static_cast<BOPDS_VectorOfInterfVV & (BOPDS_DS::*)() >(&BOPDS_DS::InterfVV),
R"#(Selector/Modifier Returns the collection of interferences Vertex/Vertex)#"
, py::return_value_policy::reference_internal
)
.def("InterfVE",
(BOPDS_VectorOfInterfVE & (BOPDS_DS::*)() ) static_cast<BOPDS_VectorOfInterfVE & (BOPDS_DS::*)() >(&BOPDS_DS::InterfVE),
R"#(Selector/Modifier Returns the collection of interferences Vertex/Edge)#"
, py::return_value_policy::reference_internal
)
.def("InterfVF",
(BOPDS_VectorOfInterfVF & (BOPDS_DS::*)() ) static_cast<BOPDS_VectorOfInterfVF & (BOPDS_DS::*)() >(&BOPDS_DS::InterfVF),
R"#(Selector/Modifier Returns the collection of interferences Vertex/Face)#"
, py::return_value_policy::reference_internal
)
.def("InterfEE",
(BOPDS_VectorOfInterfEE & (BOPDS_DS::*)() ) static_cast<BOPDS_VectorOfInterfEE & (BOPDS_DS::*)() >(&BOPDS_DS::InterfEE),
R"#(Selector/Modifier Returns the collection of interferences Edge/Edge)#"
, py::return_value_policy::reference_internal
)
.def("InterfEF",
(BOPDS_VectorOfInterfEF & (BOPDS_DS::*)() ) static_cast<BOPDS_VectorOfInterfEF & (BOPDS_DS::*)() >(&BOPDS_DS::InterfEF),
R"#(Selector/Modifier Returns the collection of interferences Edge/Face)#"
, py::return_value_policy::reference_internal
)
.def("InterfFF",
(BOPDS_VectorOfInterfFF & (BOPDS_DS::*)() ) static_cast<BOPDS_VectorOfInterfFF & (BOPDS_DS::*)() >(&BOPDS_DS::InterfFF),
R"#(Selector/Modifier Returns the collection of interferences Face/Face)#"
, py::return_value_policy::reference_internal
)
.def("InterfVZ",
(BOPDS_VectorOfInterfVZ & (BOPDS_DS::*)() ) static_cast<BOPDS_VectorOfInterfVZ & (BOPDS_DS::*)() >(&BOPDS_DS::InterfVZ),
R"#(Selector/Modifier Returns the collection of interferences Vertex/Solid)#"
, py::return_value_policy::reference_internal
)
.def("InterfEZ",
(BOPDS_VectorOfInterfEZ & (BOPDS_DS::*)() ) static_cast<BOPDS_VectorOfInterfEZ & (BOPDS_DS::*)() >(&BOPDS_DS::InterfEZ),
R"#(Selector/Modifier Returns the collection of interferences Edge/Solid)#"
, py::return_value_policy::reference_internal
)
.def("InterfFZ",
(BOPDS_VectorOfInterfFZ & (BOPDS_DS::*)() ) static_cast<BOPDS_VectorOfInterfFZ & (BOPDS_DS::*)() >(&BOPDS_DS::InterfFZ),
R"#(Selector/Modifier Returns the collection of interferences Face/Solid)#"
, py::return_value_policy::reference_internal
)
.def("InterfZZ",
(BOPDS_VectorOfInterfZZ & (BOPDS_DS::*)() ) static_cast<BOPDS_VectorOfInterfZZ & (BOPDS_DS::*)() >(&BOPDS_DS::InterfZZ),
R"#(Selector/Modifier Returns the collection of interferences Solid/Solid)#"
, py::return_value_policy::reference_internal
)
.def("Interferences",
(const BOPDS_MapOfPair & (BOPDS_DS::*)() const) static_cast<const BOPDS_MapOfPair & (BOPDS_DS::*)() const>(&BOPDS_DS::Interferences),
R"#(Selector Returns the table of interferences)#"
)
.def("InterfVV",
(BOPDS_VectorOfInterfVV & (BOPDS_DS::*)() ) static_cast<BOPDS_VectorOfInterfVV & (BOPDS_DS::*)() >(&BOPDS_DS::InterfVV),
R"#(Selector/Modifier Returns the collection of interferences Vertex/Vertex)#"
, py::return_value_policy::reference_internal
)
.def("InterfVE",
(BOPDS_VectorOfInterfVE & (BOPDS_DS::*)() ) static_cast<BOPDS_VectorOfInterfVE & (BOPDS_DS::*)() >(&BOPDS_DS::InterfVE),
R"#(Selector/Modifier Returns the collection of interferences Vertex/Edge)#"
, py::return_value_policy::reference_internal
)
.def("InterfVF",
(BOPDS_VectorOfInterfVF & (BOPDS_DS::*)() ) static_cast<BOPDS_VectorOfInterfVF & (BOPDS_DS::*)() >(&BOPDS_DS::InterfVF),
R"#(Selector/Modifier Returns the collection of interferences Vertex/Face)#"
, py::return_value_policy::reference_internal
)
.def("InterfEE",
(BOPDS_VectorOfInterfEE & (BOPDS_DS::*)() ) static_cast<BOPDS_VectorOfInterfEE & (BOPDS_DS::*)() >(&BOPDS_DS::InterfEE),
R"#(Selector/Modifier Returns the collection of interferences Edge/Edge)#"
, py::return_value_policy::reference_internal
)
.def("InterfEF",
(BOPDS_VectorOfInterfEF & (BOPDS_DS::*)() ) static_cast<BOPDS_VectorOfInterfEF & (BOPDS_DS::*)() >(&BOPDS_DS::InterfEF),
R"#(Selector/Modifier Returns the collection of interferences Edge/Face)#"
, py::return_value_policy::reference_internal
)
.def("InterfFF",
(BOPDS_VectorOfInterfFF & (BOPDS_DS::*)() ) static_cast<BOPDS_VectorOfInterfFF & (BOPDS_DS::*)() >(&BOPDS_DS::InterfFF),
R"#(Selector/Modifier Returns the collection of interferences Face/Face)#"
, py::return_value_policy::reference_internal
)
.def("InterfVZ",
(BOPDS_VectorOfInterfVZ & (BOPDS_DS::*)() ) static_cast<BOPDS_VectorOfInterfVZ & (BOPDS_DS::*)() >(&BOPDS_DS::InterfVZ),
R"#(Selector/Modifier Returns the collection of interferences Vertex/Solid)#"
, py::return_value_policy::reference_internal
)
.def("InterfEZ",
(BOPDS_VectorOfInterfEZ & (BOPDS_DS::*)() ) static_cast<BOPDS_VectorOfInterfEZ & (BOPDS_DS::*)() >(&BOPDS_DS::InterfEZ),
R"#(Selector/Modifier Returns the collection of interferences Edge/Solid)#"
, py::return_value_policy::reference_internal
)
.def("InterfFZ",
(BOPDS_VectorOfInterfFZ & (BOPDS_DS::*)() ) static_cast<BOPDS_VectorOfInterfFZ & (BOPDS_DS::*)() >(&BOPDS_DS::InterfFZ),
R"#(Selector/Modifier Returns the collection of interferences Face/Solid)#"
, py::return_value_policy::reference_internal
)
.def("InterfZZ",
(BOPDS_VectorOfInterfZZ & (BOPDS_DS::*)() ) static_cast<BOPDS_VectorOfInterfZZ & (BOPDS_DS::*)() >(&BOPDS_DS::InterfZZ),
R"#(Selector/Modifier Returns the collection of interferences Solid/Solid)#"
, py::return_value_policy::reference_internal
)
.def("Interferences",
(const BOPDS_MapOfPair & (BOPDS_DS::*)() const) static_cast<const BOPDS_MapOfPair & (BOPDS_DS::*)() const>(&BOPDS_DS::Interferences),
R"#(Selector Returns the table of interferences)#"
)
;
// Class BOPDS_FaceInfo from ./opencascade/BOPDS_FaceInfo.hxx
klass = m.attr("BOPDS_FaceInfo");
// nested enums
static_cast<py::class_<BOPDS_FaceInfo , shared_ptr<BOPDS_FaceInfo> >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const opencascade::handle<NCollection_BaseAllocator> & >() , py::arg("theAllocator") )
// custom constructors
// methods
.def("Clear",
(void (BOPDS_FaceInfo::*)() ) static_cast<void (BOPDS_FaceInfo::*)() >(&BOPDS_FaceInfo::Clear),
R"#(Clears the contents)#"
)
.def("SetIndex",
(void (BOPDS_FaceInfo::*)( const Standard_Integer ) ) static_cast<void (BOPDS_FaceInfo::*)( const Standard_Integer ) >(&BOPDS_FaceInfo::SetIndex),
R"#(Modifier Sets the index of the face <theI>)#" , py::arg("theI")
)
.def("Index",
(Standard_Integer (BOPDS_FaceInfo::*)() const) static_cast<Standard_Integer (BOPDS_FaceInfo::*)() const>(&BOPDS_FaceInfo::Index),
R"#(Selector Returns the index of the face)#"
)
.def("Clear",
(void (BOPDS_FaceInfo::*)() ) static_cast<void (BOPDS_FaceInfo::*)() >(&BOPDS_FaceInfo::Clear),
R"#(Clears the contents)#"
)
.def("SetIndex",
(void (BOPDS_FaceInfo::*)( const Standard_Integer ) ) static_cast<void (BOPDS_FaceInfo::*)( const Standard_Integer ) >(&BOPDS_FaceInfo::SetIndex),
R"#(Modifier Sets the index of the face <theI>)#" , py::arg("theI")
)
.def("Index",
(Standard_Integer (BOPDS_FaceInfo::*)() const) static_cast<Standard_Integer (BOPDS_FaceInfo::*)() const>(&BOPDS_FaceInfo::Index),
R"#(Selector Returns the index of the face)#"
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("PaveBlocksIn",
(const BOPDS_IndexedMapOfPaveBlock & (BOPDS_FaceInfo::*)() const) static_cast<const BOPDS_IndexedMapOfPaveBlock & (BOPDS_FaceInfo::*)() const>(&BOPDS_FaceInfo::PaveBlocksIn),
R"#(Selector Returns the pave blocks of the face that have state In)#"
)
.def("ChangePaveBlocksIn",
(BOPDS_IndexedMapOfPaveBlock & (BOPDS_FaceInfo::*)() ) static_cast<BOPDS_IndexedMapOfPaveBlock & (BOPDS_FaceInfo::*)() >(&BOPDS_FaceInfo::ChangePaveBlocksIn),
R"#(Selector/Modifier Returns the pave blocks of the face that have state In)#"
, py::return_value_policy::reference_internal
)
.def("VerticesIn",
(const TColStd_MapOfInteger & (BOPDS_FaceInfo::*)() const) static_cast<const TColStd_MapOfInteger & (BOPDS_FaceInfo::*)() const>(&BOPDS_FaceInfo::VerticesIn),
R"#(Selector Returns the list of indices for vertices of the face that have state In)#"
, py::return_value_policy::reference_internal
)
.def("ChangeVerticesIn",
(TColStd_MapOfInteger & (BOPDS_FaceInfo::*)() ) static_cast<TColStd_MapOfInteger & (BOPDS_FaceInfo::*)() >(&BOPDS_FaceInfo::ChangeVerticesIn),
R"#(Selector/Modifier Returns the list of indices for vertices of the face that have state In)#"
, py::return_value_policy::reference_internal
)
.def("PaveBlocksOn",
(const BOPDS_IndexedMapOfPaveBlock & (BOPDS_FaceInfo::*)() const) static_cast<const BOPDS_IndexedMapOfPaveBlock & (BOPDS_FaceInfo::*)() const>(&BOPDS_FaceInfo::PaveBlocksOn),
R"#(Selector Returns the pave blocks of the face that have state On)#"
)
.def("ChangePaveBlocksOn",
(BOPDS_IndexedMapOfPaveBlock & (BOPDS_FaceInfo::*)() ) static_cast<BOPDS_IndexedMapOfPaveBlock & (BOPDS_FaceInfo::*)() >(&BOPDS_FaceInfo::ChangePaveBlocksOn),
R"#(Selector/Modifier Returns the pave blocks of the face that have state On)#"
, py::return_value_policy::reference_internal
)
.def("VerticesOn",
(const TColStd_MapOfInteger & (BOPDS_FaceInfo::*)() const) static_cast<const TColStd_MapOfInteger & (BOPDS_FaceInfo::*)() const>(&BOPDS_FaceInfo::VerticesOn),
R"#(Selector Returns the list of indices for vertices of the face that have state On)#"
, py::return_value_policy::reference_internal
)
.def("ChangeVerticesOn",
(TColStd_MapOfInteger & (BOPDS_FaceInfo::*)() ) static_cast<TColStd_MapOfInteger & (BOPDS_FaceInfo::*)() >(&BOPDS_FaceInfo::ChangeVerticesOn),
R"#(Selector/Modifier Returns the list of indices for vertices of the face that have state On)#"
, py::return_value_policy::reference_internal
)
.def("PaveBlocksSc",
(const BOPDS_IndexedMapOfPaveBlock & (BOPDS_FaceInfo::*)() const) static_cast<const BOPDS_IndexedMapOfPaveBlock & (BOPDS_FaceInfo::*)() const>(&BOPDS_FaceInfo::PaveBlocksSc),
R"#(Selector Returns the pave blocks of the face that are pave blocks of section edges)#"
)
.def("ChangePaveBlocksSc",
(BOPDS_IndexedMapOfPaveBlock & (BOPDS_FaceInfo::*)() ) static_cast<BOPDS_IndexedMapOfPaveBlock & (BOPDS_FaceInfo::*)() >(&BOPDS_FaceInfo::ChangePaveBlocksSc),
R"#(None)#"
, py::return_value_policy::reference_internal
)
.def("VerticesSc",
(const TColStd_MapOfInteger & (BOPDS_FaceInfo::*)() const) static_cast<const TColStd_MapOfInteger & (BOPDS_FaceInfo::*)() const>(&BOPDS_FaceInfo::VerticesSc),
R"#(Selector Returns the list of indices for section vertices of the face)#"
, py::return_value_policy::reference_internal
)
.def("ChangeVerticesSc",
(TColStd_MapOfInteger & (BOPDS_FaceInfo::*)() ) static_cast<TColStd_MapOfInteger & (BOPDS_FaceInfo::*)() >(&BOPDS_FaceInfo::ChangeVerticesSc),
R"#(Selector/Modifier Returns the list of indices for section vertices of the face)#"
, py::return_value_policy::reference_internal
)
.def("PaveBlocksIn",
(const BOPDS_IndexedMapOfPaveBlock & (BOPDS_FaceInfo::*)() const) static_cast<const BOPDS_IndexedMapOfPaveBlock & (BOPDS_FaceInfo::*)() const>(&BOPDS_FaceInfo::PaveBlocksIn),
R"#(Selector Returns the pave blocks of the face that have state In)#"
)
.def("ChangePaveBlocksIn",
(BOPDS_IndexedMapOfPaveBlock & (BOPDS_FaceInfo::*)() ) static_cast<BOPDS_IndexedMapOfPaveBlock & (BOPDS_FaceInfo::*)() >(&BOPDS_FaceInfo::ChangePaveBlocksIn),
R"#(Selector/Modifier Returns the pave blocks of the face that have state In)#"
, py::return_value_policy::reference_internal
)
.def("VerticesIn",
(const TColStd_MapOfInteger & (BOPDS_FaceInfo::*)() const) static_cast<const TColStd_MapOfInteger & (BOPDS_FaceInfo::*)() const>(&BOPDS_FaceInfo::VerticesIn),
R"#(Selector Returns the list of indices for vertices of the face that have state In)#"
, py::return_value_policy::reference_internal
)
.def("ChangeVerticesIn",
(TColStd_MapOfInteger & (BOPDS_FaceInfo::*)() ) static_cast<TColStd_MapOfInteger & (BOPDS_FaceInfo::*)() >(&BOPDS_FaceInfo::ChangeVerticesIn),
R"#(Selector/Modifier Returns the list of indices for vertices of the face that have state In)#"
, py::return_value_policy::reference_internal
)
.def("PaveBlocksOn",
(const BOPDS_IndexedMapOfPaveBlock & (BOPDS_FaceInfo::*)() const) static_cast<const BOPDS_IndexedMapOfPaveBlock & (BOPDS_FaceInfo::*)() const>(&BOPDS_FaceInfo::PaveBlocksOn),
R"#(Selector Returns the pave blocks of the face that have state On)#"
)
.def("ChangePaveBlocksOn",
(BOPDS_IndexedMapOfPaveBlock & (BOPDS_FaceInfo::*)() ) static_cast<BOPDS_IndexedMapOfPaveBlock & (BOPDS_FaceInfo::*)() >(&BOPDS_FaceInfo::ChangePaveBlocksOn),
R"#(Selector/Modifier Returns the pave blocks of the face that have state On)#"
, py::return_value_policy::reference_internal
)
.def("VerticesOn",
(const TColStd_MapOfInteger & (BOPDS_FaceInfo::*)() const) static_cast<const TColStd_MapOfInteger & (BOPDS_FaceInfo::*)() const>(&BOPDS_FaceInfo::VerticesOn),
R"#(Selector Returns the list of indices for vertices of the face that have state On)#"
, py::return_value_policy::reference_internal
)
.def("ChangeVerticesOn",
(TColStd_MapOfInteger & (BOPDS_FaceInfo::*)() ) static_cast<TColStd_MapOfInteger & (BOPDS_FaceInfo::*)() >(&BOPDS_FaceInfo::ChangeVerticesOn),
R"#(Selector/Modifier Returns the list of indices for vertices of the face that have state On)#"
, py::return_value_policy::reference_internal
)
.def("PaveBlocksSc",
(const BOPDS_IndexedMapOfPaveBlock & (BOPDS_FaceInfo::*)() const) static_cast<const BOPDS_IndexedMapOfPaveBlock & (BOPDS_FaceInfo::*)() const>(&BOPDS_FaceInfo::PaveBlocksSc),
R"#(Selector Returns the pave blocks of the face that are pave blocks of section edges)#"
)
.def("ChangePaveBlocksSc",
(BOPDS_IndexedMapOfPaveBlock & (BOPDS_FaceInfo::*)() ) static_cast<BOPDS_IndexedMapOfPaveBlock & (BOPDS_FaceInfo::*)() >(&BOPDS_FaceInfo::ChangePaveBlocksSc),
R"#(None)#"
, py::return_value_policy::reference_internal
)
.def("VerticesSc",
(const TColStd_MapOfInteger & (BOPDS_FaceInfo::*)() const) static_cast<const TColStd_MapOfInteger & (BOPDS_FaceInfo::*)() const>(&BOPDS_FaceInfo::VerticesSc),
R"#(Selector Returns the list of indices for section vertices of the face)#"
, py::return_value_policy::reference_internal
)
.def("ChangeVerticesSc",
(TColStd_MapOfInteger & (BOPDS_FaceInfo::*)() ) static_cast<TColStd_MapOfInteger & (BOPDS_FaceInfo::*)() >(&BOPDS_FaceInfo::ChangeVerticesSc),
R"#(Selector/Modifier Returns the list of indices for section vertices of the face)#"
, py::return_value_policy::reference_internal
)
;
// Class BOPDS_IndexRange from ./opencascade/BOPDS_IndexRange.hxx
klass = m.attr("BOPDS_IndexRange");
// nested enums
static_cast<py::class_<BOPDS_IndexRange , shared_ptr<BOPDS_IndexRange> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("SetFirst",
(void (BOPDS_IndexRange::*)( const Standard_Integer ) ) static_cast<void (BOPDS_IndexRange::*)( const Standard_Integer ) >(&BOPDS_IndexRange::SetFirst),
R"#(Modifier Sets the first index <theI1> of the range)#" , py::arg("theI1")
)
.def("SetLast",
(void (BOPDS_IndexRange::*)( const Standard_Integer ) ) static_cast<void (BOPDS_IndexRange::*)( const Standard_Integer ) >(&BOPDS_IndexRange::SetLast),
R"#(Modifier Sets the second index <theI2> of the range)#" , py::arg("theI2")
)
.def("First",
(Standard_Integer (BOPDS_IndexRange::*)() const) static_cast<Standard_Integer (BOPDS_IndexRange::*)() const>(&BOPDS_IndexRange::First),
R"#(Selector Returns the first index of the range)#"
)
.def("Last",
(Standard_Integer (BOPDS_IndexRange::*)() const) static_cast<Standard_Integer (BOPDS_IndexRange::*)() const>(&BOPDS_IndexRange::Last),
R"#(Selector Returns the second index of the range)#"
)
.def("SetIndices",
(void (BOPDS_IndexRange::*)( const Standard_Integer , const Standard_Integer ) ) static_cast<void (BOPDS_IndexRange::*)( const Standard_Integer , const Standard_Integer ) >(&BOPDS_IndexRange::SetIndices),
R"#(Modifier Sets the first index of the range <theI1> Sets the second index of the range <theI2>)#" , py::arg("theI1"), py::arg("theI2")
)
.def("Contains",
(Standard_Boolean (BOPDS_IndexRange::*)( const Standard_Integer ) const) static_cast<Standard_Boolean (BOPDS_IndexRange::*)( const Standard_Integer ) const>(&BOPDS_IndexRange::Contains),
R"#(Query Returns true if the range contains <theIndex>)#" , py::arg("theIndex")
)
.def("Dump",
(void (BOPDS_IndexRange::*)() const) static_cast<void (BOPDS_IndexRange::*)() const>(&BOPDS_IndexRange::Dump),
R"#(None)#"
)
.def("SetFirst",
(void (BOPDS_IndexRange::*)( const Standard_Integer ) ) static_cast<void (BOPDS_IndexRange::*)( const Standard_Integer ) >(&BOPDS_IndexRange::SetFirst),
R"#(Modifier Sets the first index <theI1> of the range)#" , py::arg("aFirst")
)
.def("First",
(Standard_Integer (BOPDS_IndexRange::*)() const) static_cast<Standard_Integer (BOPDS_IndexRange::*)() const>(&BOPDS_IndexRange::First),
R"#(Selector Returns the first index of the range)#"
)
.def("SetLast",
(void (BOPDS_IndexRange::*)( const Standard_Integer ) ) static_cast<void (BOPDS_IndexRange::*)( const Standard_Integer ) >(&BOPDS_IndexRange::SetLast),
R"#(Modifier Sets the second index <theI2> of the range)#" , py::arg("aLast")
)
.def("Last",
(Standard_Integer (BOPDS_IndexRange::*)() const) static_cast<Standard_Integer (BOPDS_IndexRange::*)() const>(&BOPDS_IndexRange::Last),
R"#(Selector Returns the second index of the range)#"
)
.def("SetIndices",
(void (BOPDS_IndexRange::*)( const Standard_Integer , const Standard_Integer ) ) static_cast<void (BOPDS_IndexRange::*)( const Standard_Integer , const Standard_Integer ) >(&BOPDS_IndexRange::SetIndices),
R"#(Modifier Sets the first index of the range <theI1> Sets the second index of the range <theI2>)#" , py::arg("theI1"), py::arg("theI2")
)
.def("Contains",
(Standard_Boolean (BOPDS_IndexRange::*)( const Standard_Integer ) const) static_cast<Standard_Boolean (BOPDS_IndexRange::*)( const Standard_Integer ) const>(&BOPDS_IndexRange::Contains),
R"#(Query Returns true if the range contains <theIndex>)#" , py::arg("aIndex")
)
// methods using call by reference i.s.o. return
.def("Indices",
[]( BOPDS_IndexRange &self ){
Standard_Integer theI1;
Standard_Integer theI2;
self.Indices(theI1,theI2);
return std::make_tuple(theI1,theI2); },
R"#(Selector Returns the first index of the range <theI1> Returns the second index of the range <theI2>)#"
)
.def("Indices",
[]( BOPDS_IndexRange &self ){
Standard_Integer theI1;
Standard_Integer theI2;
self.Indices(theI1,theI2);
return std::make_tuple(theI1,theI2); },
R"#(Selector Returns the first index of the range <theI1> Returns the second index of the range <theI2>)#"
)
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class BOPDS_Interf from ./opencascade/BOPDS_Interf.hxx
klass = m.attr("BOPDS_Interf");
// nested enums
static_cast<py::class_<BOPDS_Interf , shared_ptr_nodelete<BOPDS_Interf> >>(klass)
// constructors
// custom constructors
// methods
.def("SetIndices",
(void (BOPDS_Interf::*)( const Standard_Integer , const Standard_Integer ) ) static_cast<void (BOPDS_Interf::*)( const Standard_Integer , const Standard_Integer ) >(&BOPDS_Interf::SetIndices),
R"#(Sets the indices of interferred shapes)#" , py::arg("theIndex1"), py::arg("theIndex2")
)
.def("SetIndex1",
(void (BOPDS_Interf::*)( const Standard_Integer ) ) static_cast<void (BOPDS_Interf::*)( const Standard_Integer ) >(&BOPDS_Interf::SetIndex1),
R"#(Sets the index of the first interferred shape)#" , py::arg("theIndex")
)
.def("SetIndex2",
(void (BOPDS_Interf::*)( const Standard_Integer ) ) static_cast<void (BOPDS_Interf::*)( const Standard_Integer ) >(&BOPDS_Interf::SetIndex2),
R"#(Sets the index of the second interferred shape)#" , py::arg("theIndex")
)
.def("Index1",
(Standard_Integer (BOPDS_Interf::*)() const) static_cast<Standard_Integer (BOPDS_Interf::*)() const>(&BOPDS_Interf::Index1),
R"#(Returns the index of the first interferred shape)#"
)
.def("Index2",
(Standard_Integer (BOPDS_Interf::*)() const) static_cast<Standard_Integer (BOPDS_Interf::*)() const>(&BOPDS_Interf::Index2),
R"#(Returns the index of the second interferred shape)#"
)
.def("OppositeIndex",
(Standard_Integer (BOPDS_Interf::*)( const Standard_Integer ) const) static_cast<Standard_Integer (BOPDS_Interf::*)( const Standard_Integer ) const>(&BOPDS_Interf::OppositeIndex),
R"#(Returns the index of that are opposite to the given index)#" , py::arg("theI")
)
.def("Contains",
(Standard_Boolean (BOPDS_Interf::*)( const Standard_Integer ) const) static_cast<Standard_Boolean (BOPDS_Interf::*)( const Standard_Integer ) const>(&BOPDS_Interf::Contains),
R"#(Returns true if the interference contains given index)#" , py::arg("theIndex")
)
.def("SetIndexNew",
(void (BOPDS_Interf::*)( const Standard_Integer ) ) static_cast<void (BOPDS_Interf::*)( const Standard_Integer ) >(&BOPDS_Interf::SetIndexNew),
R"#(Sets the index of new shape)#" , py::arg("theIndex")
)
.def("IndexNew",
(Standard_Integer (BOPDS_Interf::*)() const) static_cast<Standard_Integer (BOPDS_Interf::*)() const>(&BOPDS_Interf::IndexNew),
R"#(Returns the index of new shape)#"
)
.def("HasIndexNew",
(Standard_Boolean (BOPDS_Interf::*)( Standard_Integer & ) const) static_cast<Standard_Boolean (BOPDS_Interf::*)( Standard_Integer & ) const>(&BOPDS_Interf::HasIndexNew),
R"#(Returns true if the interference has index of new shape that is equal to the given index)#" , py::arg("theIndex")
)
.def("HasIndexNew",
(Standard_Boolean (BOPDS_Interf::*)() const) static_cast<Standard_Boolean (BOPDS_Interf::*)() const>(&BOPDS_Interf::HasIndexNew),
R"#(Returns true if the interference has index of new shape the index)#"
)
// methods using call by reference i.s.o. return
.def("Indices",
[]( BOPDS_Interf &self ){
Standard_Integer theIndex1;
Standard_Integer theIndex2;
self.Indices(theIndex1,theIndex2);
return std::make_tuple(theIndex1,theIndex2); },
R"#(Returns the indices of interferred shapes)#"
)
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class BOPDS_Pair from ./opencascade/BOPDS_Pair.hxx
klass = m.attr("BOPDS_Pair");
// nested enums
static_cast<py::class_<BOPDS_Pair , shared_ptr<BOPDS_Pair> >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const Standard_Integer,const Standard_Integer >() , py::arg("theIndex1"), py::arg("theIndex2") )
// custom constructors
// methods
.def("SetIndices",
(void (BOPDS_Pair::*)( const Standard_Integer , const Standard_Integer ) ) static_cast<void (BOPDS_Pair::*)( const Standard_Integer , const Standard_Integer ) >(&BOPDS_Pair::SetIndices),
R"#(Sets the indices)#" , py::arg("theIndex1"), py::arg("theIndex2")
)
.def("IsEqual",
(Standard_Boolean (BOPDS_Pair::*)( const BOPDS_Pair & ) const) static_cast<Standard_Boolean (BOPDS_Pair::*)( const BOPDS_Pair & ) const>(&BOPDS_Pair::IsEqual),
R"#(Returns true if the Pair is equal to <the theOther>)#" , py::arg("theOther")
)
// methods using call by reference i.s.o. return
.def("Indices",
[]( BOPDS_Pair &self ){
Standard_Integer theIndex1;
Standard_Integer theIndex2;
self.Indices(theIndex1,theIndex2);
return std::make_tuple(theIndex1,theIndex2); },
R"#(Gets the indices)#"
)
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class BOPDS_Pave from ./opencascade/BOPDS_Pave.hxx
klass = m.attr("BOPDS_Pave");
// nested enums
static_cast<py::class_<BOPDS_Pave , shared_ptr<BOPDS_Pave> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("SetIndex",
(void (BOPDS_Pave::*)( const Standard_Integer ) ) static_cast<void (BOPDS_Pave::*)( const Standard_Integer ) >(&BOPDS_Pave::SetIndex),
R"#(Modifier Sets the index of vertex <theIndex>)#" , py::arg("theIndex")
)
.def("Index",
(Standard_Integer (BOPDS_Pave::*)() const) static_cast<Standard_Integer (BOPDS_Pave::*)() const>(&BOPDS_Pave::Index),
R"#(Selector Returns the index of vertex)#"
)
.def("SetParameter",
(void (BOPDS_Pave::*)( const Standard_Real ) ) static_cast<void (BOPDS_Pave::*)( const Standard_Real ) >(&BOPDS_Pave::SetParameter),
R"#(Modifier Sets the parameter of vertex <theParameter>)#" , py::arg("theParameter")
)
.def("Parameter",
(Standard_Real (BOPDS_Pave::*)() const) static_cast<Standard_Real (BOPDS_Pave::*)() const>(&BOPDS_Pave::Parameter),
R"#(Selector Returns the parameter of vertex)#"
)
.def("IsLess",
(Standard_Boolean (BOPDS_Pave::*)( const BOPDS_Pave & ) const) static_cast<Standard_Boolean (BOPDS_Pave::*)( const BOPDS_Pave & ) const>(&BOPDS_Pave::IsLess),
R"#(Query Returns true if thr parameter od this is less than the parameter of <theOther>)#" , py::arg("theOther")
)
.def("IsEqual",
(Standard_Boolean (BOPDS_Pave::*)( const BOPDS_Pave & ) const) static_cast<Standard_Boolean (BOPDS_Pave::*)( const BOPDS_Pave & ) const>(&BOPDS_Pave::IsEqual),
R"#(Query Returns true if thr parameter od this is equal to the parameter of <theOther>)#" , py::arg("theOther")
)
.def("Dump",
(void (BOPDS_Pave::*)() const) static_cast<void (BOPDS_Pave::*)() const>(&BOPDS_Pave::Dump),
R"#(None)#"
)
.def("SetIndex",
(void (BOPDS_Pave::*)( const Standard_Integer ) ) static_cast<void (BOPDS_Pave::*)( const Standard_Integer ) >(&BOPDS_Pave::SetIndex),
R"#(Modifier Sets the index of vertex <theIndex>)#" , py::arg("theIndex")
)
.def("Index",
(Standard_Integer (BOPDS_Pave::*)() const) static_cast<Standard_Integer (BOPDS_Pave::*)() const>(&BOPDS_Pave::Index),
R"#(Selector Returns the index of vertex)#"
)
.def("SetParameter",
(void (BOPDS_Pave::*)( const Standard_Real ) ) static_cast<void (BOPDS_Pave::*)( const Standard_Real ) >(&BOPDS_Pave::SetParameter),
R"#(Modifier Sets the parameter of vertex <theParameter>)#" , py::arg("theParameter")
)
.def("Parameter",
(Standard_Real (BOPDS_Pave::*)() const) static_cast<Standard_Real (BOPDS_Pave::*)() const>(&BOPDS_Pave::Parameter),
R"#(Selector Returns the parameter of vertex)#"
)
.def("IsLess",
(Standard_Boolean (BOPDS_Pave::*)( const BOPDS_Pave & ) const) static_cast<Standard_Boolean (BOPDS_Pave::*)( const BOPDS_Pave & ) const>(&BOPDS_Pave::IsLess),
R"#(Query Returns true if thr parameter od this is less than the parameter of <theOther>)#" , py::arg("theOther")
)
.def("IsEqual",
(Standard_Boolean (BOPDS_Pave::*)( const BOPDS_Pave & ) const) static_cast<Standard_Boolean (BOPDS_Pave::*)( const BOPDS_Pave & ) const>(&BOPDS_Pave::IsEqual),
R"#(Query Returns true if thr parameter od this is equal to the parameter of <theOther>)#" , py::arg("theOther")
)
// methods using call by reference i.s.o. return
.def("Contents",
[]( BOPDS_Pave &self ){
Standard_Integer theIndex;
Standard_Real theParameter;
self.Contents(theIndex,theParameter);
return std::make_tuple(theIndex,theParameter); },
R"#(Selector Returns the index of vertex <theIndex> Returns the parameter of vertex <theParameter>)#"
)
.def("Contents",
[]( BOPDS_Pave &self ){
Standard_Integer theIndex;
Standard_Real theParameter;
self.Contents(theIndex,theParameter);
return std::make_tuple(theIndex,theParameter); },
R"#(Selector Returns the index of vertex <theIndex> Returns the parameter of vertex <theParameter>)#"
)
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class BOPDS_PaveBlock from ./opencascade/BOPDS_PaveBlock.hxx
klass = m.attr("BOPDS_PaveBlock");
// nested enums
static_cast<py::class_<BOPDS_PaveBlock ,opencascade::handle<BOPDS_PaveBlock> , Standard_Transient >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const opencascade::handle<NCollection_BaseAllocator> & >() , py::arg("theAllocator") )
// custom constructors
// methods
.def("SetPave1",
(void (BOPDS_PaveBlock::*)( const BOPDS_Pave & ) ) static_cast<void (BOPDS_PaveBlock::*)( const BOPDS_Pave & ) >(&BOPDS_PaveBlock::SetPave1),
R"#(Modifier Sets the first pave <thePave>)#" , py::arg("thePave")
)
.def("SetPave2",
(void (BOPDS_PaveBlock::*)( const BOPDS_Pave & ) ) static_cast<void (BOPDS_PaveBlock::*)( const BOPDS_Pave & ) >(&BOPDS_PaveBlock::SetPave2),
R"#(Modifier Sets the second pave <thePave>)#" , py::arg("thePave")
)
.def("SetEdge",
(void (BOPDS_PaveBlock::*)( const Standard_Integer ) ) static_cast<void (BOPDS_PaveBlock::*)( const Standard_Integer ) >(&BOPDS_PaveBlock::SetEdge),
R"#(Modifier Sets the index of edge of pave block <theEdge>)#" , py::arg("theEdge")
)
.def("Edge",
(Standard_Integer (BOPDS_PaveBlock::*)() const) static_cast<Standard_Integer (BOPDS_PaveBlock::*)() const>(&BOPDS_PaveBlock::Edge),
R"#(Selector Returns the index of edge of pave block)#"
)
.def("HasEdge",
(Standard_Boolean (BOPDS_PaveBlock::*)() const) static_cast<Standard_Boolean (BOPDS_PaveBlock::*)() const>(&BOPDS_PaveBlock::HasEdge),
R"#(Query Returns true if the pave block has edge)#"
)
.def("HasEdge",
(Standard_Boolean (BOPDS_PaveBlock::*)( Standard_Integer & ) const) static_cast<Standard_Boolean (BOPDS_PaveBlock::*)( Standard_Integer & ) const>(&BOPDS_PaveBlock::HasEdge),
R"#(Query Returns true if the pave block has edge Returns the index of edge <theEdge>)#" , py::arg("theEdge")
)
.def("SetOriginalEdge",
(void (BOPDS_PaveBlock::*)( const Standard_Integer ) ) static_cast<void (BOPDS_PaveBlock::*)( const Standard_Integer ) >(&BOPDS_PaveBlock::SetOriginalEdge),
R"#(Modifier Sets the index of original edge of the pave block <theEdge>)#" , py::arg("theEdge")
)
.def("OriginalEdge",
(Standard_Integer (BOPDS_PaveBlock::*)() const) static_cast<Standard_Integer (BOPDS_PaveBlock::*)() const>(&BOPDS_PaveBlock::OriginalEdge),
R"#(Selector Returns the index of original edge of pave block)#"
)
.def("IsSplitEdge",
(Standard_Boolean (BOPDS_PaveBlock::*)() const) static_cast<Standard_Boolean (BOPDS_PaveBlock::*)() const>(&BOPDS_PaveBlock::IsSplitEdge),
R"#(Query Returns true if the edge is equal to the original edge of the pave block)#"
)
.def("HasSameBounds",
(Standard_Boolean (BOPDS_PaveBlock::*)( const opencascade::handle<BOPDS_PaveBlock> & ) const) static_cast<Standard_Boolean (BOPDS_PaveBlock::*)( const opencascade::handle<BOPDS_PaveBlock> & ) const>(&BOPDS_PaveBlock::HasSameBounds),
R"#(Query Returns true if the pave block has pave indices that equal to the pave indices of the pave block <theOther>)#" , py::arg("theOther")
)
.def("IsToUpdate",
(Standard_Boolean (BOPDS_PaveBlock::*)() const) static_cast<Standard_Boolean (BOPDS_PaveBlock::*)() const>(&BOPDS_PaveBlock::IsToUpdate),
R"#(Query Returns true if the pave block contains extra paves)#"
)
.def("AppendExtPave",
(void (BOPDS_PaveBlock::*)( const BOPDS_Pave & ) ) static_cast<void (BOPDS_PaveBlock::*)( const BOPDS_Pave & ) >(&BOPDS_PaveBlock::AppendExtPave),
R"#(Modifier Appends extra paves <thePave>)#" , py::arg("thePave")
)
.def("AppendExtPave1",
(void (BOPDS_PaveBlock::*)( const BOPDS_Pave & ) ) static_cast<void (BOPDS_PaveBlock::*)( const BOPDS_Pave & ) >(&BOPDS_PaveBlock::AppendExtPave1),
R"#(Modifier Appends extra pave <thePave>)#" , py::arg("thePave")
)
.def("RemoveExtPave",
(void (BOPDS_PaveBlock::*)( const Standard_Integer ) ) static_cast<void (BOPDS_PaveBlock::*)( const Standard_Integer ) >(&BOPDS_PaveBlock::RemoveExtPave),
R"#(Modifier Removes a pave with the given vertex number from extra paves)#" , py::arg("theVertNum")
)
.def("Update",
(void (BOPDS_PaveBlock::*)( NCollection_List<opencascade::handle<BOPDS_PaveBlock>> & , const Standard_Boolean ) ) static_cast<void (BOPDS_PaveBlock::*)( NCollection_List<opencascade::handle<BOPDS_PaveBlock>> & , const Standard_Boolean ) >(&BOPDS_PaveBlock::Update),
R"#(Modifier Updates the pave block. The extra paves are used to create new pave blocks <theLPB>. <theFlag> - if true, the first pave and the second pave are used to produce new pave blocks.)#" , py::arg("theLPB"), py::arg("theFlag")=static_cast<const Standard_Boolean>(Standard_True)
)
.def("ContainsParameter",
(Standard_Boolean (BOPDS_PaveBlock::*)( const Standard_Real , const Standard_Real , Standard_Integer & ) const) static_cast<Standard_Boolean (BOPDS_PaveBlock::*)( const Standard_Real , const Standard_Real , Standard_Integer & ) const>(&BOPDS_PaveBlock::ContainsParameter),
R"#(Query Returns true if the extra paves contain the pave with given value of the parameter <thePrm> <theTol> - the value of the tolerance to compare <theInd> - index of the found pave)#" , py::arg("thePrm"), py::arg("theTol"), py::arg("theInd")
)
.def("SetShrunkData",
(void (BOPDS_PaveBlock::*)( const Standard_Real , const Standard_Real , const Bnd_Box & , const Standard_Boolean ) ) static_cast<void (BOPDS_PaveBlock::*)( const Standard_Real , const Standard_Real , const Bnd_Box & , const Standard_Boolean ) >(&BOPDS_PaveBlock::SetShrunkData),
R"#(Modifier Sets the shrunk data for the pave block <theTS1>, <theTS2> - shrunk range <theBox> - the bounding box <theIsSplittable> - defines whether the edge can be split)#" , py::arg("theTS1"), py::arg("theTS2"), py::arg("theBox"), py::arg("theIsSplittable")
)
.def("HasShrunkData",
(Standard_Boolean (BOPDS_PaveBlock::*)() const) static_cast<Standard_Boolean (BOPDS_PaveBlock::*)() const>(&BOPDS_PaveBlock::HasShrunkData),
R"#(Query Returns true if the pave block contains the shrunk data)#"
)
.def("Dump",
(void (BOPDS_PaveBlock::*)() const) static_cast<void (BOPDS_PaveBlock::*)() const>(&BOPDS_PaveBlock::Dump),
R"#(None)#"
)
.def("IsSplittable",
(Standard_Boolean (BOPDS_PaveBlock::*)() const) static_cast<Standard_Boolean (BOPDS_PaveBlock::*)() const>(&BOPDS_PaveBlock::IsSplittable),
R"#(Query Returns FALSE if the pave block has a too short shrunk range and cannot be split, otherwise returns TRUE)#"
)
// methods using call by reference i.s.o. return
.def("Range",
[]( BOPDS_PaveBlock &self ){
Standard_Real theT1;
Standard_Real theT2;
self.Range(theT1,theT2);
return std::make_tuple(theT1,theT2); },
R"#(Selector Returns the parametric range <theT1,theT2> of the pave block)#"
)
.def("Indices",
[]( BOPDS_PaveBlock &self ){
Standard_Integer theIndex1;
Standard_Integer theIndex2;
self.Indices(theIndex1,theIndex2);
return std::make_tuple(theIndex1,theIndex2); },
R"#(Selector Returns the pave indices <theIndex1,theIndex2> of the pave block)#"
)
.def("ShrunkData",
[]( BOPDS_PaveBlock &self , Bnd_Box & theBox ){
Standard_Real theTS1;
Standard_Real theTS2;
Standard_Boolean theIsSplittable;
self.ShrunkData(theTS1,theTS2,theBox,theIsSplittable);
return std::make_tuple(theTS1,theTS2,theIsSplittable); },
R"#(Selector Returns the shrunk data for the pave block <theTS1>, <theTS2> - shrunk range <theBox> - the bounding box <theIsSplittable> - defines whether the edge can be split)#" , py::arg("theBox")
)
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&BOPDS_PaveBlock::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPDS_PaveBlock::get_type_descriptor),
R"#(None)#"
)
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("Pave1",
(const BOPDS_Pave & (BOPDS_PaveBlock::*)() const) static_cast<const BOPDS_Pave & (BOPDS_PaveBlock::*)() const>(&BOPDS_PaveBlock::Pave1),
R"#(Selector Returns the first pave)#"
)
.def("Pave2",
(const BOPDS_Pave & (BOPDS_PaveBlock::*)() const) static_cast<const BOPDS_Pave & (BOPDS_PaveBlock::*)() const>(&BOPDS_PaveBlock::Pave2),
R"#(Selector Returns the second pave)#"
)
.def("ExtPaves",
(const BOPDS_ListOfPave & (BOPDS_PaveBlock::*)() const) static_cast<const BOPDS_ListOfPave & (BOPDS_PaveBlock::*)() const>(&BOPDS_PaveBlock::ExtPaves),
R"#(Selector Returns the extra paves)#"
)
.def("ChangeExtPaves",
(BOPDS_ListOfPave & (BOPDS_PaveBlock::*)() ) static_cast<BOPDS_ListOfPave & (BOPDS_PaveBlock::*)() >(&BOPDS_PaveBlock::ChangeExtPaves),
R"#(Selector / Modifier Returns the extra paves)#"
, py::return_value_policy::reference_internal
)
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (BOPDS_PaveBlock::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPDS_PaveBlock::*)() const>(&BOPDS_PaveBlock::DynamicType),
R"#(None)#"
)
;
// Class BOPDS_Point from ./opencascade/BOPDS_Point.hxx
klass = m.attr("BOPDS_Point");
// nested enums
static_cast<py::class_<BOPDS_Point , shared_ptr<BOPDS_Point> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("SetPnt",
(void (BOPDS_Point::*)( const gp_Pnt & ) ) static_cast<void (BOPDS_Point::*)( const gp_Pnt & ) >(&BOPDS_Point::SetPnt),
R"#(Modifier Sets 3D point <thePnt>)#" , py::arg("thePnt")
)
.def("SetPnt2D1",
(void (BOPDS_Point::*)( const gp_Pnt2d & ) ) static_cast<void (BOPDS_Point::*)( const gp_Pnt2d & ) >(&BOPDS_Point::SetPnt2D1),
R"#(Modifier Sets 2D point on the first face <thePnt>)#" , py::arg("thePnt")
)
.def("SetPnt2D2",
(void (BOPDS_Point::*)( const gp_Pnt2d & ) ) static_cast<void (BOPDS_Point::*)( const gp_Pnt2d & ) >(&BOPDS_Point::SetPnt2D2),
R"#(Modifier Sets 2D point on the second face <thePnt>)#" , py::arg("thePnt")
)
.def("SetIndex",
(void (BOPDS_Point::*)( const Standard_Integer ) ) static_cast<void (BOPDS_Point::*)( const Standard_Integer ) >(&BOPDS_Point::SetIndex),
R"#(Modifier Sets the index of the vertex <theIndex>)#" , py::arg("theIndex")
)
.def("Index",
(Standard_Integer (BOPDS_Point::*)() const) static_cast<Standard_Integer (BOPDS_Point::*)() const>(&BOPDS_Point::Index),
R"#(Selector Returns index of the vertex)#"
)
.def("SetIndex",
(void (BOPDS_Point::*)( const Standard_Integer ) ) static_cast<void (BOPDS_Point::*)( const Standard_Integer ) >(&BOPDS_Point::SetIndex),
R"#(Modifier Sets the index of the vertex <theIndex>)#" , py::arg("theIndex")
)
.def("Index",
(Standard_Integer (BOPDS_Point::*)() const) static_cast<Standard_Integer (BOPDS_Point::*)() const>(&BOPDS_Point::Index),
R"#(Selector Returns index of the vertex)#"
)
.def("SetPnt",
(void (BOPDS_Point::*)( const gp_Pnt & ) ) static_cast<void (BOPDS_Point::*)( const gp_Pnt & ) >(&BOPDS_Point::SetPnt),
R"#(Modifier Sets 3D point <thePnt>)#" , py::arg("thePnt")
)
.def("SetPnt2D1",
(void (BOPDS_Point::*)( const gp_Pnt2d & ) ) static_cast<void (BOPDS_Point::*)( const gp_Pnt2d & ) >(&BOPDS_Point::SetPnt2D1),
R"#(Modifier Sets 2D point on the first face <thePnt>)#" , py::arg("thePnt")
)
.def("SetPnt2D2",
(void (BOPDS_Point::*)( const gp_Pnt2d & ) ) static_cast<void (BOPDS_Point::*)( const gp_Pnt2d & ) >(&BOPDS_Point::SetPnt2D2),
R"#(Modifier Sets 2D point on the second face <thePnt>)#" , py::arg("thePnt")
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("Pnt",
(const gp_Pnt & (BOPDS_Point::*)() const) static_cast<const gp_Pnt & (BOPDS_Point::*)() const>(&BOPDS_Point::Pnt),
R"#(Selector Returns 3D point)#"
)
.def("Pnt2D1",
(const gp_Pnt2d & (BOPDS_Point::*)() const) static_cast<const gp_Pnt2d & (BOPDS_Point::*)() const>(&BOPDS_Point::Pnt2D1),
R"#(Selector Returns 2D point on the first face <thePnt>)#"
)
.def("Pnt2D2",
(const gp_Pnt2d & (BOPDS_Point::*)() const) static_cast<const gp_Pnt2d & (BOPDS_Point::*)() const>(&BOPDS_Point::Pnt2D2),
R"#(Selector Returns 2D point on the second face <thePnt>)#"
)
.def("Pnt",
(const gp_Pnt & (BOPDS_Point::*)() const) static_cast<const gp_Pnt & (BOPDS_Point::*)() const>(&BOPDS_Point::Pnt),
R"#(Selector Returns 3D point)#"
)
.def("Pnt2D1",
(const gp_Pnt2d & (BOPDS_Point::*)() const) static_cast<const gp_Pnt2d & (BOPDS_Point::*)() const>(&BOPDS_Point::Pnt2D1),
R"#(Selector Returns 2D point on the first face <thePnt>)#"
)
.def("Pnt2D2",
(const gp_Pnt2d & (BOPDS_Point::*)() const) static_cast<const gp_Pnt2d & (BOPDS_Point::*)() const>(&BOPDS_Point::Pnt2D2),
R"#(Selector Returns 2D point on the second face <thePnt>)#"
)
;
// Class BOPDS_ShapeInfo from ./opencascade/BOPDS_ShapeInfo.hxx
klass = m.attr("BOPDS_ShapeInfo");
// nested enums
static_cast<py::class_<BOPDS_ShapeInfo , shared_ptr<BOPDS_ShapeInfo> >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const opencascade::handle<NCollection_BaseAllocator> & >() , py::arg("theAllocator") )
// custom constructors
// methods
.def("SetShape",
(void (BOPDS_ShapeInfo::*)( const TopoDS_Shape & ) ) static_cast<void (BOPDS_ShapeInfo::*)( const TopoDS_Shape & ) >(&BOPDS_ShapeInfo::SetShape),
R"#(Modifier Sets the shape <theS>)#" , py::arg("theS")
)
.def("SetShapeType",
(void (BOPDS_ShapeInfo::*)( const TopAbs_ShapeEnum ) ) static_cast<void (BOPDS_ShapeInfo::*)( const TopAbs_ShapeEnum ) >(&BOPDS_ShapeInfo::SetShapeType),
R"#(Modifier Sets the type of shape theType)#" , py::arg("theType")
)
.def("ShapeType",
(TopAbs_ShapeEnum (BOPDS_ShapeInfo::*)() const) static_cast<TopAbs_ShapeEnum (BOPDS_ShapeInfo::*)() const>(&BOPDS_ShapeInfo::ShapeType),
R"#(Selector Returns the type of shape)#"
)
.def("SetBox",
(void (BOPDS_ShapeInfo::*)( const Bnd_Box & ) ) static_cast<void (BOPDS_ShapeInfo::*)( const Bnd_Box & ) >(&BOPDS_ShapeInfo::SetBox),
R"#(Modifier Sets the boundung box of the shape theBox)#" , py::arg("theBox")
)
.def("HasSubShape",
(Standard_Boolean (BOPDS_ShapeInfo::*)( const Standard_Integer ) const) static_cast<Standard_Boolean (BOPDS_ShapeInfo::*)( const Standard_Integer ) const>(&BOPDS_ShapeInfo::HasSubShape),
R"#(Query Returns true if the shape has sub-shape with index theI)#" , py::arg("theI")
)
.def("HasReference",
(Standard_Boolean (BOPDS_ShapeInfo::*)() const) static_cast<Standard_Boolean (BOPDS_ShapeInfo::*)() const>(&BOPDS_ShapeInfo::HasReference),
R"#(None)#"
)
.def("SetReference",
(void (BOPDS_ShapeInfo::*)( const Standard_Integer ) ) static_cast<void (BOPDS_ShapeInfo::*)( const Standard_Integer ) >(&BOPDS_ShapeInfo::SetReference),
R"#(Modifier Sets the index of a reference information)#" , py::arg("theI")
)
.def("Reference",
(Standard_Integer (BOPDS_ShapeInfo::*)() const) static_cast<Standard_Integer (BOPDS_ShapeInfo::*)() const>(&BOPDS_ShapeInfo::Reference),
R"#(Selector Returns the index of a reference information)#"
)
.def("HasBRep",
(Standard_Boolean (BOPDS_ShapeInfo::*)() const) static_cast<Standard_Boolean (BOPDS_ShapeInfo::*)() const>(&BOPDS_ShapeInfo::HasBRep),
R"#(Query Returns true if the shape has boundary representation)#"
)
.def("IsInterfering",
(Standard_Boolean (BOPDS_ShapeInfo::*)() const) static_cast<Standard_Boolean (BOPDS_ShapeInfo::*)() const>(&BOPDS_ShapeInfo::IsInterfering),
R"#(Returns true if the shape can be participant of an interference)#"
)
.def("HasFlag",
(Standard_Boolean (BOPDS_ShapeInfo::*)() const) static_cast<Standard_Boolean (BOPDS_ShapeInfo::*)() const>(&BOPDS_ShapeInfo::HasFlag),
R"#(Query Returns true if there is flag.)#"
)
.def("HasFlag",
(Standard_Boolean (BOPDS_ShapeInfo::*)( Standard_Integer & ) const) static_cast<Standard_Boolean (BOPDS_ShapeInfo::*)( Standard_Integer & ) const>(&BOPDS_ShapeInfo::HasFlag),
R"#(Query Returns true if there is flag. Returns the flag theFlag)#" , py::arg("theFlag")
)
.def("SetFlag",
(void (BOPDS_ShapeInfo::*)( const Standard_Integer ) ) static_cast<void (BOPDS_ShapeInfo::*)( const Standard_Integer ) >(&BOPDS_ShapeInfo::SetFlag),
R"#(Modifier Sets the flag)#" , py::arg("theI")
)
.def("Flag",
(Standard_Integer (BOPDS_ShapeInfo::*)() const) static_cast<Standard_Integer (BOPDS_ShapeInfo::*)() const>(&BOPDS_ShapeInfo::Flag),
R"#(Returns the flag)#"
)
.def("Dump",
(void (BOPDS_ShapeInfo::*)() const) static_cast<void (BOPDS_ShapeInfo::*)() const>(&BOPDS_ShapeInfo::Dump),
R"#(None)#"
)
.def("SetShape",
(void (BOPDS_ShapeInfo::*)( const TopoDS_Shape & ) ) static_cast<void (BOPDS_ShapeInfo::*)( const TopoDS_Shape & ) >(&BOPDS_ShapeInfo::SetShape),
R"#(Modifier Sets the shape <theS>)#" , py::arg("theS")
)
.def("SetShapeType",
(void (BOPDS_ShapeInfo::*)( const TopAbs_ShapeEnum ) ) static_cast<void (BOPDS_ShapeInfo::*)( const TopAbs_ShapeEnum ) >(&BOPDS_ShapeInfo::SetShapeType),
R"#(Modifier Sets the type of shape theType)#" , py::arg("theType")
)
.def("ShapeType",
(TopAbs_ShapeEnum (BOPDS_ShapeInfo::*)() const) static_cast<TopAbs_ShapeEnum (BOPDS_ShapeInfo::*)() const>(&BOPDS_ShapeInfo::ShapeType),
R"#(Selector Returns the type of shape)#"
)
.def("SetBox",
(void (BOPDS_ShapeInfo::*)( const Bnd_Box & ) ) static_cast<void (BOPDS_ShapeInfo::*)( const Bnd_Box & ) >(&BOPDS_ShapeInfo::SetBox),
R"#(Modifier Sets the boundung box of the shape theBox)#" , py::arg("theBox")
)
.def("HasSubShape",
(Standard_Boolean (BOPDS_ShapeInfo::*)( const Standard_Integer ) const) static_cast<Standard_Boolean (BOPDS_ShapeInfo::*)( const Standard_Integer ) const>(&BOPDS_ShapeInfo::HasSubShape),
R"#(Query Returns true if the shape has sub-shape with index theI)#" , py::arg("theI")
)
.def("HasReference",
(Standard_Boolean (BOPDS_ShapeInfo::*)() const) static_cast<Standard_Boolean (BOPDS_ShapeInfo::*)() const>(&BOPDS_ShapeInfo::HasReference),
R"#(None)#"
)
.def("SetReference",
(void (BOPDS_ShapeInfo::*)( const Standard_Integer ) ) static_cast<void (BOPDS_ShapeInfo::*)( const Standard_Integer ) >(&BOPDS_ShapeInfo::SetReference),
R"#(Modifier Sets the index of a reference information)#" , py::arg("theI")
)
.def("Reference",
(Standard_Integer (BOPDS_ShapeInfo::*)() const) static_cast<Standard_Integer (BOPDS_ShapeInfo::*)() const>(&BOPDS_ShapeInfo::Reference),
R"#(Selector Returns the index of a reference information)#"
)
.def("HasBRep",
(Standard_Boolean (BOPDS_ShapeInfo::*)() const) static_cast<Standard_Boolean (BOPDS_ShapeInfo::*)() const>(&BOPDS_ShapeInfo::HasBRep),
R"#(Query Returns true if the shape has boundary representation)#"
)
.def("IsInterfering",
(Standard_Boolean (BOPDS_ShapeInfo::*)() const) static_cast<Standard_Boolean (BOPDS_ShapeInfo::*)() const>(&BOPDS_ShapeInfo::IsInterfering),
R"#(Returns true if the shape can be participant of an interference)#"
)
.def("HasFlag",
(Standard_Boolean (BOPDS_ShapeInfo::*)() const) static_cast<Standard_Boolean (BOPDS_ShapeInfo::*)() const>(&BOPDS_ShapeInfo::HasFlag),
R"#(Query Returns true if there is flag.)#"
)
.def("HasFlag",
(Standard_Boolean (BOPDS_ShapeInfo::*)( Standard_Integer & ) const) static_cast<Standard_Boolean (BOPDS_ShapeInfo::*)( Standard_Integer & ) const>(&BOPDS_ShapeInfo::HasFlag),
R"#(Query Returns true if there is flag. Returns the flag theFlag)#" , py::arg("theFlag")
)
.def("SetFlag",
(void (BOPDS_ShapeInfo::*)( const Standard_Integer ) ) static_cast<void (BOPDS_ShapeInfo::*)( const Standard_Integer ) >(&BOPDS_ShapeInfo::SetFlag),
R"#(Modifier Sets the flag)#" , py::arg("theFlag")
)
.def("Flag",
(Standard_Integer (BOPDS_ShapeInfo::*)() const) static_cast<Standard_Integer (BOPDS_ShapeInfo::*)() const>(&BOPDS_ShapeInfo::Flag),
R"#(Returns the flag)#"
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("Shape",
(const TopoDS_Shape & (BOPDS_ShapeInfo::*)() const) static_cast<const TopoDS_Shape & (BOPDS_ShapeInfo::*)() const>(&BOPDS_ShapeInfo::Shape),
R"#(Selector Returns the shape)#"
)
.def("Box",
(const Bnd_Box & (BOPDS_ShapeInfo::*)() const) static_cast<const Bnd_Box & (BOPDS_ShapeInfo::*)() const>(&BOPDS_ShapeInfo::Box),
R"#(Selector Returns the boundung box of the shape)#"
)
.def("ChangeBox",
(Bnd_Box & (BOPDS_ShapeInfo::*)() ) static_cast<Bnd_Box & (BOPDS_ShapeInfo::*)() >(&BOPDS_ShapeInfo::ChangeBox),
R"#(Selector/Modifier Returns the boundung box of the shape)#"
, py::return_value_policy::reference_internal
)
.def("SubShapes",
(const TColStd_ListOfInteger & (BOPDS_ShapeInfo::*)() const) static_cast<const TColStd_ListOfInteger & (BOPDS_ShapeInfo::*)() const>(&BOPDS_ShapeInfo::SubShapes),
R"#(Selector Returns the list of indices of sub-shapes)#"
, py::return_value_policy::reference_internal
)
.def("ChangeSubShapes",
(TColStd_ListOfInteger & (BOPDS_ShapeInfo::*)() ) static_cast<TColStd_ListOfInteger & (BOPDS_ShapeInfo::*)() >(&BOPDS_ShapeInfo::ChangeSubShapes),
R"#(Selector/ Modifier Returns the list of indices of sub-shapes)#"
, py::return_value_policy::reference_internal
)
.def("Shape",
(const TopoDS_Shape & (BOPDS_ShapeInfo::*)() const) static_cast<const TopoDS_Shape & (BOPDS_ShapeInfo::*)() const>(&BOPDS_ShapeInfo::Shape),
R"#(Selector Returns the shape)#"
)
.def("Box",
(const Bnd_Box & (BOPDS_ShapeInfo::*)() const) static_cast<const Bnd_Box & (BOPDS_ShapeInfo::*)() const>(&BOPDS_ShapeInfo::Box),
R"#(Selector Returns the boundung box of the shape)#"
)
.def("ChangeBox",
(Bnd_Box & (BOPDS_ShapeInfo::*)() ) static_cast<Bnd_Box & (BOPDS_ShapeInfo::*)() >(&BOPDS_ShapeInfo::ChangeBox),
R"#(Selector/Modifier Returns the boundung box of the shape)#"
, py::return_value_policy::reference_internal
)
.def("SubShapes",
(const TColStd_ListOfInteger & (BOPDS_ShapeInfo::*)() const) static_cast<const TColStd_ListOfInteger & (BOPDS_ShapeInfo::*)() const>(&BOPDS_ShapeInfo::SubShapes),
R"#(Selector Returns the list of indices of sub-shapes)#"
, py::return_value_policy::reference_internal
)
.def("ChangeSubShapes",
(TColStd_ListOfInteger & (BOPDS_ShapeInfo::*)() ) static_cast<TColStd_ListOfInteger & (BOPDS_ShapeInfo::*)() >(&BOPDS_ShapeInfo::ChangeSubShapes),
R"#(Selector/ Modifier Returns the list of indices of sub-shapes)#"
, py::return_value_policy::reference_internal
)
;
// Class BOPDS_SubIterator from ./opencascade/BOPDS_SubIterator.hxx
klass = m.attr("BOPDS_SubIterator");
// nested enums
static_cast<py::class_<BOPDS_SubIterator , shared_ptr<BOPDS_SubIterator> >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const opencascade::handle<NCollection_BaseAllocator> & >() , py::arg("theAllocator") )
// custom constructors
// methods
.def("SetSubSet1",
(void (BOPDS_SubIterator::*)( const NCollection_List<Standard_Integer> & ) ) static_cast<void (BOPDS_SubIterator::*)( const NCollection_List<Standard_Integer> & ) >(&BOPDS_SubIterator::SetSubSet1),
R"#(Sets the first set of indices <theLI> to process)#" , py::arg("theLI")
)
.def("SetSubSet2",
(void (BOPDS_SubIterator::*)( const NCollection_List<Standard_Integer> & ) ) static_cast<void (BOPDS_SubIterator::*)( const NCollection_List<Standard_Integer> & ) >(&BOPDS_SubIterator::SetSubSet2),
R"#(Sets the second set of indices <theLI> to process)#" , py::arg("theLI")
)
.def("Initialize",
(void (BOPDS_SubIterator::*)() ) static_cast<void (BOPDS_SubIterator::*)() >(&BOPDS_SubIterator::Initialize),
R"#(Initializes the iterator)#"
)
.def("More",
(Standard_Boolean (BOPDS_SubIterator::*)() const) static_cast<Standard_Boolean (BOPDS_SubIterator::*)() const>(&BOPDS_SubIterator::More),
R"#(Returns true if there are more pairs of intersected shapes)#"
)
.def("Next",
(void (BOPDS_SubIterator::*)() ) static_cast<void (BOPDS_SubIterator::*)() >(&BOPDS_SubIterator::Next),
R"#(Moves iterations ahead)#"
)
.def("Prepare",
(void (BOPDS_SubIterator::*)() ) static_cast<void (BOPDS_SubIterator::*)() >(&BOPDS_SubIterator::Prepare),
R"#(Perform the intersection algorithm and prepare the results to be used)#"
)
.def("ExpectedLength",
(Standard_Integer (BOPDS_SubIterator::*)() const) static_cast<Standard_Integer (BOPDS_SubIterator::*)() const>(&BOPDS_SubIterator::ExpectedLength),
R"#(Returns the number of interfering pairs)#"
)
// methods using call by reference i.s.o. return
.def("Value",
[]( BOPDS_SubIterator &self ){
Standard_Integer theIndex1;
Standard_Integer theIndex2;
self.Value(theIndex1,theIndex2);
return std::make_tuple(theIndex1,theIndex2); },
R"#(Returns indices (DS) of intersected shapes theIndex1 - the index of the first shape theIndex2 - the index of the second shape)#"
)
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("DS",
(const BOPDS_DS & (BOPDS_SubIterator::*)() const) static_cast<const BOPDS_DS & (BOPDS_SubIterator::*)() const>(&BOPDS_SubIterator::DS),
R"#(Returns the data structure)#"
)
.def("SubSet1",
(const TColStd_ListOfInteger & (BOPDS_SubIterator::*)() const) static_cast<const TColStd_ListOfInteger & (BOPDS_SubIterator::*)() const>(&BOPDS_SubIterator::SubSet1),
R"#(Returns the first set of indices to process)#"
, py::return_value_policy::reference_internal
)
.def("SubSet2",
(const TColStd_ListOfInteger & (BOPDS_SubIterator::*)() const) static_cast<const TColStd_ListOfInteger & (BOPDS_SubIterator::*)() const>(&BOPDS_SubIterator::SubSet2),
R"#(Returns the second set of indices to process)#"
, py::return_value_policy::reference_internal
)
;
// Class BOPDS_Tools from ./opencascade/BOPDS_Tools.hxx
klass = m.attr("BOPDS_Tools");
// default constructor
register_default_constructor<BOPDS_Tools , shared_ptr<BOPDS_Tools>>(m,"BOPDS_Tools");
// nested enums
static_cast<py::class_<BOPDS_Tools , shared_ptr<BOPDS_Tools> >>(klass)
// constructors
// custom constructors
// methods
// methods using call by reference i.s.o. return
// static methods
.def_static("TypeToInteger_s",
(Standard_Integer (*)( const TopAbs_ShapeEnum , const TopAbs_ShapeEnum ) ) static_cast<Standard_Integer (*)( const TopAbs_ShapeEnum , const TopAbs_ShapeEnum ) >(&BOPDS_Tools::TypeToInteger),
R"#(Converts the conmbination of two types of shape <theT1>,<theT2> to the one integer value, that is returned)#" , py::arg("theT1"), py::arg("theT2")
)
.def_static("TypeToInteger_s",
(Standard_Integer (*)( const TopAbs_ShapeEnum ) ) static_cast<Standard_Integer (*)( const TopAbs_ShapeEnum ) >(&BOPDS_Tools::TypeToInteger),
R"#(Converts the type of shape <theT>, to integer value, that is returned)#" , py::arg("theT")
)
.def_static("HasBRep_s",
(Standard_Boolean (*)( const TopAbs_ShapeEnum ) ) static_cast<Standard_Boolean (*)( const TopAbs_ShapeEnum ) >(&BOPDS_Tools::HasBRep),
R"#(Returns true if the type <theT> correspond to a shape having boundary representation)#" , py::arg("theT")
)
.def_static("IsInterfering_s",
(Standard_Boolean (*)( const TopAbs_ShapeEnum ) ) static_cast<Standard_Boolean (*)( const TopAbs_ShapeEnum ) >(&BOPDS_Tools::IsInterfering),
R"#(Returns true if the type <theT> can be participant of an interference)#" , py::arg("theT")
)
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class BOPDS_InterfEE from ./opencascade/BOPDS_Interf.hxx
klass = m.attr("BOPDS_InterfEE");
// nested enums
static_cast<py::class_<BOPDS_InterfEE , shared_ptr<BOPDS_InterfEE> , BOPDS_Interf >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const opencascade::handle<NCollection_BaseAllocator> & >() , py::arg("theAllocator") )
// custom constructors
// methods
.def("SetCommonPart",
(void (BOPDS_InterfEE::*)( const IntTools_CommonPrt & ) ) static_cast<void (BOPDS_InterfEE::*)( const IntTools_CommonPrt & ) >(&BOPDS_InterfEE::SetCommonPart),
R"#(Modifier Sets the info of common part)#" , py::arg("theCP")
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("CommonPart",
(const IntTools_CommonPrt & (BOPDS_InterfEE::*)() const) static_cast<const IntTools_CommonPrt & (BOPDS_InterfEE::*)() const>(&BOPDS_InterfEE::CommonPart),
R"#(Selector Returns the info of common part)#"
)
;
// Class BOPDS_InterfEF from ./opencascade/BOPDS_Interf.hxx
klass = m.attr("BOPDS_InterfEF");
// nested enums
static_cast<py::class_<BOPDS_InterfEF , shared_ptr<BOPDS_InterfEF> , BOPDS_Interf >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const opencascade::handle<NCollection_BaseAllocator> & >() , py::arg("theAllocator") )
// custom constructors
// methods
.def("SetCommonPart",
(void (BOPDS_InterfEF::*)( const IntTools_CommonPrt & ) ) static_cast<void (BOPDS_InterfEF::*)( const IntTools_CommonPrt & ) >(&BOPDS_InterfEF::SetCommonPart),
R"#(Modifier Sets the info of common part)#" , py::arg("theCP")
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("CommonPart",
(const IntTools_CommonPrt & (BOPDS_InterfEF::*)() const) static_cast<const IntTools_CommonPrt & (BOPDS_InterfEF::*)() const>(&BOPDS_InterfEF::CommonPart),
R"#(Selector Returns the info of common part)#"
)
;
// Class BOPDS_InterfEZ from ./opencascade/BOPDS_Interf.hxx
klass = m.attr("BOPDS_InterfEZ");
// nested enums
static_cast<py::class_<BOPDS_InterfEZ , shared_ptr<BOPDS_InterfEZ> , BOPDS_Interf >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const opencascade::handle<NCollection_BaseAllocator> & >() , py::arg("theAllocator") )
// custom constructors
// methods
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class BOPDS_InterfFF from ./opencascade/BOPDS_Interf.hxx
klass = m.attr("BOPDS_InterfFF");
// nested enums
static_cast<py::class_<BOPDS_InterfFF , shared_ptr<BOPDS_InterfFF> , BOPDS_Interf >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (BOPDS_InterfFF::*)( const Standard_Integer , const Standard_Integer ) ) static_cast<void (BOPDS_InterfFF::*)( const Standard_Integer , const Standard_Integer ) >(&BOPDS_InterfFF::Init),
R"#(Initializer)#" , py::arg("theNbCurves"), py::arg("theNbPoints")
)
.def("SetTangentFaces",
(void (BOPDS_InterfFF::*)( const Standard_Boolean ) ) static_cast<void (BOPDS_InterfFF::*)( const Standard_Boolean ) >(&BOPDS_InterfFF::SetTangentFaces),
R"#(Modifier Sets the flag of whether the faces are tangent)#" , py::arg("theFlag")
)
.def("TangentFaces",
(Standard_Boolean (BOPDS_InterfFF::*)() const) static_cast<Standard_Boolean (BOPDS_InterfFF::*)() const>(&BOPDS_InterfFF::TangentFaces),
R"#(Selector Returns the flag whether the faces are tangent)#"
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("Curves",
(const BOPDS_VectorOfCurve & (BOPDS_InterfFF::*)() const) static_cast<const BOPDS_VectorOfCurve & (BOPDS_InterfFF::*)() const>(&BOPDS_InterfFF::Curves),
R"#(Selector Returns the intersection curves)#"
)
.def("ChangeCurves",
(BOPDS_VectorOfCurve & (BOPDS_InterfFF::*)() ) static_cast<BOPDS_VectorOfCurve & (BOPDS_InterfFF::*)() >(&BOPDS_InterfFF::ChangeCurves),
R"#(Selector/Modifier Returns the intersection curves)#"
, py::return_value_policy::reference_internal
)
.def("Points",
(const BOPDS_VectorOfPoint & (BOPDS_InterfFF::*)() const) static_cast<const BOPDS_VectorOfPoint & (BOPDS_InterfFF::*)() const>(&BOPDS_InterfFF::Points),
R"#(Selector Returns the intersection points)#"
)
.def("ChangePoints",
(BOPDS_VectorOfPoint & (BOPDS_InterfFF::*)() ) static_cast<BOPDS_VectorOfPoint & (BOPDS_InterfFF::*)() >(&BOPDS_InterfFF::ChangePoints),
R"#(Selector/Modifier Returns the intersection points)#"
, py::return_value_policy::reference_internal
)
;
// Class BOPDS_InterfFZ from ./opencascade/BOPDS_Interf.hxx
klass = m.attr("BOPDS_InterfFZ");
// nested enums
static_cast<py::class_<BOPDS_InterfFZ , shared_ptr<BOPDS_InterfFZ> , BOPDS_Interf >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const opencascade::handle<NCollection_BaseAllocator> & >() , py::arg("theAllocator") )
// custom constructors
// methods
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class BOPDS_InterfVE from ./opencascade/BOPDS_Interf.hxx
klass = m.attr("BOPDS_InterfVE");
// nested enums
static_cast<py::class_<BOPDS_InterfVE , shared_ptr<BOPDS_InterfVE> , BOPDS_Interf >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const opencascade::handle<NCollection_BaseAllocator> & >() , py::arg("theAllocator") )
// custom constructors
// methods
.def("SetParameter",
(void (BOPDS_InterfVE::*)( const Standard_Real ) ) static_cast<void (BOPDS_InterfVE::*)( const Standard_Real ) >(&BOPDS_InterfVE::SetParameter),
R"#(Modifier Sets the value of parameter of the point of the vertex on the curve of the edge)#" , py::arg("theT")
)
.def("Parameter",
(Standard_Real (BOPDS_InterfVE::*)() const) static_cast<Standard_Real (BOPDS_InterfVE::*)() const>(&BOPDS_InterfVE::Parameter),
R"#(Selector Returrns the value of parameter of the point of the vertex on the curve of the edge)#"
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class BOPDS_InterfVF from ./opencascade/BOPDS_Interf.hxx
klass = m.attr("BOPDS_InterfVF");
// nested enums
static_cast<py::class_<BOPDS_InterfVF , shared_ptr<BOPDS_InterfVF> , BOPDS_Interf >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const opencascade::handle<NCollection_BaseAllocator> & >() , py::arg("theAllocator") )
// custom constructors
// methods
.def("SetUV",
(void (BOPDS_InterfVF::*)( const Standard_Real , const Standard_Real ) ) static_cast<void (BOPDS_InterfVF::*)( const Standard_Real , const Standard_Real ) >(&BOPDS_InterfVF::SetUV),
R"#(Modifier Sets the value of parameters of the point of the vertex on the surface of of the face)#" , py::arg("theU"), py::arg("theV")
)
// methods using call by reference i.s.o. return
.def("UV",
[]( BOPDS_InterfVF &self ){
Standard_Real theU;
Standard_Real theV;
self.UV(theU,theV);
return std::make_tuple(theU,theV); },
R"#(Selector Returns the value of parameters of the point of the vertex on the surface of of the face)#"
)
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class BOPDS_InterfVV from ./opencascade/BOPDS_Interf.hxx
klass = m.attr("BOPDS_InterfVV");
// nested enums
static_cast<py::class_<BOPDS_InterfVV , shared_ptr<BOPDS_InterfVV> , BOPDS_Interf >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const opencascade::handle<NCollection_BaseAllocator> & >() , py::arg("theAllocator") )
// custom constructors
// methods
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class BOPDS_InterfVZ from ./opencascade/BOPDS_Interf.hxx
klass = m.attr("BOPDS_InterfVZ");
// nested enums
static_cast<py::class_<BOPDS_InterfVZ , shared_ptr<BOPDS_InterfVZ> , BOPDS_Interf >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const opencascade::handle<NCollection_BaseAllocator> & >() , py::arg("theAllocator") )
// custom constructors
// methods
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class BOPDS_InterfZZ from ./opencascade/BOPDS_Interf.hxx
klass = m.attr("BOPDS_InterfZZ");
// nested enums
static_cast<py::class_<BOPDS_InterfZZ , shared_ptr<BOPDS_InterfZZ> , BOPDS_Interf >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const opencascade::handle<NCollection_BaseAllocator> & >() , py::arg("theAllocator") )
// custom constructors
// methods
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// functions
// ./opencascade/BOPDS_CommonBlock.hxx
// ./opencascade/BOPDS_CoupleOfPaveBlocks.hxx
// ./opencascade/BOPDS_Curve.hxx
// ./opencascade/BOPDS_DS.hxx
// ./opencascade/BOPDS_DataMapOfIntegerListOfPaveBlock.hxx
// ./opencascade/BOPDS_DataMapOfPaveBlockCommonBlock.hxx
// ./opencascade/BOPDS_DataMapOfPaveBlockListOfInteger.hxx
// ./opencascade/BOPDS_DataMapOfPaveBlockListOfPaveBlock.hxx
// ./opencascade/BOPDS_DataMapOfShapeCoupleOfPaveBlocks.hxx
// ./opencascade/BOPDS_FaceInfo.hxx
// ./opencascade/BOPDS_IndexRange.hxx
// ./opencascade/BOPDS_IndexedDataMapOfPaveBlockListOfInteger.hxx
// ./opencascade/BOPDS_IndexedDataMapOfPaveBlockListOfPaveBlock.hxx
// ./opencascade/BOPDS_IndexedDataMapOfShapeCoupleOfPaveBlocks.hxx
// ./opencascade/BOPDS_IndexedMapOfPaveBlock.hxx
// ./opencascade/BOPDS_Interf.hxx
// ./opencascade/BOPDS_ListOfPave.hxx
// ./opencascade/BOPDS_ListOfPaveBlock.hxx
// ./opencascade/BOPDS_MapOfCommonBlock.hxx
// ./opencascade/BOPDS_MapOfPair.hxx
// ./opencascade/BOPDS_MapOfPave.hxx
// ./opencascade/BOPDS_MapOfPaveBlock.hxx
// ./opencascade/BOPDS_PDS.hxx
// ./opencascade/BOPDS_PIterator.hxx
// ./opencascade/BOPDS_PIteratorSI.hxx
// ./opencascade/BOPDS_Pair.hxx
// ./opencascade/BOPDS_Pave.hxx
// ./opencascade/BOPDS_PaveBlock.hxx
// ./opencascade/BOPDS_Point.hxx
// ./opencascade/BOPDS_ShapeInfo.hxx
// ./opencascade/BOPDS_SubIterator.hxx
// ./opencascade/BOPDS_Tools.hxx
// ./opencascade/BOPDS_VectorOfCurve.hxx
// ./opencascade/BOPDS_VectorOfFaceInfo.hxx
// ./opencascade/BOPDS_VectorOfIndexRange.hxx
// ./opencascade/BOPDS_VectorOfInterfEE.hxx
// ./opencascade/BOPDS_VectorOfInterfEF.hxx
// ./opencascade/BOPDS_VectorOfInterfEZ.hxx
// ./opencascade/BOPDS_VectorOfInterfFF.hxx
// ./opencascade/BOPDS_VectorOfInterfFZ.hxx
// ./opencascade/BOPDS_VectorOfInterfVE.hxx
// ./opencascade/BOPDS_VectorOfInterfVF.hxx
// ./opencascade/BOPDS_VectorOfInterfVV.hxx
// ./opencascade/BOPDS_VectorOfInterfVZ.hxx
// ./opencascade/BOPDS_VectorOfInterfZZ.hxx
// ./opencascade/BOPDS_VectorOfListOfPaveBlock.hxx
// ./opencascade/BOPDS_VectorOfPair.hxx
// ./opencascade/BOPDS_VectorOfPave.hxx
// ./opencascade/BOPDS_VectorOfPoint.hxx
// ./opencascade/BOPDS_VectorOfShapeInfo.hxx
// ./opencascade/BOPDS_VectorOfVectorOfPair.hxx
// Additional functions
// operators
// register typdefs
register_template_NCollection_DataMap<Standard_Integer, BOPDS_ListOfPaveBlock>(m,"BOPDS_DataMapOfIntegerListOfPaveBlock");
register_template_NCollection_DataMap<opencascade::handle<BOPDS_PaveBlock>, TColStd_ListOfInteger>(m,"BOPDS_DataMapOfPaveBlockListOfInteger");
register_template_NCollection_DataMap<opencascade::handle<BOPDS_PaveBlock>, BOPDS_ListOfPaveBlock>(m,"BOPDS_DataMapOfPaveBlockListOfPaveBlock");
register_template_NCollection_DataMap<TopoDS_Shape, BOPDS_CoupleOfPaveBlocks, TopTools_ShapeMapHasher>(m,"BOPDS_DataMapOfShapeCoupleOfPaveBlocks");
register_template_NCollection_IndexedDataMap<opencascade::handle<BOPDS_PaveBlock>, TColStd_ListOfInteger>(m,"BOPDS_IndexedDataMapOfPaveBlockListOfInteger");
register_template_NCollection_IndexedDataMap<opencascade::handle<BOPDS_PaveBlock>, BOPDS_ListOfPaveBlock>(m,"BOPDS_IndexedDataMapOfPaveBlockListOfPaveBlock");
register_template_NCollection_IndexedDataMap<TopoDS_Shape, BOPDS_CoupleOfPaveBlocks, TopTools_ShapeMapHasher>(m,"BOPDS_IndexedDataMapOfShapeCoupleOfPaveBlocks");
register_template_NCollection_IndexedMap<opencascade::handle<BOPDS_PaveBlock>>(m,"BOPDS_IndexedMapOfPaveBlock");
register_template_NCollection_List<BOPDS_Pave>(m,"BOPDS_ListOfPave");
register_template_NCollection_List<opencascade::handle<BOPDS_PaveBlock>>(m,"BOPDS_ListOfPaveBlock");
register_template_NCollection_Map<opencascade::handle<BOPDS_CommonBlock>>(m,"BOPDS_MapOfCommonBlock");
register_template_NCollection_Map<BOPDS_Pair>(m,"BOPDS_MapOfPair");
register_template_NCollection_Map<BOPDS_Pave>(m,"BOPDS_MapOfPave");
register_template_NCollection_Map<opencascade::handle<BOPDS_PaveBlock>>(m,"BOPDS_MapOfPaveBlock");
register_template_NCollection_Vector<BOPDS_Curve>(m,"BOPDS_VectorOfCurve");
register_template_NCollection_Vector<BOPDS_FaceInfo>(m,"BOPDS_VectorOfFaceInfo");
register_template_NCollection_Vector<BOPDS_IndexRange>(m,"BOPDS_VectorOfIndexRange");
register_template_NCollection_Vector<BOPDS_InterfEE>(m,"BOPDS_VectorOfInterfEE");
register_template_NCollection_Vector<BOPDS_InterfEF>(m,"BOPDS_VectorOfInterfEF");
register_template_NCollection_Vector<BOPDS_InterfEZ>(m,"BOPDS_VectorOfInterfEZ");
register_template_NCollection_Vector<BOPDS_InterfFF>(m,"BOPDS_VectorOfInterfFF");
register_template_NCollection_Vector<BOPDS_InterfFZ>(m,"BOPDS_VectorOfInterfFZ");
register_template_NCollection_Vector<BOPDS_InterfVE>(m,"BOPDS_VectorOfInterfVE");
register_template_NCollection_Vector<BOPDS_InterfVF>(m,"BOPDS_VectorOfInterfVF");
register_template_NCollection_Vector<BOPDS_InterfVV>(m,"BOPDS_VectorOfInterfVV");
register_template_NCollection_Vector<BOPDS_InterfVZ>(m,"BOPDS_VectorOfInterfVZ");
register_template_NCollection_Vector<BOPDS_InterfZZ>(m,"BOPDS_VectorOfInterfZZ");
register_template_NCollection_Vector<BOPDS_ListOfPaveBlock>(m,"BOPDS_VectorOfListOfPaveBlock");
register_template_NCollection_Vector<BOPDS_Pair>(m,"BOPDS_VectorOfPair");
register_template_NCollection_Array1<BOPDS_Pave>(m,"BOPDS_VectorOfPave");
register_template_NCollection_Vector<BOPDS_Point>(m,"BOPDS_VectorOfPoint");
register_template_NCollection_Vector<BOPDS_ShapeInfo>(m,"BOPDS_VectorOfShapeInfo");
register_template_NCollection_Vector<BOPDS_VectorOfPair>(m,"BOPDS_VectorOfVectorOfPair");
// exceptions
// user-defined post-inclusion per module in the body
};
// user-defined post-inclusion per module
// user-defined post
|