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 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632
|
// 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 <IGESData_IGESEntity.hxx>
#include <Interface_Graph.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IFSelect_SessionPilot.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IFSelect_ContextWrite.hxx>
#include <IGESData_IGESWriter.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IFSelect_ContextModif.hxx>
#include <IGESData_IGESModel.hxx>
#include <Interface_CopyTool.hxx>
#include <TCollection_AsciiString.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IFSelect_ContextModif.hxx>
#include <IGESData_IGESModel.hxx>
#include <Interface_CopyTool.hxx>
#include <TCollection_AsciiString.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IFSelect_IntParam.hxx>
#include <IFSelect_ContextModif.hxx>
#include <IGESData_IGESModel.hxx>
#include <Interface_CopyTool.hxx>
#include <TCollection_AsciiString.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IFSelect_IntParam.hxx>
#include <IFSelect_ContextModif.hxx>
#include <IGESData_IGESModel.hxx>
#include <Interface_CopyTool.hxx>
#include <TCollection_AsciiString.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IFSelect_ContextModif.hxx>
#include <IGESData_IGESModel.hxx>
#include <Interface_CopyTool.hxx>
#include <TCollection_AsciiString.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Interface_InterfaceModel.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESSelect_ViewSorter.hxx>
#include <TCollection_AsciiString.hxx>
#include <Interface_Graph.hxx>
#include <IFGraph_SubPartsIterator.hxx>
#include <Interface_EntityIterator.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESSelect_ViewSorter.hxx>
#include <TCollection_AsciiString.hxx>
#include <Interface_Graph.hxx>
#include <IFGraph_SubPartsIterator.hxx>
#include <Interface_EntityIterator.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IFSelect_SessionFile.hxx>
#include <TCollection_AsciiString.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IFSelect_EditForm.hxx>
#include <Interface_InterfaceModel.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IFSelect_EditForm.hxx>
#include <Interface_InterfaceModel.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESData_IGESWriter.hxx>
#include <IFSelect_ContextWrite.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IFSelect_ContextWrite.hxx>
#include <IGESData_IGESWriter.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Interface_InterfaceModel.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Interface_InterfaceModel.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESData_IGESModel.hxx>
#include <IGESData_Protocol.hxx>
#include <IFSelect_ContextModif.hxx>
#include <Interface_InterfaceModel.hxx>
#include <Interface_Protocol.hxx>
#include <Interface_CopyTool.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IFSelect_ContextModif.hxx>
#include <IGESData_IGESModel.hxx>
#include <Interface_CopyTool.hxx>
#include <TCollection_AsciiString.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IFSelect_ContextModif.hxx>
#include <IGESData_IGESModel.hxx>
#include <Interface_CopyTool.hxx>
#include <TCollection_AsciiString.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IFSelect_ContextModif.hxx>
#include <IGESData_IGESModel.hxx>
#include <Interface_CopyTool.hxx>
#include <TCollection_AsciiString.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Interface_Graph.hxx>
#include <Interface_EntityIterator.hxx>
#include <TCollection_AsciiString.hxx>
#include <IGESData_IGESEntity.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Interface_Graph.hxx>
#include <Interface_EntityIterator.hxx>
#include <TCollection_AsciiString.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Interface_Graph.hxx>
#include <Interface_EntityIterator.hxx>
#include <TCollection_AsciiString.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Interface_EntityIterator.hxx>
#include <Interface_Graph.hxx>
#include <TCollection_AsciiString.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Interface_Graph.hxx>
#include <Interface_EntityIterator.hxx>
#include <TCollection_AsciiString.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Interface_EntityIterator.hxx>
#include <Interface_Graph.hxx>
#include <TCollection_AsciiString.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Interface_EntityIterator.hxx>
#include <Interface_Graph.hxx>
#include <TCollection_AsciiString.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IFSelect_IntParam.hxx>
#include <Interface_InterfaceModel.hxx>
#include <TCollection_AsciiString.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <TCollection_HAsciiString.hxx>
#include <Interface_InterfaceModel.hxx>
#include <TCollection_AsciiString.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Interface_Graph.hxx>
#include <Interface_EntityIterator.hxx>
#include <TCollection_AsciiString.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Interface_EntityIterator.hxx>
#include <Interface_Graph.hxx>
#include <TCollection_AsciiString.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Interface_InterfaceModel.hxx>
#include <TCollection_AsciiString.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Interface_InterfaceModel.hxx>
#include <TCollection_AsciiString.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <TCollection_HAsciiString.hxx>
#include <IFSelect_ContextModif.hxx>
#include <IGESData_IGESModel.hxx>
#include <Interface_CopyTool.hxx>
#include <TCollection_AsciiString.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IFSelect_ContextModif.hxx>
#include <IGESData_IGESModel.hxx>
#include <Interface_CopyTool.hxx>
#include <TCollection_AsciiString.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IFSelect_ContextModif.hxx>
#include <IGESData_IGESModel.hxx>
#include <Interface_CopyTool.hxx>
#include <TCollection_AsciiString.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Interface_InterfaceModel.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Interface_InterfaceModel.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Interface_InterfaceModel.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Interface_CopyControl.hxx>
#include <Interface_Graph.hxx>
#include <Interface_Protocol.hxx>
#include <Interface_CheckIterator.hxx>
#include <Interface_InterfaceModel.hxx>
#include <TCollection_AsciiString.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IFSelect_ContextModif.hxx>
#include <IGESData_IGESModel.hxx>
#include <Interface_CopyTool.hxx>
#include <TCollection_AsciiString.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IFSelect_ContextModif.hxx>
#include <IGESData_IGESModel.hxx>
#include <Interface_CopyTool.hxx>
#include <TCollection_AsciiString.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IFSelect_ContextModif.hxx>
#include <IGESData_IGESModel.hxx>
#include <Interface_CopyTool.hxx>
#include <TCollection_AsciiString.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESData_IGESModel.hxx>
#include <IGESData_IGESEntity.hxx>
#include <Interface_InterfaceModel.hxx>
#include <Interface_Graph.hxx>
#include <IFSelect_PacketList.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Interface_InterfaceModel.hxx>
#include <Interface_Protocol.hxx>
#include <IFSelect_ContextWrite.hxx>
#include <IGESData_Protocol.hxx>
// module includes
#include <IGESSelect.hxx>
#include <IGESSelect_Activator.hxx>
#include <IGESSelect_AddFileComment.hxx>
#include <IGESSelect_AddGroup.hxx>
#include <IGESSelect_AutoCorrect.hxx>
#include <IGESSelect_ChangeLevelList.hxx>
#include <IGESSelect_ChangeLevelNumber.hxx>
#include <IGESSelect_ComputeStatus.hxx>
#include <IGESSelect_CounterOfLevelNumber.hxx>
#include <IGESSelect_DispPerDrawing.hxx>
#include <IGESSelect_DispPerSingleView.hxx>
#include <IGESSelect_Dumper.hxx>
#include <IGESSelect_EditDirPart.hxx>
#include <IGESSelect_EditHeader.hxx>
#include <IGESSelect_FileModifier.hxx>
#include <IGESSelect_FloatFormat.hxx>
#include <IGESSelect_IGESName.hxx>
#include <IGESSelect_IGESTypeForm.hxx>
#include <IGESSelect_ModelModifier.hxx>
#include <IGESSelect_RebuildDrawings.hxx>
#include <IGESSelect_RebuildGroups.hxx>
#include <IGESSelect_RemoveCurves.hxx>
#include <IGESSelect_SelectBasicGeom.hxx>
#include <IGESSelect_SelectBypassGroup.hxx>
#include <IGESSelect_SelectBypassSubfigure.hxx>
#include <IGESSelect_SelectDrawingFrom.hxx>
#include <IGESSelect_SelectFaces.hxx>
#include <IGESSelect_SelectFromDrawing.hxx>
#include <IGESSelect_SelectFromSingleView.hxx>
#include <IGESSelect_SelectLevelNumber.hxx>
#include <IGESSelect_SelectName.hxx>
#include <IGESSelect_SelectPCurves.hxx>
#include <IGESSelect_SelectSingleViewFrom.hxx>
#include <IGESSelect_SelectSubordinate.hxx>
#include <IGESSelect_SelectVisibleStatus.hxx>
#include <IGESSelect_SetGlobalParameter.hxx>
#include <IGESSelect_SetLabel.hxx>
#include <IGESSelect_SetVersion5.hxx>
#include <IGESSelect_SignColor.hxx>
#include <IGESSelect_SignLevelNumber.hxx>
#include <IGESSelect_SignStatus.hxx>
#include <IGESSelect_SplineToBSpline.hxx>
#include <IGESSelect_UpdateCreationDate.hxx>
#include <IGESSelect_UpdateFileName.hxx>
#include <IGESSelect_UpdateLastChange.hxx>
#include <IGESSelect_ViewSorter.hxx>
#include <IGESSelect_WorkLibrary.hxx>
// template related includes
// user-defined pre
#include "OCP_specific.inc"
// user-defined inclusion per module
// Module definiiton
void register_IGESSelect(py::module &main_module) {
py::module m = static_cast<py::module>(main_module.attr("IGESSelect"));
py::object klass;
//Python trampoline classes
class Py_IGESSelect_FileModifier : public IGESSelect_FileModifier{
public:
using IGESSelect_FileModifier::IGESSelect_FileModifier;
// public pure virtual
void Perform(IFSelect_ContextWrite & ctx,IGESData_IGESWriter & writer) const override { PYBIND11_OVERLOAD_PURE(void,IGESSelect_FileModifier,Perform,ctx,writer) };
TCollection_AsciiString Label() const override { PYBIND11_OVERLOAD_PURE(TCollection_AsciiString,IFSelect_GeneralModifier,Label,) };
// protected pure virtual
// private pure virtual
};
class Py_IGESSelect_ModelModifier : public IGESSelect_ModelModifier{
public:
using IGESSelect_ModelModifier::IGESSelect_ModelModifier;
// public pure virtual
void Performing(IFSelect_ContextModif & ctx,const opencascade::handle<IGESData_IGESModel> & target,Interface_CopyTool & TC) const override { PYBIND11_OVERLOAD_PURE(void,IGESSelect_ModelModifier,Performing,ctx,target,TC) };
TCollection_AsciiString Label() const override { PYBIND11_OVERLOAD_PURE(TCollection_AsciiString,IFSelect_GeneralModifier,Label,) };
// protected pure virtual
// private pure virtual
};
// classes
// Class IGESSelect from ./opencascade/IGESSelect.hxx
klass = m.attr("IGESSelect");
// default constructor
register_default_constructor<IGESSelect , shared_ptr<IGESSelect>>(m,"IGESSelect");
// nested enums
static_cast<py::class_<IGESSelect , shared_ptr<IGESSelect> >>(klass)
// constructors
// custom constructors
// methods
// methods using call by reference i.s.o. return
// static methods
.def_static("Run_s",
(void (*)() ) static_cast<void (*)() >(&IGESSelect::Run),
R"#(Simply gives a prompt for a conversational action on standard input/output. Returns the status of a)#"
)
.def_static("WhatIges_s",
(Standard_Integer (*)( const opencascade::handle<IGESData_IGESEntity> & , const Interface_Graph & , opencascade::handle<IGESData_IGESEntity> & , Standard_Integer & ) ) static_cast<Standard_Integer (*)( const opencascade::handle<IGESData_IGESEntity> & , const Interface_Graph & , opencascade::handle<IGESData_IGESEntity> & , Standard_Integer & ) >(&IGESSelect::WhatIges),
R"#(Gives a quick analysis of an IGES Entity in the context of a model (i.e. a File) described by a Graph. Returned values are : : the most meaningful super entity, if any (else Null) <index> : meaningful index relating to super entity, if any <returned> : a status which helps exploitation of , by giving a case (normally, types of <ent> and should suffice to known the case))#" , py::arg("ent"), py::arg("G"), py::arg("sup"), py::arg("index")
)
// 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 IGESSelect_Activator from ./opencascade/IGESSelect_Activator.hxx
klass = m.attr("IGESSelect_Activator");
// nested enums
static_cast<py::class_<IGESSelect_Activator ,opencascade::handle<IGESSelect_Activator> , IFSelect_Activator >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Do",
(IFSelect_ReturnStatus (IGESSelect_Activator::*)( const Standard_Integer , const opencascade::handle<IFSelect_SessionPilot> & ) ) static_cast<IFSelect_ReturnStatus (IGESSelect_Activator::*)( const Standard_Integer , const opencascade::handle<IFSelect_SessionPilot> & ) >(&IGESSelect_Activator::Do),
R"#(Executes a Command Line for IGESSelect)#" , py::arg("number"), py::arg("pilot")
)
.def("Help",
(Standard_CString (IGESSelect_Activator::*)( const Standard_Integer ) const) static_cast<Standard_CString (IGESSelect_Activator::*)( const Standard_Integer ) const>(&IGESSelect_Activator::Help),
R"#(Sends a short help message for IGESSelect commands)#" , py::arg("number")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_Activator::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_Activator::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_Activator::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_Activator::*)() const>(&IGESSelect_Activator::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_CounterOfLevelNumber from ./opencascade/IGESSelect_CounterOfLevelNumber.hxx
klass = m.attr("IGESSelect_CounterOfLevelNumber");
// nested enums
static_cast<py::class_<IGESSelect_CounterOfLevelNumber ,opencascade::handle<IGESSelect_CounterOfLevelNumber> , IFSelect_SignCounter >>(klass)
// constructors
.def(py::init< const Standard_Boolean,const Standard_Boolean >() , py::arg("withmap")=static_cast<const Standard_Boolean>(Standard_True), py::arg("withlist")=static_cast<const Standard_Boolean>(Standard_False) )
// custom constructors
// methods
.def("Clear",
(void (IGESSelect_CounterOfLevelNumber::*)() ) static_cast<void (IGESSelect_CounterOfLevelNumber::*)() >(&IGESSelect_CounterOfLevelNumber::Clear),
R"#(Resets already memorized information : also numeric data)#"
)
.def("AddSign",
(void (IGESSelect_CounterOfLevelNumber::*)( const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & ) ) static_cast<void (IGESSelect_CounterOfLevelNumber::*)( const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & ) >(&IGESSelect_CounterOfLevelNumber::AddSign),
R"#(Adds an entity by considering its lrvrl number(s) A level is added both in numeric and alphanumeric form, i.e. LevelList gives "LEVEL LIST", others (no level or positive level) displays level number on 7 digits (C : %7d) Remark : an entity attached to a Level List is added for " LEVEL LIST", and for each of its constituent levels)#" , py::arg("ent"), py::arg("model")
)
.def("AddLevel",
(void (IGESSelect_CounterOfLevelNumber::*)( const opencascade::handle<Standard_Transient> & , const Standard_Integer ) ) static_cast<void (IGESSelect_CounterOfLevelNumber::*)( const opencascade::handle<Standard_Transient> & , const Standard_Integer ) >(&IGESSelect_CounterOfLevelNumber::AddLevel),
R"#(The internal action to record a new level number, positive, null (no level) or negative (level list))#" , py::arg("ent"), py::arg("level")
)
.def("HighestLevel",
(Standard_Integer (IGESSelect_CounterOfLevelNumber::*)() const) static_cast<Standard_Integer (IGESSelect_CounterOfLevelNumber::*)() const>(&IGESSelect_CounterOfLevelNumber::HighestLevel),
R"#(Returns the highest value found for a level number)#"
)
.def("NbTimesLevel",
(Standard_Integer (IGESSelect_CounterOfLevelNumber::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IGESSelect_CounterOfLevelNumber::*)( const Standard_Integer ) const>(&IGESSelect_CounterOfLevelNumber::NbTimesLevel),
R"#(Returns the number of times a level is used, 0 if it has not been recorded at all <level> = 0 counts entities attached to no level <level> < 0 counts entities attached to a LevelList)#" , py::arg("level")
)
.def("Levels",
(opencascade::handle<TColStd_HSequenceOfInteger> (IGESSelect_CounterOfLevelNumber::*)() const) static_cast<opencascade::handle<TColStd_HSequenceOfInteger> (IGESSelect_CounterOfLevelNumber::*)() const>(&IGESSelect_CounterOfLevelNumber::Levels),
R"#(Returns the ordered list of used positive Level numbers)#"
)
.def("Sign",
(opencascade::handle<TCollection_HAsciiString> (IGESSelect_CounterOfLevelNumber::*)( const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & ) const) static_cast<opencascade::handle<TCollection_HAsciiString> (IGESSelect_CounterOfLevelNumber::*)( const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & ) const>(&IGESSelect_CounterOfLevelNumber::Sign),
R"#(Determines and returns the value of the signature for an entity as an HAsciiString. Redefined, gives the same result as AddSign, see this method ("LEVEL LIST" or "nnnnnnn"))#" , py::arg("ent"), py::arg("model")
)
.def("PrintCount",
(void (IGESSelect_CounterOfLevelNumber::*)( std::ostream & ) const) static_cast<void (IGESSelect_CounterOfLevelNumber::*)( std::ostream & ) const>(&IGESSelect_CounterOfLevelNumber::PrintCount),
R"#(Prints the counts of items (not the list) then the Highest Level Number recorded)#" , py::arg("S")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_CounterOfLevelNumber::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_CounterOfLevelNumber::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_CounterOfLevelNumber::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_CounterOfLevelNumber::*)() const>(&IGESSelect_CounterOfLevelNumber::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_DispPerDrawing from ./opencascade/IGESSelect_DispPerDrawing.hxx
klass = m.attr("IGESSelect_DispPerDrawing");
// nested enums
static_cast<py::class_<IGESSelect_DispPerDrawing ,opencascade::handle<IGESSelect_DispPerDrawing> , IFSelect_Dispatch >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Label",
(TCollection_AsciiString (IGESSelect_DispPerDrawing::*)() const) static_cast<TCollection_AsciiString (IGESSelect_DispPerDrawing::*)() const>(&IGESSelect_DispPerDrawing::Label),
R"#(Returns as Label, "One File per Drawing")#"
)
.def("Packets",
(void (IGESSelect_DispPerDrawing::*)( const Interface_Graph & , IFGraph_SubPartsIterator & ) const) static_cast<void (IGESSelect_DispPerDrawing::*)( const Interface_Graph & , IFGraph_SubPartsIterator & ) const>(&IGESSelect_DispPerDrawing::Packets),
R"#(Computes the list of produced Packets. Packets are computed by a ViewSorter (SortDrawings with also frames).)#" , py::arg("G"), py::arg("packs")
)
.def("CanHaveRemainder",
(Standard_Boolean (IGESSelect_DispPerDrawing::*)() const) static_cast<Standard_Boolean (IGESSelect_DispPerDrawing::*)() const>(&IGESSelect_DispPerDrawing::CanHaveRemainder),
R"#(Returns True, because of entities attached to no view.)#"
)
.def("Remainder",
(Interface_EntityIterator (IGESSelect_DispPerDrawing::*)( const Interface_Graph & ) const) static_cast<Interface_EntityIterator (IGESSelect_DispPerDrawing::*)( const Interface_Graph & ) const>(&IGESSelect_DispPerDrawing::Remainder),
R"#(Returns Remainder which is a set of Entities. It is supposed to be called once Packets has been called.)#" , py::arg("G")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_DispPerDrawing::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_DispPerDrawing::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_DispPerDrawing::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_DispPerDrawing::*)() const>(&IGESSelect_DispPerDrawing::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_DispPerSingleView from ./opencascade/IGESSelect_DispPerSingleView.hxx
klass = m.attr("IGESSelect_DispPerSingleView");
// nested enums
static_cast<py::class_<IGESSelect_DispPerSingleView ,opencascade::handle<IGESSelect_DispPerSingleView> , IFSelect_Dispatch >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Label",
(TCollection_AsciiString (IGESSelect_DispPerSingleView::*)() const) static_cast<TCollection_AsciiString (IGESSelect_DispPerSingleView::*)() const>(&IGESSelect_DispPerSingleView::Label),
R"#(Returns as Label, "One File per single View or Drawing Frame")#"
)
.def("Packets",
(void (IGESSelect_DispPerSingleView::*)( const Interface_Graph & , IFGraph_SubPartsIterator & ) const) static_cast<void (IGESSelect_DispPerSingleView::*)( const Interface_Graph & , IFGraph_SubPartsIterator & ) const>(&IGESSelect_DispPerSingleView::Packets),
R"#(Computes the list of produced Packets. Packets are computed by a ViewSorter (SortSingleViews with also frames).)#" , py::arg("G"), py::arg("packs")
)
.def("CanHaveRemainder",
(Standard_Boolean (IGESSelect_DispPerSingleView::*)() const) static_cast<Standard_Boolean (IGESSelect_DispPerSingleView::*)() const>(&IGESSelect_DispPerSingleView::CanHaveRemainder),
R"#(Returns True, because of entities attached to no view.)#"
)
.def("Remainder",
(Interface_EntityIterator (IGESSelect_DispPerSingleView::*)( const Interface_Graph & ) const) static_cast<Interface_EntityIterator (IGESSelect_DispPerSingleView::*)( const Interface_Graph & ) const>(&IGESSelect_DispPerSingleView::Remainder),
R"#(Returns Remainder which is a set of Entities. It is supposed to be called once Packets has been called.)#" , py::arg("G")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_DispPerSingleView::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_DispPerSingleView::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_DispPerSingleView::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_DispPerSingleView::*)() const>(&IGESSelect_DispPerSingleView::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_Dumper from ./opencascade/IGESSelect_Dumper.hxx
klass = m.attr("IGESSelect_Dumper");
// nested enums
static_cast<py::class_<IGESSelect_Dumper ,opencascade::handle<IGESSelect_Dumper> , IFSelect_SessionDumper >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("WriteOwn",
(Standard_Boolean (IGESSelect_Dumper::*)( IFSelect_SessionFile & , const opencascade::handle<Standard_Transient> & ) const) static_cast<Standard_Boolean (IGESSelect_Dumper::*)( IFSelect_SessionFile & , const opencascade::handle<Standard_Transient> & ) const>(&IGESSelect_Dumper::WriteOwn),
R"#(Write the Own Parameters of Types defined in package IGESSelect Returns True if <item> has been processed, False else)#" , py::arg("file"), py::arg("item")
)
.def("ReadOwn",
(Standard_Boolean (IGESSelect_Dumper::*)( IFSelect_SessionFile & , const TCollection_AsciiString & , opencascade::handle<Standard_Transient> & ) const) static_cast<Standard_Boolean (IGESSelect_Dumper::*)( IFSelect_SessionFile & , const TCollection_AsciiString & , opencascade::handle<Standard_Transient> & ) const>(&IGESSelect_Dumper::ReadOwn),
R"#(Recognizes and Read Own Parameters for Types of package IGESSelect. Returns True if done and <item> created, False else)#" , py::arg("file"), py::arg("type"), py::arg("item")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_Dumper::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_Dumper::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_Dumper::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_Dumper::*)() const>(&IGESSelect_Dumper::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_EditDirPart from ./opencascade/IGESSelect_EditDirPart.hxx
klass = m.attr("IGESSelect_EditDirPart");
// nested enums
static_cast<py::class_<IGESSelect_EditDirPart ,opencascade::handle<IGESSelect_EditDirPart> , IFSelect_Editor >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Label",
(TCollection_AsciiString (IGESSelect_EditDirPart::*)() const) static_cast<TCollection_AsciiString (IGESSelect_EditDirPart::*)() const>(&IGESSelect_EditDirPart::Label),
R"#(None)#"
)
.def("Recognize",
(Standard_Boolean (IGESSelect_EditDirPart::*)( const opencascade::handle<IFSelect_EditForm> & ) const) static_cast<Standard_Boolean (IGESSelect_EditDirPart::*)( const opencascade::handle<IFSelect_EditForm> & ) const>(&IGESSelect_EditDirPart::Recognize),
R"#(None)#" , py::arg("form")
)
.def("StringValue",
(opencascade::handle<TCollection_HAsciiString> (IGESSelect_EditDirPart::*)( const opencascade::handle<IFSelect_EditForm> & , const Standard_Integer ) const) static_cast<opencascade::handle<TCollection_HAsciiString> (IGESSelect_EditDirPart::*)( const opencascade::handle<IFSelect_EditForm> & , const Standard_Integer ) const>(&IGESSelect_EditDirPart::StringValue),
R"#(None)#" , py::arg("form"), py::arg("num")
)
.def("Load",
(Standard_Boolean (IGESSelect_EditDirPart::*)( const opencascade::handle<IFSelect_EditForm> & , const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & ) const) static_cast<Standard_Boolean (IGESSelect_EditDirPart::*)( const opencascade::handle<IFSelect_EditForm> & , const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & ) const>(&IGESSelect_EditDirPart::Load),
R"#(None)#" , py::arg("form"), py::arg("ent"), py::arg("model")
)
.def("Update",
(Standard_Boolean (IGESSelect_EditDirPart::*)( const opencascade::handle<IFSelect_EditForm> & , const Standard_Integer , const opencascade::handle<TCollection_HAsciiString> & , const Standard_Boolean ) const) static_cast<Standard_Boolean (IGESSelect_EditDirPart::*)( const opencascade::handle<IFSelect_EditForm> & , const Standard_Integer , const opencascade::handle<TCollection_HAsciiString> & , const Standard_Boolean ) const>(&IGESSelect_EditDirPart::Update),
R"#(None)#" , py::arg("form"), py::arg("num"), py::arg("newval"), py::arg("enforce")
)
.def("Apply",
(Standard_Boolean (IGESSelect_EditDirPart::*)( const opencascade::handle<IFSelect_EditForm> & , const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & ) const) static_cast<Standard_Boolean (IGESSelect_EditDirPart::*)( const opencascade::handle<IFSelect_EditForm> & , const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & ) const>(&IGESSelect_EditDirPart::Apply),
R"#(None)#" , py::arg("form"), py::arg("ent"), py::arg("model")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_EditDirPart::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_EditDirPart::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_EditDirPart::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_EditDirPart::*)() const>(&IGESSelect_EditDirPart::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_EditHeader from ./opencascade/IGESSelect_EditHeader.hxx
klass = m.attr("IGESSelect_EditHeader");
// nested enums
static_cast<py::class_<IGESSelect_EditHeader ,opencascade::handle<IGESSelect_EditHeader> , IFSelect_Editor >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Label",
(TCollection_AsciiString (IGESSelect_EditHeader::*)() const) static_cast<TCollection_AsciiString (IGESSelect_EditHeader::*)() const>(&IGESSelect_EditHeader::Label),
R"#(None)#"
)
.def("Recognize",
(Standard_Boolean (IGESSelect_EditHeader::*)( const opencascade::handle<IFSelect_EditForm> & ) const) static_cast<Standard_Boolean (IGESSelect_EditHeader::*)( const opencascade::handle<IFSelect_EditForm> & ) const>(&IGESSelect_EditHeader::Recognize),
R"#(None)#" , py::arg("form")
)
.def("StringValue",
(opencascade::handle<TCollection_HAsciiString> (IGESSelect_EditHeader::*)( const opencascade::handle<IFSelect_EditForm> & , const Standard_Integer ) const) static_cast<opencascade::handle<TCollection_HAsciiString> (IGESSelect_EditHeader::*)( const opencascade::handle<IFSelect_EditForm> & , const Standard_Integer ) const>(&IGESSelect_EditHeader::StringValue),
R"#(None)#" , py::arg("form"), py::arg("num")
)
.def("Load",
(Standard_Boolean (IGESSelect_EditHeader::*)( const opencascade::handle<IFSelect_EditForm> & , const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & ) const) static_cast<Standard_Boolean (IGESSelect_EditHeader::*)( const opencascade::handle<IFSelect_EditForm> & , const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & ) const>(&IGESSelect_EditHeader::Load),
R"#(None)#" , py::arg("form"), py::arg("ent"), py::arg("model")
)
.def("Update",
(Standard_Boolean (IGESSelect_EditHeader::*)( const opencascade::handle<IFSelect_EditForm> & , const Standard_Integer , const opencascade::handle<TCollection_HAsciiString> & , const Standard_Boolean ) const) static_cast<Standard_Boolean (IGESSelect_EditHeader::*)( const opencascade::handle<IFSelect_EditForm> & , const Standard_Integer , const opencascade::handle<TCollection_HAsciiString> & , const Standard_Boolean ) const>(&IGESSelect_EditHeader::Update),
R"#(None)#" , py::arg("form"), py::arg("num"), py::arg("newval"), py::arg("enforce")
)
.def("Apply",
(Standard_Boolean (IGESSelect_EditHeader::*)( const opencascade::handle<IFSelect_EditForm> & , const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & ) const) static_cast<Standard_Boolean (IGESSelect_EditHeader::*)( const opencascade::handle<IFSelect_EditForm> & , const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & ) const>(&IGESSelect_EditHeader::Apply),
R"#(None)#" , py::arg("form"), py::arg("ent"), py::arg("model")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_EditHeader::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_EditHeader::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_EditHeader::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_EditHeader::*)() const>(&IGESSelect_EditHeader::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_FileModifier from ./opencascade/IGESSelect_FileModifier.hxx
klass = m.attr("IGESSelect_FileModifier");
// nested enums
static_cast<py::class_<IGESSelect_FileModifier ,opencascade::handle<IGESSelect_FileModifier> ,Py_IGESSelect_FileModifier , IFSelect_GeneralModifier >>(klass)
// constructors
// custom constructors
// methods
.def("Perform",
(void (IGESSelect_FileModifier::*)( IFSelect_ContextWrite & , IGESData_IGESWriter & ) const) static_cast<void (IGESSelect_FileModifier::*)( IFSelect_ContextWrite & , IGESData_IGESWriter & ) const>(&IGESSelect_FileModifier::Perform),
R"#(Perform the action specific to each class of File Modifier <ctx> is the ContextWrite, which brings : the model, the protocol, the file name, plus the object AppliedModifiers (not used here) and the CheckList Remark that the model has to be casted for specific access)#" , py::arg("ctx"), py::arg("writer")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_FileModifier::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_FileModifier::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_FileModifier::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_FileModifier::*)() const>(&IGESSelect_FileModifier::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_IGESName from ./opencascade/IGESSelect_IGESName.hxx
klass = m.attr("IGESSelect_IGESName");
// nested enums
static_cast<py::class_<IGESSelect_IGESName ,opencascade::handle<IGESSelect_IGESName> , IFSelect_Signature >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Value",
(Standard_CString (IGESSelect_IGESName::*)( const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & ) const) static_cast<Standard_CString (IGESSelect_IGESName::*)( const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & ) const>(&IGESSelect_IGESName::Value),
R"#(Returns the ShortLabel as being the Name of an IGESEntity If <ent> has no name, it returns empty string "")#" , py::arg("ent"), py::arg("model")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_IGESName::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_IGESName::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_IGESName::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_IGESName::*)() const>(&IGESSelect_IGESName::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_IGESTypeForm from ./opencascade/IGESSelect_IGESTypeForm.hxx
klass = m.attr("IGESSelect_IGESTypeForm");
// nested enums
static_cast<py::class_<IGESSelect_IGESTypeForm ,opencascade::handle<IGESSelect_IGESTypeForm> , IFSelect_Signature >>(klass)
// constructors
.def(py::init< const Standard_Boolean >() , py::arg("withform")=static_cast<const Standard_Boolean>(Standard_True) )
// custom constructors
// methods
.def("SetForm",
(void (IGESSelect_IGESTypeForm::*)( const Standard_Boolean ) ) static_cast<void (IGESSelect_IGESTypeForm::*)( const Standard_Boolean ) >(&IGESSelect_IGESTypeForm::SetForm),
R"#(Changes the mode for giving the Form Number)#" , py::arg("withform")
)
.def("Value",
(Standard_CString (IGESSelect_IGESTypeForm::*)( const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & ) const) static_cast<Standard_CString (IGESSelect_IGESTypeForm::*)( const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & ) const>(&IGESSelect_IGESTypeForm::Value),
R"#(Returns the signature for IGES, "mmm nnn" or "mmm" according creation choice (Type & Form or Type only))#" , py::arg("ent"), py::arg("model")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_IGESTypeForm::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_IGESTypeForm::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_IGESTypeForm::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_IGESTypeForm::*)() const>(&IGESSelect_IGESTypeForm::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_ModelModifier from ./opencascade/IGESSelect_ModelModifier.hxx
klass = m.attr("IGESSelect_ModelModifier");
// nested enums
static_cast<py::class_<IGESSelect_ModelModifier ,opencascade::handle<IGESSelect_ModelModifier> ,Py_IGESSelect_ModelModifier , IFSelect_Modifier >>(klass)
// constructors
// custom constructors
// methods
.def("Perform",
(void (IGESSelect_ModelModifier::*)( IFSelect_ContextModif & , const opencascade::handle<Interface_InterfaceModel> & , const opencascade::handle<Interface_Protocol> & , Interface_CopyTool & ) const) static_cast<void (IGESSelect_ModelModifier::*)( IFSelect_ContextModif & , const opencascade::handle<Interface_InterfaceModel> & , const opencascade::handle<Interface_Protocol> & , Interface_CopyTool & ) const>(&IGESSelect_ModelModifier::Perform),
R"#(The inherited Perform does the required cast (and refuses to go further if cast has failed) then calls the instantiated Performing)#" , py::arg("ctx"), py::arg("target"), py::arg("protocol"), py::arg("TC")
)
.def("PerformProtocol",
(void (IGESSelect_ModelModifier::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , const opencascade::handle<IGESData_Protocol> & , Interface_CopyTool & ) const) static_cast<void (IGESSelect_ModelModifier::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , const opencascade::handle<IGESData_Protocol> & , Interface_CopyTool & ) const>(&IGESSelect_ModelModifier::PerformProtocol),
R"#(Specific Perform with Protocol. It is defined to let the Protocol unused and to call Performing without Protocol (most current case). It can be redefined if specific action requires Protocol.)#" , py::arg("ctx"), py::arg("target"), py::arg("proto"), py::arg("TC")
)
.def("Performing",
(void (IGESSelect_ModelModifier::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , Interface_CopyTool & ) const) static_cast<void (IGESSelect_ModelModifier::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , Interface_CopyTool & ) const>(&IGESSelect_ModelModifier::Performing),
R"#(Specific Perform, without Protocol. If Performing with Protocol is redefined, Performing without Protocol must though be defined to do nothing (not called, but demanded by the linker))#" , py::arg("ctx"), py::arg("target"), py::arg("TC")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_ModelModifier::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_ModelModifier::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_ModelModifier::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_ModelModifier::*)() const>(&IGESSelect_ModelModifier::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_SelectBasicGeom from ./opencascade/IGESSelect_SelectBasicGeom.hxx
klass = m.attr("IGESSelect_SelectBasicGeom");
// nested enums
static_cast<py::class_<IGESSelect_SelectBasicGeom ,opencascade::handle<IGESSelect_SelectBasicGeom> , IFSelect_SelectExplore >>(klass)
// constructors
.def(py::init< const Standard_Integer >() , py::arg("mode") )
// custom constructors
// methods
.def("Explore",
(Standard_Boolean (IGESSelect_SelectBasicGeom::*)( const Standard_Integer , const opencascade::handle<Standard_Transient> & , const Interface_Graph & , Interface_EntityIterator & ) const) static_cast<Standard_Boolean (IGESSelect_SelectBasicGeom::*)( const Standard_Integer , const opencascade::handle<Standard_Transient> & , const Interface_Graph & , Interface_EntityIterator & ) const>(&IGESSelect_SelectBasicGeom::Explore),
R"#(Explores an entity, to take its contained Curves 3d Works recursively)#" , py::arg("level"), py::arg("ent"), py::arg("G"), py::arg("explored")
)
.def("ExploreLabel",
(TCollection_AsciiString (IGESSelect_SelectBasicGeom::*)() const) static_cast<TCollection_AsciiString (IGESSelect_SelectBasicGeom::*)() const>(&IGESSelect_SelectBasicGeom::ExploreLabel),
R"#(Returns a text defining the criterium : "Curves 3d" or "Basic Geometry")#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("SubCurves_s",
(Standard_Boolean (*)( const opencascade::handle<IGESData_IGESEntity> & , Interface_EntityIterator & ) ) static_cast<Standard_Boolean (*)( const opencascade::handle<IGESData_IGESEntity> & , Interface_EntityIterator & ) >(&IGESSelect_SelectBasicGeom::SubCurves),
R"#(This method can be called from everywhere to get the curves as sub-elements of a given curve : CompositeCurve : explored lists its subs + returns True Any Curve : explored is not filled but returned is True Other : returned is False)#" , py::arg("ent"), py::arg("explored")
)
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_SelectBasicGeom::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_SelectBasicGeom::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_SelectBasicGeom::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_SelectBasicGeom::*)() const>(&IGESSelect_SelectBasicGeom::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_SelectBypassGroup from ./opencascade/IGESSelect_SelectBypassGroup.hxx
klass = m.attr("IGESSelect_SelectBypassGroup");
// nested enums
static_cast<py::class_<IGESSelect_SelectBypassGroup ,opencascade::handle<IGESSelect_SelectBypassGroup> , IFSelect_SelectExplore >>(klass)
// constructors
.def(py::init< const Standard_Integer >() , py::arg("level")=static_cast<const Standard_Integer>(0) )
// custom constructors
// methods
.def("Explore",
(Standard_Boolean (IGESSelect_SelectBypassGroup::*)( const Standard_Integer , const opencascade::handle<Standard_Transient> & , const Interface_Graph & , Interface_EntityIterator & ) const) static_cast<Standard_Boolean (IGESSelect_SelectBypassGroup::*)( const Standard_Integer , const opencascade::handle<Standard_Transient> & , const Interface_Graph & , Interface_EntityIterator & ) const>(&IGESSelect_SelectBypassGroup::Explore),
R"#(Explores an entity : for a Group, gives its elements Else, takes the entity itself)#" , py::arg("level"), py::arg("ent"), py::arg("G"), py::arg("explored")
)
.def("ExploreLabel",
(TCollection_AsciiString (IGESSelect_SelectBypassGroup::*)() const) static_cast<TCollection_AsciiString (IGESSelect_SelectBypassGroup::*)() const>(&IGESSelect_SelectBypassGroup::ExploreLabel),
R"#(Returns a text defining the criterium : "Content of Group")#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_SelectBypassGroup::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_SelectBypassGroup::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_SelectBypassGroup::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_SelectBypassGroup::*)() const>(&IGESSelect_SelectBypassGroup::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_SelectBypassSubfigure from ./opencascade/IGESSelect_SelectBypassSubfigure.hxx
klass = m.attr("IGESSelect_SelectBypassSubfigure");
// nested enums
static_cast<py::class_<IGESSelect_SelectBypassSubfigure ,opencascade::handle<IGESSelect_SelectBypassSubfigure> , IFSelect_SelectExplore >>(klass)
// constructors
.def(py::init< const Standard_Integer >() , py::arg("level")=static_cast<const Standard_Integer>(0) )
// custom constructors
// methods
.def("Explore",
(Standard_Boolean (IGESSelect_SelectBypassSubfigure::*)( const Standard_Integer , const opencascade::handle<Standard_Transient> & , const Interface_Graph & , Interface_EntityIterator & ) const) static_cast<Standard_Boolean (IGESSelect_SelectBypassSubfigure::*)( const Standard_Integer , const opencascade::handle<Standard_Transient> & , const Interface_Graph & , Interface_EntityIterator & ) const>(&IGESSelect_SelectBypassSubfigure::Explore),
R"#(Explores an entity : for a Subfigure, gives its elements Else, takes the entity itself)#" , py::arg("level"), py::arg("ent"), py::arg("G"), py::arg("explored")
)
.def("ExploreLabel",
(TCollection_AsciiString (IGESSelect_SelectBypassSubfigure::*)() const) static_cast<TCollection_AsciiString (IGESSelect_SelectBypassSubfigure::*)() const>(&IGESSelect_SelectBypassSubfigure::ExploreLabel),
R"#(Returns a text defining the criterium : "Content of Subfigure")#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_SelectBypassSubfigure::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_SelectBypassSubfigure::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_SelectBypassSubfigure::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_SelectBypassSubfigure::*)() const>(&IGESSelect_SelectBypassSubfigure::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_SelectDrawingFrom from ./opencascade/IGESSelect_SelectDrawingFrom.hxx
klass = m.attr("IGESSelect_SelectDrawingFrom");
// nested enums
static_cast<py::class_<IGESSelect_SelectDrawingFrom ,opencascade::handle<IGESSelect_SelectDrawingFrom> , IFSelect_SelectDeduct >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("RootResult",
(Interface_EntityIterator (IGESSelect_SelectDrawingFrom::*)( const Interface_Graph & ) const) static_cast<Interface_EntityIterator (IGESSelect_SelectDrawingFrom::*)( const Interface_Graph & ) const>(&IGESSelect_SelectDrawingFrom::RootResult),
R"#(Selects the Drawings attached (through Single Views in Directory Part) to input entities)#" , py::arg("G")
)
.def("Label",
(TCollection_AsciiString (IGESSelect_SelectDrawingFrom::*)() const) static_cast<TCollection_AsciiString (IGESSelect_SelectDrawingFrom::*)() const>(&IGESSelect_SelectDrawingFrom::Label),
R"#(Returns the label, with is "Drawings attached")#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_SelectDrawingFrom::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_SelectDrawingFrom::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_SelectDrawingFrom::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_SelectDrawingFrom::*)() const>(&IGESSelect_SelectDrawingFrom::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_SelectFaces from ./opencascade/IGESSelect_SelectFaces.hxx
klass = m.attr("IGESSelect_SelectFaces");
// nested enums
static_cast<py::class_<IGESSelect_SelectFaces ,opencascade::handle<IGESSelect_SelectFaces> , IFSelect_SelectExplore >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Explore",
(Standard_Boolean (IGESSelect_SelectFaces::*)( const Standard_Integer , const opencascade::handle<Standard_Transient> & , const Interface_Graph & , Interface_EntityIterator & ) const) static_cast<Standard_Boolean (IGESSelect_SelectFaces::*)( const Standard_Integer , const opencascade::handle<Standard_Transient> & , const Interface_Graph & , Interface_EntityIterator & ) const>(&IGESSelect_SelectFaces::Explore),
R"#(Explores an entity, to take its faces Works recursively)#" , py::arg("level"), py::arg("ent"), py::arg("G"), py::arg("explored")
)
.def("ExploreLabel",
(TCollection_AsciiString (IGESSelect_SelectFaces::*)() const) static_cast<TCollection_AsciiString (IGESSelect_SelectFaces::*)() const>(&IGESSelect_SelectFaces::ExploreLabel),
R"#(Returns a text defining the criterium : "Faces")#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_SelectFaces::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_SelectFaces::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_SelectFaces::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_SelectFaces::*)() const>(&IGESSelect_SelectFaces::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_SelectFromDrawing from ./opencascade/IGESSelect_SelectFromDrawing.hxx
klass = m.attr("IGESSelect_SelectFromDrawing");
// nested enums
static_cast<py::class_<IGESSelect_SelectFromDrawing ,opencascade::handle<IGESSelect_SelectFromDrawing> , IFSelect_SelectDeduct >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("RootResult",
(Interface_EntityIterator (IGESSelect_SelectFromDrawing::*)( const Interface_Graph & ) const) static_cast<Interface_EntityIterator (IGESSelect_SelectFromDrawing::*)( const Interface_Graph & ) const>(&IGESSelect_SelectFromDrawing::RootResult),
R"#(Selects the Entities which are attached to the Drawing(s) present in the Input)#" , py::arg("G")
)
.def("Label",
(TCollection_AsciiString (IGESSelect_SelectFromDrawing::*)() const) static_cast<TCollection_AsciiString (IGESSelect_SelectFromDrawing::*)() const>(&IGESSelect_SelectFromDrawing::Label),
R"#(Returns the label, with is "Entities attached to Drawing")#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_SelectFromDrawing::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_SelectFromDrawing::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_SelectFromDrawing::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_SelectFromDrawing::*)() const>(&IGESSelect_SelectFromDrawing::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_SelectFromSingleView from ./opencascade/IGESSelect_SelectFromSingleView.hxx
klass = m.attr("IGESSelect_SelectFromSingleView");
// nested enums
static_cast<py::class_<IGESSelect_SelectFromSingleView ,opencascade::handle<IGESSelect_SelectFromSingleView> , IFSelect_SelectDeduct >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("RootResult",
(Interface_EntityIterator (IGESSelect_SelectFromSingleView::*)( const Interface_Graph & ) const) static_cast<Interface_EntityIterator (IGESSelect_SelectFromSingleView::*)( const Interface_Graph & ) const>(&IGESSelect_SelectFromSingleView::RootResult),
R"#(Selects the Entities which are attached to the Single View(s) present in the Input)#" , py::arg("G")
)
.def("Label",
(TCollection_AsciiString (IGESSelect_SelectFromSingleView::*)() const) static_cast<TCollection_AsciiString (IGESSelect_SelectFromSingleView::*)() const>(&IGESSelect_SelectFromSingleView::Label),
R"#(Returns the label, with is "Entities attached to single View")#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_SelectFromSingleView::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_SelectFromSingleView::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_SelectFromSingleView::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_SelectFromSingleView::*)() const>(&IGESSelect_SelectFromSingleView::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_SelectLevelNumber from ./opencascade/IGESSelect_SelectLevelNumber.hxx
klass = m.attr("IGESSelect_SelectLevelNumber");
// nested enums
static_cast<py::class_<IGESSelect_SelectLevelNumber ,opencascade::handle<IGESSelect_SelectLevelNumber> , IFSelect_SelectExtract >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("SetLevelNumber",
(void (IGESSelect_SelectLevelNumber::*)( const opencascade::handle<IFSelect_IntParam> & ) ) static_cast<void (IGESSelect_SelectLevelNumber::*)( const opencascade::handle<IFSelect_IntParam> & ) >(&IGESSelect_SelectLevelNumber::SetLevelNumber),
R"#(Sets a Parameter as Level criterium)#" , py::arg("levnum")
)
.def("LevelNumber",
(opencascade::handle<IFSelect_IntParam> (IGESSelect_SelectLevelNumber::*)() const) static_cast<opencascade::handle<IFSelect_IntParam> (IGESSelect_SelectLevelNumber::*)() const>(&IGESSelect_SelectLevelNumber::LevelNumber),
R"#(Returns the Level criterium. NullHandle if not yet set (interpreted as Level = 0 : no level number attached))#"
)
.def("Sort",
(Standard_Boolean (IGESSelect_SelectLevelNumber::*)( const Standard_Integer , const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & ) const) static_cast<Standard_Boolean (IGESSelect_SelectLevelNumber::*)( const Standard_Integer , const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & ) const>(&IGESSelect_SelectLevelNumber::Sort),
R"#(Returns True if <ent> is an IGES Entity with Level Number admits the criterium (= value if single level, or one of the attached level numbers = value if level list))#" , py::arg("rank"), py::arg("ent"), py::arg("model")
)
.def("ExtractLabel",
(TCollection_AsciiString (IGESSelect_SelectLevelNumber::*)() const) static_cast<TCollection_AsciiString (IGESSelect_SelectLevelNumber::*)() const>(&IGESSelect_SelectLevelNumber::ExtractLabel),
R"#(Returns the Selection criterium : "IGES Entity, Level Number admits <nn>" (if nn > 0) or "IGES Entity attached to no Level" (if nn = 0))#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_SelectLevelNumber::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_SelectLevelNumber::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_SelectLevelNumber::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_SelectLevelNumber::*)() const>(&IGESSelect_SelectLevelNumber::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_SelectName from ./opencascade/IGESSelect_SelectName.hxx
klass = m.attr("IGESSelect_SelectName");
// nested enums
static_cast<py::class_<IGESSelect_SelectName ,opencascade::handle<IGESSelect_SelectName> , IFSelect_SelectExtract >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Sort",
(Standard_Boolean (IGESSelect_SelectName::*)( const Standard_Integer , const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & ) const) static_cast<Standard_Boolean (IGESSelect_SelectName::*)( const Standard_Integer , const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & ) const>(&IGESSelect_SelectName::Sort),
R"#(Returns True if Name of Entity complies with Name Filter)#" , py::arg("rank"), py::arg("ent"), py::arg("model")
)
.def("SetName",
(void (IGESSelect_SelectName::*)( const opencascade::handle<TCollection_HAsciiString> & ) ) static_cast<void (IGESSelect_SelectName::*)( const opencascade::handle<TCollection_HAsciiString> & ) >(&IGESSelect_SelectName::SetName),
R"#(Sets a Name as a criterium : IGES Entities which have this name are kept (without regular expression, there should be at most one). <name> can be regarded as a Text Parameter)#" , py::arg("name")
)
.def("Name",
(opencascade::handle<TCollection_HAsciiString> (IGESSelect_SelectName::*)() const) static_cast<opencascade::handle<TCollection_HAsciiString> (IGESSelect_SelectName::*)() const>(&IGESSelect_SelectName::Name),
R"#(Returns the Name used as Filter)#"
)
.def("ExtractLabel",
(TCollection_AsciiString (IGESSelect_SelectName::*)() const) static_cast<TCollection_AsciiString (IGESSelect_SelectName::*)() const>(&IGESSelect_SelectName::ExtractLabel),
R"#(Returns the Selection criterium : "IGES Entity, Name : <name>")#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_SelectName::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_SelectName::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_SelectName::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_SelectName::*)() const>(&IGESSelect_SelectName::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_SelectPCurves from ./opencascade/IGESSelect_SelectPCurves.hxx
klass = m.attr("IGESSelect_SelectPCurves");
// nested enums
static_cast<py::class_<IGESSelect_SelectPCurves ,opencascade::handle<IGESSelect_SelectPCurves> , IFSelect_SelectExplore >>(klass)
// constructors
.def(py::init< const Standard_Boolean >() , py::arg("basic") )
// custom constructors
// methods
.def("Explore",
(Standard_Boolean (IGESSelect_SelectPCurves::*)( const Standard_Integer , const opencascade::handle<Standard_Transient> & , const Interface_Graph & , Interface_EntityIterator & ) const) static_cast<Standard_Boolean (IGESSelect_SelectPCurves::*)( const Standard_Integer , const opencascade::handle<Standard_Transient> & , const Interface_Graph & , Interface_EntityIterator & ) const>(&IGESSelect_SelectPCurves::Explore),
R"#(Explores an entity, to take its contained PCurves An independent curve is IGNORED : only faces are explored)#" , py::arg("level"), py::arg("ent"), py::arg("G"), py::arg("explored")
)
.def("ExploreLabel",
(TCollection_AsciiString (IGESSelect_SelectPCurves::*)() const) static_cast<TCollection_AsciiString (IGESSelect_SelectPCurves::*)() const>(&IGESSelect_SelectPCurves::ExploreLabel),
R"#(Returns a text defining the criterium : "Basic PCurves" or "Global PCurves")#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_SelectPCurves::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_SelectPCurves::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_SelectPCurves::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_SelectPCurves::*)() const>(&IGESSelect_SelectPCurves::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_SelectSingleViewFrom from ./opencascade/IGESSelect_SelectSingleViewFrom.hxx
klass = m.attr("IGESSelect_SelectSingleViewFrom");
// nested enums
static_cast<py::class_<IGESSelect_SelectSingleViewFrom ,opencascade::handle<IGESSelect_SelectSingleViewFrom> , IFSelect_SelectDeduct >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("RootResult",
(Interface_EntityIterator (IGESSelect_SelectSingleViewFrom::*)( const Interface_Graph & ) const) static_cast<Interface_EntityIterator (IGESSelect_SelectSingleViewFrom::*)( const Interface_Graph & ) const>(&IGESSelect_SelectSingleViewFrom::RootResult),
R"#(Selects the Single Views attached (in Directory Part) to input entities)#" , py::arg("G")
)
.def("Label",
(TCollection_AsciiString (IGESSelect_SelectSingleViewFrom::*)() const) static_cast<TCollection_AsciiString (IGESSelect_SelectSingleViewFrom::*)() const>(&IGESSelect_SelectSingleViewFrom::Label),
R"#(Returns the label, with is "Single Views attached")#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_SelectSingleViewFrom::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_SelectSingleViewFrom::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_SelectSingleViewFrom::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_SelectSingleViewFrom::*)() const>(&IGESSelect_SelectSingleViewFrom::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_SelectSubordinate from ./opencascade/IGESSelect_SelectSubordinate.hxx
klass = m.attr("IGESSelect_SelectSubordinate");
// nested enums
static_cast<py::class_<IGESSelect_SelectSubordinate ,opencascade::handle<IGESSelect_SelectSubordinate> , IFSelect_SelectExtract >>(klass)
// constructors
.def(py::init< const Standard_Integer >() , py::arg("status") )
// custom constructors
// methods
.def("Status",
(Standard_Integer (IGESSelect_SelectSubordinate::*)() const) static_cast<Standard_Integer (IGESSelect_SelectSubordinate::*)() const>(&IGESSelect_SelectSubordinate::Status),
R"#(Returns the status used for sorting)#"
)
.def("Sort",
(Standard_Boolean (IGESSelect_SelectSubordinate::*)( const Standard_Integer , const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & ) const) static_cast<Standard_Boolean (IGESSelect_SelectSubordinate::*)( const Standard_Integer , const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & ) const>(&IGESSelect_SelectSubordinate::Sort),
R"#(Returns True if <ent> is an IGES Entity with Subordinate Status matching the criterium)#" , py::arg("rank"), py::arg("ent"), py::arg("model")
)
.def("ExtractLabel",
(TCollection_AsciiString (IGESSelect_SelectSubordinate::*)() const) static_cast<TCollection_AsciiString (IGESSelect_SelectSubordinate::*)() const>(&IGESSelect_SelectSubordinate::ExtractLabel),
R"#(Returns the Selection criterium : "IGES Entity, Independent" etc...)#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_SelectSubordinate::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_SelectSubordinate::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_SelectSubordinate::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_SelectSubordinate::*)() const>(&IGESSelect_SelectSubordinate::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_SelectVisibleStatus from ./opencascade/IGESSelect_SelectVisibleStatus.hxx
klass = m.attr("IGESSelect_SelectVisibleStatus");
// nested enums
static_cast<py::class_<IGESSelect_SelectVisibleStatus ,opencascade::handle<IGESSelect_SelectVisibleStatus> , IFSelect_SelectExtract >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Sort",
(Standard_Boolean (IGESSelect_SelectVisibleStatus::*)( const Standard_Integer , const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & ) const) static_cast<Standard_Boolean (IGESSelect_SelectVisibleStatus::*)( const Standard_Integer , const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & ) const>(&IGESSelect_SelectVisibleStatus::Sort),
R"#(Returns True if <ent> is an IGES Entity with Blank Status = 0)#" , py::arg("rank"), py::arg("ent"), py::arg("model")
)
.def("ExtractLabel",
(TCollection_AsciiString (IGESSelect_SelectVisibleStatus::*)() const) static_cast<TCollection_AsciiString (IGESSelect_SelectVisibleStatus::*)() const>(&IGESSelect_SelectVisibleStatus::ExtractLabel),
R"#(Returns the Selection criterium : "IGES Entity, Status Visible")#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_SelectVisibleStatus::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_SelectVisibleStatus::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_SelectVisibleStatus::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_SelectVisibleStatus::*)() const>(&IGESSelect_SelectVisibleStatus::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_SignColor from ./opencascade/IGESSelect_SignColor.hxx
klass = m.attr("IGESSelect_SignColor");
// nested enums
static_cast<py::class_<IGESSelect_SignColor ,opencascade::handle<IGESSelect_SignColor> , IFSelect_Signature >>(klass)
// constructors
.def(py::init< const Standard_Integer >() , py::arg("mode") )
// custom constructors
// methods
.def("Value",
(Standard_CString (IGESSelect_SignColor::*)( const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & ) const) static_cast<Standard_CString (IGESSelect_SignColor::*)( const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & ) const>(&IGESSelect_SignColor::Value),
R"#(Returns the value (see above))#" , py::arg("ent"), py::arg("model")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_SignColor::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_SignColor::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_SignColor::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_SignColor::*)() const>(&IGESSelect_SignColor::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_SignLevelNumber from ./opencascade/IGESSelect_SignLevelNumber.hxx
klass = m.attr("IGESSelect_SignLevelNumber");
// nested enums
static_cast<py::class_<IGESSelect_SignLevelNumber ,opencascade::handle<IGESSelect_SignLevelNumber> , IFSelect_Signature >>(klass)
// constructors
.def(py::init< const Standard_Boolean >() , py::arg("countmode") )
// custom constructors
// methods
.def("Value",
(Standard_CString (IGESSelect_SignLevelNumber::*)( const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & ) const) static_cast<Standard_CString (IGESSelect_SignLevelNumber::*)( const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & ) const>(&IGESSelect_SignLevelNumber::Value),
R"#(Returns the value (see above))#" , py::arg("ent"), py::arg("model")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_SignLevelNumber::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_SignLevelNumber::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_SignLevelNumber::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_SignLevelNumber::*)() const>(&IGESSelect_SignLevelNumber::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_SignStatus from ./opencascade/IGESSelect_SignStatus.hxx
klass = m.attr("IGESSelect_SignStatus");
// nested enums
static_cast<py::class_<IGESSelect_SignStatus ,opencascade::handle<IGESSelect_SignStatus> , IFSelect_Signature >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Value",
(Standard_CString (IGESSelect_SignStatus::*)( const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & ) const) static_cast<Standard_CString (IGESSelect_SignStatus::*)( const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & ) const>(&IGESSelect_SignStatus::Value),
R"#(Returns the value (see above))#" , py::arg("ent"), py::arg("model")
)
.def("Matches",
(Standard_Boolean (IGESSelect_SignStatus::*)( const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & , const TCollection_AsciiString & , const Standard_Boolean ) const) static_cast<Standard_Boolean (IGESSelect_SignStatus::*)( const opencascade::handle<Standard_Transient> & , const opencascade::handle<Interface_InterfaceModel> & , const TCollection_AsciiString & , const Standard_Boolean ) const>(&IGESSelect_SignStatus::Matches),
R"#(Performs the match rule (see above))#" , py::arg("ent"), py::arg("model"), py::arg("text"), py::arg("exact")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_SignStatus::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_SignStatus::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_SignStatus::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_SignStatus::*)() const>(&IGESSelect_SignStatus::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_SplineToBSpline from ./opencascade/IGESSelect_SplineToBSpline.hxx
klass = m.attr("IGESSelect_SplineToBSpline");
// nested enums
static_cast<py::class_<IGESSelect_SplineToBSpline ,opencascade::handle<IGESSelect_SplineToBSpline> , IFSelect_Transformer >>(klass)
// constructors
.def(py::init< const Standard_Boolean >() , py::arg("tryC2") )
// custom constructors
// methods
.def("OptionTryC2",
(Standard_Boolean (IGESSelect_SplineToBSpline::*)() const) static_cast<Standard_Boolean (IGESSelect_SplineToBSpline::*)() const>(&IGESSelect_SplineToBSpline::OptionTryC2),
R"#(Returns the option TryC2 given at creation time)#"
)
.def("Perform",
(Standard_Boolean (IGESSelect_SplineToBSpline::*)( const Interface_Graph & , const opencascade::handle<Interface_Protocol> & , Interface_CheckIterator & , opencascade::handle<Interface_InterfaceModel> & ) ) static_cast<Standard_Boolean (IGESSelect_SplineToBSpline::*)( const Interface_Graph & , const opencascade::handle<Interface_Protocol> & , Interface_CheckIterator & , opencascade::handle<Interface_InterfaceModel> & ) >(&IGESSelect_SplineToBSpline::Perform),
R"#(Performs the transformation, if there is at least one Spline Curve (112) or Surface (126). Does nothing if there is none.)#" , py::arg("G"), py::arg("protocol"), py::arg("checks"), py::arg("newmod")
)
.def("Updated",
(Standard_Boolean (IGESSelect_SplineToBSpline::*)( const opencascade::handle<Standard_Transient> & , opencascade::handle<Standard_Transient> & ) const) static_cast<Standard_Boolean (IGESSelect_SplineToBSpline::*)( const opencascade::handle<Standard_Transient> & , opencascade::handle<Standard_Transient> & ) const>(&IGESSelect_SplineToBSpline::Updated),
R"#(Returns the transformed entities. If original data contained no Spline Curve or Surface, the result is identity : <entto> = <entfrom> Else, the copied counterpart is returned : for a Spline Curve or Surface, it is a converted BSpline Curve or Surface. Else, it is the result of general service Copy (rebuilt as necessary by BSPlines replacing Splines).)#" , py::arg("entfrom"), py::arg("entto")
)
.def("Label",
(TCollection_AsciiString (IGESSelect_SplineToBSpline::*)() const) static_cast<TCollection_AsciiString (IGESSelect_SplineToBSpline::*)() const>(&IGESSelect_SplineToBSpline::Label),
R"#(Returns a text which defines the way a Transformer works : "Conversion Spline to BSpline" and as opted, " trying to upgrade continuity")#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_SplineToBSpline::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_SplineToBSpline::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_SplineToBSpline::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_SplineToBSpline::*)() const>(&IGESSelect_SplineToBSpline::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_ViewSorter from ./opencascade/IGESSelect_ViewSorter.hxx
klass = m.attr("IGESSelect_ViewSorter");
// nested enums
static_cast<py::class_<IGESSelect_ViewSorter ,opencascade::handle<IGESSelect_ViewSorter> , Standard_Transient >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("SetModel",
(void (IGESSelect_ViewSorter::*)( const opencascade::handle<IGESData_IGESModel> & ) ) static_cast<void (IGESSelect_ViewSorter::*)( const opencascade::handle<IGESData_IGESModel> & ) >(&IGESSelect_ViewSorter::SetModel),
R"#(Sets the Model (for PacketList))#" , py::arg("model")
)
.def("Clear",
(void (IGESSelect_ViewSorter::*)() ) static_cast<void (IGESSelect_ViewSorter::*)() >(&IGESSelect_ViewSorter::Clear),
R"#(Clears recorded data)#"
)
.def("Add",
(Standard_Boolean (IGESSelect_ViewSorter::*)( const opencascade::handle<Standard_Transient> & ) ) static_cast<Standard_Boolean (IGESSelect_ViewSorter::*)( const opencascade::handle<Standard_Transient> & ) >(&IGESSelect_ViewSorter::Add),
R"#(Adds an item according its type : AddEntity,AddList,AddModel)#" , py::arg("ent")
)
.def("AddEntity",
(Standard_Boolean (IGESSelect_ViewSorter::*)( const opencascade::handle<IGESData_IGESEntity> & ) ) static_cast<Standard_Boolean (IGESSelect_ViewSorter::*)( const opencascade::handle<IGESData_IGESEntity> & ) >(&IGESSelect_ViewSorter::AddEntity),
R"#(Adds an IGES entity. Records the view it is attached to. Records directly <ent> if it is a ViewKindEntity or a Drawing Returns True if added, False if already in the map)#" , py::arg("igesent")
)
.def("AddList",
(void (IGESSelect_ViewSorter::*)( const opencascade::handle<TColStd_HSequenceOfTransient> & ) ) static_cast<void (IGESSelect_ViewSorter::*)( const opencascade::handle<TColStd_HSequenceOfTransient> & ) >(&IGESSelect_ViewSorter::AddList),
R"#(Adds a list of entities by adding each of the items)#" , py::arg("list")
)
.def("AddModel",
(void (IGESSelect_ViewSorter::*)( const opencascade::handle<Interface_InterfaceModel> & ) ) static_cast<void (IGESSelect_ViewSorter::*)( const opencascade::handle<Interface_InterfaceModel> & ) >(&IGESSelect_ViewSorter::AddModel),
R"#(Adds all the entities contained in a Model)#" , py::arg("model")
)
.def("NbEntities",
(Standard_Integer (IGESSelect_ViewSorter::*)() const) static_cast<Standard_Integer (IGESSelect_ViewSorter::*)() const>(&IGESSelect_ViewSorter::NbEntities),
R"#(Returns the count of already recorded)#"
)
.def("SortSingleViews",
(void (IGESSelect_ViewSorter::*)( const Standard_Boolean ) ) static_cast<void (IGESSelect_ViewSorter::*)( const Standard_Boolean ) >(&IGESSelect_ViewSorter::SortSingleViews),
R"#(Prepares the result to keep only sets attached to Single Views If <alsoframes> is given True, it keeps also the Drawings as specific sets, in order to get their frames. Entities attached to no single view are put in Remaining List.)#" , py::arg("alsoframes")
)
.def("SortDrawings",
(void (IGESSelect_ViewSorter::*)( const Interface_Graph & ) ) static_cast<void (IGESSelect_ViewSorter::*)( const Interface_Graph & ) >(&IGESSelect_ViewSorter::SortDrawings),
R"#(Prepares the result to the sets attached to Drawings : All the single views referenced by a Drawing become bound to the set for this Drawing)#" , py::arg("G")
)
.def("NbSets",
(Standard_Integer (IGESSelect_ViewSorter::*)( const Standard_Boolean ) const) static_cast<Standard_Integer (IGESSelect_ViewSorter::*)( const Standard_Boolean ) const>(&IGESSelect_ViewSorter::NbSets),
R"#(Returns the count of sets recorded, one per distinct item. The Remaining List is not counted. If <final> is False, the sets are attached to distinct views determined by the method Add. If <final> is True, they are the sets determined by the last call to, either SortSingleViews, or SortDrawings.)#" , py::arg("final")
)
.def("SetItem",
(opencascade::handle<IGESData_IGESEntity> (IGESSelect_ViewSorter::*)( const Standard_Integer , const Standard_Boolean ) const) static_cast<opencascade::handle<IGESData_IGESEntity> (IGESSelect_ViewSorter::*)( const Standard_Integer , const Standard_Boolean ) const>(&IGESSelect_ViewSorter::SetItem),
R"#(Returns the Item which is attached to a set of entities For <final> and definition of sets, see method NbSets. This item can be a kind of View or a Drawing)#" , py::arg("num"), py::arg("final")
)
.def("Sets",
(opencascade::handle<IFSelect_PacketList> (IGESSelect_ViewSorter::*)( const Standard_Boolean ) const) static_cast<opencascade::handle<IFSelect_PacketList> (IGESSelect_ViewSorter::*)( const Standard_Boolean ) const>(&IGESSelect_ViewSorter::Sets),
R"#(Returns the complete content of the determined Sets, which include Duplicated and Remaining (duplication 0) lists For <final> and definition of sets, see method NbSets.)#" , py::arg("final")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_ViewSorter::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_ViewSorter::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_ViewSorter::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_ViewSorter::*)() const>(&IGESSelect_ViewSorter::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_WorkLibrary from ./opencascade/IGESSelect_WorkLibrary.hxx
klass = m.attr("IGESSelect_WorkLibrary");
// nested enums
static_cast<py::class_<IGESSelect_WorkLibrary ,opencascade::handle<IGESSelect_WorkLibrary> , IFSelect_WorkLibrary >>(klass)
// constructors
.def(py::init< const Standard_Boolean >() , py::arg("modefnes")=static_cast<const Standard_Boolean>(Standard_False) )
// custom constructors
// methods
.def("ReadFile",
(Standard_Integer (IGESSelect_WorkLibrary::*)( const Standard_CString , opencascade::handle<Interface_InterfaceModel> & , const opencascade::handle<Interface_Protocol> & ) const) static_cast<Standard_Integer (IGESSelect_WorkLibrary::*)( const Standard_CString , opencascade::handle<Interface_InterfaceModel> & , const opencascade::handle<Interface_Protocol> & ) const>(&IGESSelect_WorkLibrary::ReadFile),
R"#(Reads a IGES File and returns a IGES Model (into <mod>), or lets <mod> "Null" in case of Error Returns 0 if OK, 1 if Read Error, -1 if File not opened)#" , py::arg("name"), py::arg("model"), py::arg("protocol")
)
.def("WriteFile",
(Standard_Boolean (IGESSelect_WorkLibrary::*)( IFSelect_ContextWrite & ) const) static_cast<Standard_Boolean (IGESSelect_WorkLibrary::*)( IFSelect_ContextWrite & ) const>(&IGESSelect_WorkLibrary::WriteFile),
R"#(Writes a File from a IGES Model (brought by <ctx>) Returns False (and writes no file) if <ctx> is not for IGES)#" , py::arg("ctx")
)
.def("DumpEntity",
(void (IGESSelect_WorkLibrary::*)( const opencascade::handle<Interface_InterfaceModel> & , const opencascade::handle<Interface_Protocol> & , const opencascade::handle<Standard_Transient> & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESSelect_WorkLibrary::*)( const opencascade::handle<Interface_InterfaceModel> & , const opencascade::handle<Interface_Protocol> & , const opencascade::handle<Standard_Transient> & , std::ostream & , const Standard_Integer ) const>(&IGESSelect_WorkLibrary::DumpEntity),
R"#(Dumps an IGES Entity with an IGES Dumper. <level> is the one used by IGESDumper.)#" , py::arg("model"), py::arg("protocol"), py::arg("entity"), py::arg("S"), py::arg("level")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("DefineProtocol_s",
(opencascade::handle<IGESData_Protocol> (*)() ) static_cast<opencascade::handle<IGESData_Protocol> (*)() >(&IGESSelect_WorkLibrary::DefineProtocol),
R"#(Defines a protocol to be adequate for IGES (encompasses ALL the IGES norm including IGESSolid, IGESAppli))#"
)
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_WorkLibrary::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_WorkLibrary::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_WorkLibrary::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_WorkLibrary::*)() const>(&IGESSelect_WorkLibrary::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_AddFileComment from ./opencascade/IGESSelect_AddFileComment.hxx
klass = m.attr("IGESSelect_AddFileComment");
// nested enums
static_cast<py::class_<IGESSelect_AddFileComment ,opencascade::handle<IGESSelect_AddFileComment> , IGESSelect_FileModifier >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Clear",
(void (IGESSelect_AddFileComment::*)() ) static_cast<void (IGESSelect_AddFileComment::*)() >(&IGESSelect_AddFileComment::Clear),
R"#(Clears the list of file comment lines already stored)#"
)
.def("AddLine",
(void (IGESSelect_AddFileComment::*)( const Standard_CString ) ) static_cast<void (IGESSelect_AddFileComment::*)( const Standard_CString ) >(&IGESSelect_AddFileComment::AddLine),
R"#(Adds a line for file comment Remark : Lines are limited to 72 useful char.s . A line of more than 72 char.s will be splited into several ones of 72 max each.)#" , py::arg("line")
)
.def("AddLines",
(void (IGESSelect_AddFileComment::*)( const opencascade::handle<TColStd_HSequenceOfHAsciiString> & ) ) static_cast<void (IGESSelect_AddFileComment::*)( const opencascade::handle<TColStd_HSequenceOfHAsciiString> & ) >(&IGESSelect_AddFileComment::AddLines),
R"#(Adds a list of lines for file comment Each of them must comply with demand of AddLine)#" , py::arg("lines")
)
.def("NbLines",
(Standard_Integer (IGESSelect_AddFileComment::*)() const) static_cast<Standard_Integer (IGESSelect_AddFileComment::*)() const>(&IGESSelect_AddFileComment::NbLines),
R"#(Returns the count of stored lines)#"
)
.def("Line",
(Standard_CString (IGESSelect_AddFileComment::*)( const Standard_Integer ) const) static_cast<Standard_CString (IGESSelect_AddFileComment::*)( const Standard_Integer ) const>(&IGESSelect_AddFileComment::Line),
R"#(Returns a stored line given its rank)#" , py::arg("num")
)
.def("Lines",
(opencascade::handle<TColStd_HSequenceOfHAsciiString> (IGESSelect_AddFileComment::*)() const) static_cast<opencascade::handle<TColStd_HSequenceOfHAsciiString> (IGESSelect_AddFileComment::*)() const>(&IGESSelect_AddFileComment::Lines),
R"#(Returns the complete list of lines in once)#"
)
.def("Perform",
(void (IGESSelect_AddFileComment::*)( IFSelect_ContextWrite & , IGESData_IGESWriter & ) const) static_cast<void (IGESSelect_AddFileComment::*)( IFSelect_ContextWrite & , IGESData_IGESWriter & ) const>(&IGESSelect_AddFileComment::Perform),
R"#(Sends the comment lines to the file (Start Section))#" , py::arg("ctx"), py::arg("writer")
)
.def("Label",
(TCollection_AsciiString (IGESSelect_AddFileComment::*)() const) static_cast<TCollection_AsciiString (IGESSelect_AddFileComment::*)() const>(&IGESSelect_AddFileComment::Label),
R"#(Returns specific Label, which is "Add <nn> Comment Lines (Start Section)")#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_AddFileComment::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_AddFileComment::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_AddFileComment::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_AddFileComment::*)() const>(&IGESSelect_AddFileComment::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_AddGroup from ./opencascade/IGESSelect_AddGroup.hxx
klass = m.attr("IGESSelect_AddGroup");
// nested enums
static_cast<py::class_<IGESSelect_AddGroup ,opencascade::handle<IGESSelect_AddGroup> , IGESSelect_ModelModifier >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Performing",
(void (IGESSelect_AddGroup::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , Interface_CopyTool & ) const) static_cast<void (IGESSelect_AddGroup::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , Interface_CopyTool & ) const>(&IGESSelect_AddGroup::Performing),
R"#(Specific action : Adds a new group)#" , py::arg("ctx"), py::arg("target"), py::arg("TC")
)
.def("Label",
(TCollection_AsciiString (IGESSelect_AddGroup::*)() const) static_cast<TCollection_AsciiString (IGESSelect_AddGroup::*)() const>(&IGESSelect_AddGroup::Label),
R"#(Returns a text which is "Add Group")#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_AddGroup::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_AddGroup::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_AddGroup::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_AddGroup::*)() const>(&IGESSelect_AddGroup::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_AutoCorrect from ./opencascade/IGESSelect_AutoCorrect.hxx
klass = m.attr("IGESSelect_AutoCorrect");
// nested enums
static_cast<py::class_<IGESSelect_AutoCorrect ,opencascade::handle<IGESSelect_AutoCorrect> , IGESSelect_ModelModifier >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Performing",
(void (IGESSelect_AutoCorrect::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , Interface_CopyTool & ) const) static_cast<void (IGESSelect_AutoCorrect::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , Interface_CopyTool & ) const>(&IGESSelect_AutoCorrect::Performing),
R"#(Specific action : corrects entities when it is absolutely obvious, i.e. non equivoque (by DirChecker and specific service OwnCorrect) : works with a protocol.)#" , py::arg("ctx"), py::arg("target"), py::arg("TC")
)
.def("Label",
(TCollection_AsciiString (IGESSelect_AutoCorrect::*)() const) static_cast<TCollection_AsciiString (IGESSelect_AutoCorrect::*)() const>(&IGESSelect_AutoCorrect::Label),
R"#(Returns a text which is "Auto-correction of IGES Entities")#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_AutoCorrect::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_AutoCorrect::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_AutoCorrect::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_AutoCorrect::*)() const>(&IGESSelect_AutoCorrect::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_ChangeLevelList from ./opencascade/IGESSelect_ChangeLevelList.hxx
klass = m.attr("IGESSelect_ChangeLevelList");
// nested enums
static_cast<py::class_<IGESSelect_ChangeLevelList ,opencascade::handle<IGESSelect_ChangeLevelList> , IGESSelect_ModelModifier >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("HasOldNumber",
(Standard_Boolean (IGESSelect_ChangeLevelList::*)() const) static_cast<Standard_Boolean (IGESSelect_ChangeLevelList::*)() const>(&IGESSelect_ChangeLevelList::HasOldNumber),
R"#(Returns True if OldNumber is defined : then, only entities which have a LevelList which contains the value are processed. Else, all entities attached to a LevelList are.)#"
)
.def("OldNumber",
(opencascade::handle<IFSelect_IntParam> (IGESSelect_ChangeLevelList::*)() const) static_cast<opencascade::handle<IFSelect_IntParam> (IGESSelect_ChangeLevelList::*)() const>(&IGESSelect_ChangeLevelList::OldNumber),
R"#(Returns the parameter for OldNumber. If not defined (Null Handle), it will be interpreted as "all level lists")#"
)
.def("SetOldNumber",
(void (IGESSelect_ChangeLevelList::*)( const opencascade::handle<IFSelect_IntParam> & ) ) static_cast<void (IGESSelect_ChangeLevelList::*)( const opencascade::handle<IFSelect_IntParam> & ) >(&IGESSelect_ChangeLevelList::SetOldNumber),
R"#(Sets a parameter for OldNumber)#" , py::arg("param")
)
.def("HasNewNumber",
(Standard_Boolean (IGESSelect_ChangeLevelList::*)() const) static_cast<Standard_Boolean (IGESSelect_ChangeLevelList::*)() const>(&IGESSelect_ChangeLevelList::HasNewNumber),
R"#(Returns True if NewNumber is defined : then, it gives the new value for Level Number. Else, the first value of the LevelList is used as new Level Number.)#"
)
.def("NewNumber",
(opencascade::handle<IFSelect_IntParam> (IGESSelect_ChangeLevelList::*)() const) static_cast<opencascade::handle<IFSelect_IntParam> (IGESSelect_ChangeLevelList::*)() const>(&IGESSelect_ChangeLevelList::NewNumber),
R"#(Returns the parameter for NewNumber. If not defined (Null Handle), it will be interpreted as "new value 0")#"
)
.def("SetNewNumber",
(void (IGESSelect_ChangeLevelList::*)( const opencascade::handle<IFSelect_IntParam> & ) ) static_cast<void (IGESSelect_ChangeLevelList::*)( const opencascade::handle<IFSelect_IntParam> & ) >(&IGESSelect_ChangeLevelList::SetNewNumber),
R"#(Sets a parameter for NewNumber)#" , py::arg("param")
)
.def("Performing",
(void (IGESSelect_ChangeLevelList::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , Interface_CopyTool & ) const) static_cast<void (IGESSelect_ChangeLevelList::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , Interface_CopyTool & ) const>(&IGESSelect_ChangeLevelList::Performing),
R"#(Specific action : considers selected target entities : If OldNumber is not defined, all entities attached to a Level List If OldNumber is defined (value not negative), entities with a Level List which contains this value Attaches all these entities to value given by NewNumber, or the first value of the Level List)#" , py::arg("ctx"), py::arg("target"), py::arg("TC")
)
.def("Label",
(TCollection_AsciiString (IGESSelect_ChangeLevelList::*)() const) static_cast<TCollection_AsciiString (IGESSelect_ChangeLevelList::*)() const>(&IGESSelect_ChangeLevelList::Label),
R"#(Returns a text which begins by "Changes Level Lists containing <old>", or "Changes all Level Lists in D.E.", and ends by " to Number <new>" or " to Number = first value in List")#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_ChangeLevelList::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_ChangeLevelList::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_ChangeLevelList::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_ChangeLevelList::*)() const>(&IGESSelect_ChangeLevelList::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_ChangeLevelNumber from ./opencascade/IGESSelect_ChangeLevelNumber.hxx
klass = m.attr("IGESSelect_ChangeLevelNumber");
// nested enums
static_cast<py::class_<IGESSelect_ChangeLevelNumber ,opencascade::handle<IGESSelect_ChangeLevelNumber> , IGESSelect_ModelModifier >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("HasOldNumber",
(Standard_Boolean (IGESSelect_ChangeLevelNumber::*)() const) static_cast<Standard_Boolean (IGESSelect_ChangeLevelNumber::*)() const>(&IGESSelect_ChangeLevelNumber::HasOldNumber),
R"#(Returns True if OldNumber is defined : then, only entities attached to the value of OldNumber will be considered. Else, all entities but those attached to a Level List will be.)#"
)
.def("OldNumber",
(opencascade::handle<IFSelect_IntParam> (IGESSelect_ChangeLevelNumber::*)() const) static_cast<opencascade::handle<IFSelect_IntParam> (IGESSelect_ChangeLevelNumber::*)() const>(&IGESSelect_ChangeLevelNumber::OldNumber),
R"#(Returns the parameter for OldNumber. If not defined (Null Handle), it will be interpreted as "all level numbers")#"
)
.def("SetOldNumber",
(void (IGESSelect_ChangeLevelNumber::*)( const opencascade::handle<IFSelect_IntParam> & ) ) static_cast<void (IGESSelect_ChangeLevelNumber::*)( const opencascade::handle<IFSelect_IntParam> & ) >(&IGESSelect_ChangeLevelNumber::SetOldNumber),
R"#(Sets a parameter for OldNumber)#" , py::arg("param")
)
.def("NewNumber",
(opencascade::handle<IFSelect_IntParam> (IGESSelect_ChangeLevelNumber::*)() const) static_cast<opencascade::handle<IFSelect_IntParam> (IGESSelect_ChangeLevelNumber::*)() const>(&IGESSelect_ChangeLevelNumber::NewNumber),
R"#(Returns the parameter for NewNumber. If not defined (Null Handle), it will be interpreted as "new value 0")#"
)
.def("SetNewNumber",
(void (IGESSelect_ChangeLevelNumber::*)( const opencascade::handle<IFSelect_IntParam> & ) ) static_cast<void (IGESSelect_ChangeLevelNumber::*)( const opencascade::handle<IFSelect_IntParam> & ) >(&IGESSelect_ChangeLevelNumber::SetNewNumber),
R"#(Sets a parameter for NewNumber)#" , py::arg("param")
)
.def("Performing",
(void (IGESSelect_ChangeLevelNumber::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , Interface_CopyTool & ) const) static_cast<void (IGESSelect_ChangeLevelNumber::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , Interface_CopyTool & ) const>(&IGESSelect_ChangeLevelNumber::Performing),
R"#(Specific action : considers selected target entities : If OldNumber is not defined, all entities but those attached to a Level List If OldNumber is defined (value not negative), entities with a defined Level Number (can be zero) Attaches all these entities to value given by NewNumber, or zero if not defined)#" , py::arg("ctx"), py::arg("target"), py::arg("TC")
)
.def("Label",
(TCollection_AsciiString (IGESSelect_ChangeLevelNumber::*)() const) static_cast<TCollection_AsciiString (IGESSelect_ChangeLevelNumber::*)() const>(&IGESSelect_ChangeLevelNumber::Label),
R"#(Returns a text which is "Changes Level Number <old> to <new>" , or "Changes all Levels Numbers positive and zero to <new>")#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_ChangeLevelNumber::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_ChangeLevelNumber::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_ChangeLevelNumber::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_ChangeLevelNumber::*)() const>(&IGESSelect_ChangeLevelNumber::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_ComputeStatus from ./opencascade/IGESSelect_ComputeStatus.hxx
klass = m.attr("IGESSelect_ComputeStatus");
// nested enums
static_cast<py::class_<IGESSelect_ComputeStatus ,opencascade::handle<IGESSelect_ComputeStatus> , IGESSelect_ModelModifier >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Performing",
(void (IGESSelect_ComputeStatus::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , Interface_CopyTool & ) const) static_cast<void (IGESSelect_ComputeStatus::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , Interface_CopyTool & ) const>(&IGESSelect_ComputeStatus::Performing),
R"#(Specific action : it first evaluates the required values for Subordinate Status and Use Flag (in Directory Part of each IGES Entity). Then it corrects them, for the whole target. Works with a Protocol. Implementation uses BasicEditor)#" , py::arg("ctx"), py::arg("target"), py::arg("TC")
)
.def("Label",
(TCollection_AsciiString (IGESSelect_ComputeStatus::*)() const) static_cast<TCollection_AsciiString (IGESSelect_ComputeStatus::*)() const>(&IGESSelect_ComputeStatus::Label),
R"#(Returns a text which is "Compute Subordinate Status and Use Flag")#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_ComputeStatus::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_ComputeStatus::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_ComputeStatus::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_ComputeStatus::*)() const>(&IGESSelect_ComputeStatus::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_FloatFormat from ./opencascade/IGESSelect_FloatFormat.hxx
klass = m.attr("IGESSelect_FloatFormat");
// nested enums
static_cast<py::class_<IGESSelect_FloatFormat ,opencascade::handle<IGESSelect_FloatFormat> , IGESSelect_FileModifier >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("SetDefault",
(void (IGESSelect_FloatFormat::*)( const Standard_Integer ) ) static_cast<void (IGESSelect_FloatFormat::*)( const Standard_Integer ) >(&IGESSelect_FloatFormat::SetDefault),
R"#(Sets FloatFormat to default value (see Create) but if <digits> is given positive, it commands Formats (main and range) to ensure <digits> significant digits to be displayed)#" , py::arg("digits")=static_cast<const Standard_Integer>(0)
)
.def("SetZeroSuppress",
(void (IGESSelect_FloatFormat::*)( const Standard_Boolean ) ) static_cast<void (IGESSelect_FloatFormat::*)( const Standard_Boolean ) >(&IGESSelect_FloatFormat::SetZeroSuppress),
R"#(Sets ZeroSuppress mode to a new value)#" , py::arg("mode")
)
.def("SetFormat",
(void (IGESSelect_FloatFormat::*)( const Standard_CString ) ) static_cast<void (IGESSelect_FloatFormat::*)( const Standard_CString ) >(&IGESSelect_FloatFormat::SetFormat),
R"#(Sets Main Format to a new value Remark : SetFormat, SetZeroSuppress and SetFormatForRange are independent)#" , py::arg("format")=static_cast<const Standard_CString>("%E")
)
.def("SetFormatForRange",
(void (IGESSelect_FloatFormat::*)( const Standard_CString , const Standard_Real , const Standard_Real ) ) static_cast<void (IGESSelect_FloatFormat::*)( const Standard_CString , const Standard_Real , const Standard_Real ) >(&IGESSelect_FloatFormat::SetFormatForRange),
R"#(Sets Format for Range to a new value with its range of application. To cancel it, give format as "" (empty string) Remark that if the condition (0. < Rmin < Rmax) is not verified, this secondary format will be ignored. Moreover, this secondary format is intended to be used in a range around 1.)#" , py::arg("format")=static_cast<const Standard_CString>("%f"), py::arg("Rmin")=static_cast<const Standard_Real>(0.1), py::arg("Rmax")=static_cast<const Standard_Real>(1000.0)
)
.def("Perform",
(void (IGESSelect_FloatFormat::*)( IFSelect_ContextWrite & , IGESData_IGESWriter & ) const) static_cast<void (IGESSelect_FloatFormat::*)( IFSelect_ContextWrite & , IGESData_IGESWriter & ) const>(&IGESSelect_FloatFormat::Perform),
R"#(Sets the Floatting Formats of IGESWriter to the recorded parameters)#" , py::arg("ctx"), py::arg("writer")
)
.def("Label",
(TCollection_AsciiString (IGESSelect_FloatFormat::*)() const) static_cast<TCollection_AsciiString (IGESSelect_FloatFormat::*)() const>(&IGESSelect_FloatFormat::Label),
R"#(Returns specific Label : for instance, "Float Format [ZeroSuppress] %E [, in range R1-R2 %f]")#"
)
// methods using call by reference i.s.o. return
.def("Format",
[]( IGESSelect_FloatFormat &self , TCollection_AsciiString & mainform,TCollection_AsciiString & forminrange ){
Standard_Boolean zerosup;
Standard_Boolean hasrange;
Standard_Real rangemin;
Standard_Real rangemax;
self.Format(zerosup,mainform,hasrange,forminrange,rangemin,rangemax);
return std::make_tuple(zerosup,hasrange,rangemin,rangemax); },
R"#(Returns all recorded parameters : zerosup : ZeroSuppress status mainform : Main Format (which applies out of the range, or for every real if no range is set) hasrange : True if a FormatInRange is set, False else (following parameters do not apply if it is False) forminrange : Secondary Format (it applies inside the range) rangemin, rangemax : the range in which the secondary format applies)#" , py::arg("mainform"), py::arg("forminrange")
)
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_FloatFormat::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_FloatFormat::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_FloatFormat::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_FloatFormat::*)() const>(&IGESSelect_FloatFormat::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_RebuildDrawings from ./opencascade/IGESSelect_RebuildDrawings.hxx
klass = m.attr("IGESSelect_RebuildDrawings");
// nested enums
static_cast<py::class_<IGESSelect_RebuildDrawings ,opencascade::handle<IGESSelect_RebuildDrawings> , IGESSelect_ModelModifier >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Performing",
(void (IGESSelect_RebuildDrawings::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , Interface_CopyTool & ) const) static_cast<void (IGESSelect_RebuildDrawings::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , Interface_CopyTool & ) const>(&IGESSelect_RebuildDrawings::Performing),
R"#(Specific action : Rebuilds the original Drawings)#" , py::arg("ctx"), py::arg("target"), py::arg("TC")
)
.def("Label",
(TCollection_AsciiString (IGESSelect_RebuildDrawings::*)() const) static_cast<TCollection_AsciiString (IGESSelect_RebuildDrawings::*)() const>(&IGESSelect_RebuildDrawings::Label),
R"#(Returns a text which is "Rebuild Drawings")#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_RebuildDrawings::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_RebuildDrawings::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_RebuildDrawings::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_RebuildDrawings::*)() const>(&IGESSelect_RebuildDrawings::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_RebuildGroups from ./opencascade/IGESSelect_RebuildGroups.hxx
klass = m.attr("IGESSelect_RebuildGroups");
// nested enums
static_cast<py::class_<IGESSelect_RebuildGroups ,opencascade::handle<IGESSelect_RebuildGroups> , IGESSelect_ModelModifier >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Performing",
(void (IGESSelect_RebuildGroups::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , Interface_CopyTool & ) const) static_cast<void (IGESSelect_RebuildGroups::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , Interface_CopyTool & ) const>(&IGESSelect_RebuildGroups::Performing),
R"#(Specific action : Rebuilds the original groups)#" , py::arg("ctx"), py::arg("target"), py::arg("TC")
)
.def("Label",
(TCollection_AsciiString (IGESSelect_RebuildGroups::*)() const) static_cast<TCollection_AsciiString (IGESSelect_RebuildGroups::*)() const>(&IGESSelect_RebuildGroups::Label),
R"#(Returns a text which is "Rebuild Groups")#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_RebuildGroups::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_RebuildGroups::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_RebuildGroups::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_RebuildGroups::*)() const>(&IGESSelect_RebuildGroups::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_RemoveCurves from ./opencascade/IGESSelect_RemoveCurves.hxx
klass = m.attr("IGESSelect_RemoveCurves");
// nested enums
static_cast<py::class_<IGESSelect_RemoveCurves ,opencascade::handle<IGESSelect_RemoveCurves> , IGESSelect_ModelModifier >>(klass)
// constructors
.def(py::init< const Standard_Boolean >() , py::arg("UV") )
// custom constructors
// methods
.def("Performing",
(void (IGESSelect_RemoveCurves::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , Interface_CopyTool & ) const) static_cast<void (IGESSelect_RemoveCurves::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , Interface_CopyTool & ) const>(&IGESSelect_RemoveCurves::Performing),
R"#(Specific action : Removes the Curves)#" , py::arg("ctx"), py::arg("target"), py::arg("TC")
)
.def("Label",
(TCollection_AsciiString (IGESSelect_RemoveCurves::*)() const) static_cast<TCollection_AsciiString (IGESSelect_RemoveCurves::*)() const>(&IGESSelect_RemoveCurves::Label),
R"#(Returns a text which is "Remove Curves UV on Face" or "Remove Curves 3D on Face")#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_RemoveCurves::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_RemoveCurves::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_RemoveCurves::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_RemoveCurves::*)() const>(&IGESSelect_RemoveCurves::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_SetGlobalParameter from ./opencascade/IGESSelect_SetGlobalParameter.hxx
klass = m.attr("IGESSelect_SetGlobalParameter");
// nested enums
static_cast<py::class_<IGESSelect_SetGlobalParameter ,opencascade::handle<IGESSelect_SetGlobalParameter> , IGESSelect_ModelModifier >>(klass)
// constructors
.def(py::init< const Standard_Integer >() , py::arg("numpar") )
// custom constructors
// methods
.def("GlobalNumber",
(Standard_Integer (IGESSelect_SetGlobalParameter::*)() const) static_cast<Standard_Integer (IGESSelect_SetGlobalParameter::*)() const>(&IGESSelect_SetGlobalParameter::GlobalNumber),
R"#(Returns the global parameter number to which this modifiers applies)#"
)
.def("SetValue",
(void (IGESSelect_SetGlobalParameter::*)( const opencascade::handle<TCollection_HAsciiString> & ) ) static_cast<void (IGESSelect_SetGlobalParameter::*)( const opencascade::handle<TCollection_HAsciiString> & ) >(&IGESSelect_SetGlobalParameter::SetValue),
R"#(Sets a Text Parameter for the new value)#" , py::arg("text")
)
.def("Value",
(opencascade::handle<TCollection_HAsciiString> (IGESSelect_SetGlobalParameter::*)() const) static_cast<opencascade::handle<TCollection_HAsciiString> (IGESSelect_SetGlobalParameter::*)() const>(&IGESSelect_SetGlobalParameter::Value),
R"#(Returns the value to set to the global parameter (Text Param))#"
)
.def("Performing",
(void (IGESSelect_SetGlobalParameter::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , Interface_CopyTool & ) const) static_cast<void (IGESSelect_SetGlobalParameter::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , Interface_CopyTool & ) const>(&IGESSelect_SetGlobalParameter::Performing),
R"#(Specific action : only <target> is used : the form of the new value is checked regarding the parameter number (given at creation time).)#" , py::arg("ctx"), py::arg("target"), py::arg("TC")
)
.def("Label",
(TCollection_AsciiString (IGESSelect_SetGlobalParameter::*)() const) static_cast<TCollection_AsciiString (IGESSelect_SetGlobalParameter::*)() const>(&IGESSelect_SetGlobalParameter::Label),
R"#(Returns a text which is "Sets Global Parameter <numpar> to <new value>")#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_SetGlobalParameter::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_SetGlobalParameter::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_SetGlobalParameter::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_SetGlobalParameter::*)() const>(&IGESSelect_SetGlobalParameter::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_SetLabel from ./opencascade/IGESSelect_SetLabel.hxx
klass = m.attr("IGESSelect_SetLabel");
// nested enums
static_cast<py::class_<IGESSelect_SetLabel ,opencascade::handle<IGESSelect_SetLabel> , IGESSelect_ModelModifier >>(klass)
// constructors
.def(py::init< const Standard_Integer,const Standard_Boolean >() , py::arg("mode"), py::arg("enforce") )
// custom constructors
// methods
.def("Performing",
(void (IGESSelect_SetLabel::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , Interface_CopyTool & ) const) static_cast<void (IGESSelect_SetLabel::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , Interface_CopyTool & ) const>(&IGESSelect_SetLabel::Performing),
R"#(Specific action : Sets or Clears the Label)#" , py::arg("ctx"), py::arg("target"), py::arg("TC")
)
.def("Label",
(TCollection_AsciiString (IGESSelect_SetLabel::*)() const) static_cast<TCollection_AsciiString (IGESSelect_SetLabel::*)() const>(&IGESSelect_SetLabel::Label),
R"#(Returns a text which is "Clear Short Label" or "Set Label to DE" With possible additional information " (enforced)")#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_SetLabel::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_SetLabel::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_SetLabel::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_SetLabel::*)() const>(&IGESSelect_SetLabel::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_SetVersion5 from ./opencascade/IGESSelect_SetVersion5.hxx
klass = m.attr("IGESSelect_SetVersion5");
// nested enums
static_cast<py::class_<IGESSelect_SetVersion5 ,opencascade::handle<IGESSelect_SetVersion5> , IGESSelect_ModelModifier >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Performing",
(void (IGESSelect_SetVersion5::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , Interface_CopyTool & ) const) static_cast<void (IGESSelect_SetVersion5::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , Interface_CopyTool & ) const>(&IGESSelect_SetVersion5::Performing),
R"#(Specific action : only <target> is used : IGES Version (coded) is upgraded to 5.1 if it is older, and it this case the new global parameter 25 (LastChangeDate) is set to current time)#" , py::arg("ctx"), py::arg("target"), py::arg("TC")
)
.def("Label",
(TCollection_AsciiString (IGESSelect_SetVersion5::*)() const) static_cast<TCollection_AsciiString (IGESSelect_SetVersion5::*)() const>(&IGESSelect_SetVersion5::Label),
R"#(Returns a text which is "Update IGES Version to 5.1")#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_SetVersion5::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_SetVersion5::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_SetVersion5::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_SetVersion5::*)() const>(&IGESSelect_SetVersion5::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_UpdateCreationDate from ./opencascade/IGESSelect_UpdateCreationDate.hxx
klass = m.attr("IGESSelect_UpdateCreationDate");
// nested enums
static_cast<py::class_<IGESSelect_UpdateCreationDate ,opencascade::handle<IGESSelect_UpdateCreationDate> , IGESSelect_ModelModifier >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Performing",
(void (IGESSelect_UpdateCreationDate::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , Interface_CopyTool & ) const) static_cast<void (IGESSelect_UpdateCreationDate::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , Interface_CopyTool & ) const>(&IGESSelect_UpdateCreationDate::Performing),
R"#(Specific action : only <target> is used : the system Date is set to Global Section Item n0 18.)#" , py::arg("ctx"), py::arg("target"), py::arg("TC")
)
.def("Label",
(TCollection_AsciiString (IGESSelect_UpdateCreationDate::*)() const) static_cast<TCollection_AsciiString (IGESSelect_UpdateCreationDate::*)() const>(&IGESSelect_UpdateCreationDate::Label),
R"#(Returns a text which is "Update IGES Header Creation Date")#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_UpdateCreationDate::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_UpdateCreationDate::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_UpdateCreationDate::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_UpdateCreationDate::*)() const>(&IGESSelect_UpdateCreationDate::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_UpdateFileName from ./opencascade/IGESSelect_UpdateFileName.hxx
klass = m.attr("IGESSelect_UpdateFileName");
// nested enums
static_cast<py::class_<IGESSelect_UpdateFileName ,opencascade::handle<IGESSelect_UpdateFileName> , IGESSelect_ModelModifier >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Performing",
(void (IGESSelect_UpdateFileName::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , Interface_CopyTool & ) const) static_cast<void (IGESSelect_UpdateFileName::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , Interface_CopyTool & ) const>(&IGESSelect_UpdateFileName::Performing),
R"#(Specific action : only <target> is used : the system Date is set to Global Section Item n0 18.)#" , py::arg("ctx"), py::arg("target"), py::arg("TC")
)
.def("Label",
(TCollection_AsciiString (IGESSelect_UpdateFileName::*)() const) static_cast<TCollection_AsciiString (IGESSelect_UpdateFileName::*)() const>(&IGESSelect_UpdateFileName::Label),
R"#(Returns a text which is "Updates IGES File Name to new current one")#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_UpdateFileName::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_UpdateFileName::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_UpdateFileName::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_UpdateFileName::*)() const>(&IGESSelect_UpdateFileName::DynamicType),
R"#(None)#"
)
;
// Class IGESSelect_UpdateLastChange from ./opencascade/IGESSelect_UpdateLastChange.hxx
klass = m.attr("IGESSelect_UpdateLastChange");
// nested enums
static_cast<py::class_<IGESSelect_UpdateLastChange ,opencascade::handle<IGESSelect_UpdateLastChange> , IGESSelect_ModelModifier >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Performing",
(void (IGESSelect_UpdateLastChange::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , Interface_CopyTool & ) const) static_cast<void (IGESSelect_UpdateLastChange::*)( IFSelect_ContextModif & , const opencascade::handle<IGESData_IGESModel> & , Interface_CopyTool & ) const>(&IGESSelect_UpdateLastChange::Performing),
R"#(Specific action : only <target> is used : the system Date is set to Global Section Item n0 25. Also sets IGES Version (Item n0 23) to IGES5 if it was older.)#" , py::arg("ctx"), py::arg("target"), py::arg("TC")
)
.def("Label",
(TCollection_AsciiString (IGESSelect_UpdateLastChange::*)() const) static_cast<TCollection_AsciiString (IGESSelect_UpdateLastChange::*)() const>(&IGESSelect_UpdateLastChange::Label),
R"#(Returns a text which is "Update IGES Header Last Change Date")#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESSelect_UpdateLastChange::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESSelect_UpdateLastChange::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("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESSelect_UpdateLastChange::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESSelect_UpdateLastChange::*)() const>(&IGESSelect_UpdateLastChange::DynamicType),
R"#(None)#"
)
;
// functions
// ./opencascade/IGESSelect.hxx
// ./opencascade/IGESSelect_Activator.hxx
// ./opencascade/IGESSelect_AddFileComment.hxx
// ./opencascade/IGESSelect_AddGroup.hxx
// ./opencascade/IGESSelect_AutoCorrect.hxx
// ./opencascade/IGESSelect_ChangeLevelList.hxx
// ./opencascade/IGESSelect_ChangeLevelNumber.hxx
// ./opencascade/IGESSelect_ComputeStatus.hxx
// ./opencascade/IGESSelect_CounterOfLevelNumber.hxx
// ./opencascade/IGESSelect_DispPerDrawing.hxx
// ./opencascade/IGESSelect_DispPerSingleView.hxx
// ./opencascade/IGESSelect_Dumper.hxx
// ./opencascade/IGESSelect_EditDirPart.hxx
// ./opencascade/IGESSelect_EditHeader.hxx
// ./opencascade/IGESSelect_FileModifier.hxx
// ./opencascade/IGESSelect_FloatFormat.hxx
// ./opencascade/IGESSelect_IGESName.hxx
// ./opencascade/IGESSelect_IGESTypeForm.hxx
// ./opencascade/IGESSelect_ModelModifier.hxx
// ./opencascade/IGESSelect_RebuildDrawings.hxx
// ./opencascade/IGESSelect_RebuildGroups.hxx
// ./opencascade/IGESSelect_RemoveCurves.hxx
// ./opencascade/IGESSelect_SelectBasicGeom.hxx
// ./opencascade/IGESSelect_SelectBypassGroup.hxx
// ./opencascade/IGESSelect_SelectBypassSubfigure.hxx
// ./opencascade/IGESSelect_SelectDrawingFrom.hxx
// ./opencascade/IGESSelect_SelectFaces.hxx
// ./opencascade/IGESSelect_SelectFromDrawing.hxx
// ./opencascade/IGESSelect_SelectFromSingleView.hxx
// ./opencascade/IGESSelect_SelectLevelNumber.hxx
// ./opencascade/IGESSelect_SelectName.hxx
// ./opencascade/IGESSelect_SelectPCurves.hxx
// ./opencascade/IGESSelect_SelectSingleViewFrom.hxx
// ./opencascade/IGESSelect_SelectSubordinate.hxx
// ./opencascade/IGESSelect_SelectVisibleStatus.hxx
// ./opencascade/IGESSelect_SetGlobalParameter.hxx
// ./opencascade/IGESSelect_SetLabel.hxx
// ./opencascade/IGESSelect_SetVersion5.hxx
// ./opencascade/IGESSelect_SignColor.hxx
// ./opencascade/IGESSelect_SignLevelNumber.hxx
// ./opencascade/IGESSelect_SignStatus.hxx
// ./opencascade/IGESSelect_SplineToBSpline.hxx
// ./opencascade/IGESSelect_UpdateCreationDate.hxx
// ./opencascade/IGESSelect_UpdateFileName.hxx
// ./opencascade/IGESSelect_UpdateLastChange.hxx
// ./opencascade/IGESSelect_ViewSorter.hxx
// ./opencascade/IGESSelect_WorkLibrary.hxx
// Additional functions
// operators
// register typdefs
// exceptions
// user-defined post-inclusion per module in the body
};
// user-defined post-inclusion per module
// user-defined post
|