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 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717
|
// 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 <IGESDraw_Protocol.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <gp_Pnt.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <TCollection_HAsciiString.hxx>
#include <IGESGraph_TextDisplayTemplate.hxx>
#include <gp_Pnt.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <gp_Pnt2d.hxx>
#include <gp_XYZ.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <gp_Pnt2d.hxx>
#include <gp_XYZ.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESData_IGESEntity.hxx>
#include <Interface_EntityIterator.hxx>
#include <IGESData_DirChecker.hxx>
#include <Interface_ShareTool.hxx>
#include <Interface_Check.hxx>
#include <Interface_CopyTool.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <gp_Pnt.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESDraw_NetworkSubfigureDef.hxx>
#include <TCollection_HAsciiString.hxx>
#include <IGESGraph_TextDisplayTemplate.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <TCollection_HAsciiString.hxx>
#include <IGESGraph_TextDisplayTemplate.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <gp_Vec.hxx>
#include <gp_Pnt.hxx>
#include <gp_Pnt2d.hxx>
#include <IGESData_TransfEntity.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESGeom_TransformationMatrix.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESData_IGESEntity.hxx>
#include <IGESData_IGESReaderData.hxx>
#include <IGESData_ParamReader.hxx>
#include <IGESData_IGESWriter.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <gp_Pnt.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESData_IGESEntity.hxx>
#include <IGESData_IGESDumper.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESDraw_CircArraySubfigure.hxx>
#include <IGESData_IGESReaderData.hxx>
#include <IGESData_ParamReader.hxx>
#include <IGESData_IGESWriter.hxx>
#include <Interface_EntityIterator.hxx>
#include <IGESData_DirChecker.hxx>
#include <Interface_ShareTool.hxx>
#include <Interface_Check.hxx>
#include <Interface_CopyTool.hxx>
#include <IGESData_IGESDumper.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESDraw_ConnectPoint.hxx>
#include <IGESData_IGESReaderData.hxx>
#include <IGESData_ParamReader.hxx>
#include <IGESData_IGESWriter.hxx>
#include <Interface_EntityIterator.hxx>
#include <IGESData_DirChecker.hxx>
#include <Interface_ShareTool.hxx>
#include <Interface_Check.hxx>
#include <Interface_CopyTool.hxx>
#include <IGESData_IGESDumper.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESDraw_Drawing.hxx>
#include <IGESData_IGESReaderData.hxx>
#include <IGESData_ParamReader.hxx>
#include <IGESData_IGESWriter.hxx>
#include <Interface_EntityIterator.hxx>
#include <IGESData_DirChecker.hxx>
#include <Interface_ShareTool.hxx>
#include <Interface_Check.hxx>
#include <Interface_CopyTool.hxx>
#include <IGESData_IGESDumper.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESDraw_DrawingWithRotation.hxx>
#include <IGESData_IGESReaderData.hxx>
#include <IGESData_ParamReader.hxx>
#include <IGESData_IGESWriter.hxx>
#include <Interface_EntityIterator.hxx>
#include <IGESData_DirChecker.hxx>
#include <Interface_ShareTool.hxx>
#include <Interface_Check.hxx>
#include <Interface_CopyTool.hxx>
#include <IGESData_IGESDumper.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESDraw_LabelDisplay.hxx>
#include <IGESData_IGESReaderData.hxx>
#include <IGESData_ParamReader.hxx>
#include <IGESData_IGESWriter.hxx>
#include <Interface_EntityIterator.hxx>
#include <IGESData_DirChecker.hxx>
#include <Interface_ShareTool.hxx>
#include <Interface_Check.hxx>
#include <Interface_CopyTool.hxx>
#include <IGESData_IGESDumper.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESDraw_NetworkSubfigure.hxx>
#include <IGESData_IGESReaderData.hxx>
#include <IGESData_ParamReader.hxx>
#include <IGESData_IGESWriter.hxx>
#include <Interface_EntityIterator.hxx>
#include <IGESData_DirChecker.hxx>
#include <Interface_ShareTool.hxx>
#include <Interface_Check.hxx>
#include <Interface_CopyTool.hxx>
#include <IGESData_IGESDumper.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESDraw_NetworkSubfigureDef.hxx>
#include <IGESData_IGESReaderData.hxx>
#include <IGESData_ParamReader.hxx>
#include <IGESData_IGESWriter.hxx>
#include <Interface_EntityIterator.hxx>
#include <IGESData_DirChecker.hxx>
#include <Interface_ShareTool.hxx>
#include <Interface_Check.hxx>
#include <Interface_CopyTool.hxx>
#include <IGESData_IGESDumper.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESDraw_PerspectiveView.hxx>
#include <IGESData_IGESReaderData.hxx>
#include <IGESData_ParamReader.hxx>
#include <IGESData_IGESWriter.hxx>
#include <Interface_EntityIterator.hxx>
#include <IGESData_DirChecker.hxx>
#include <Interface_ShareTool.hxx>
#include <Interface_Check.hxx>
#include <Interface_CopyTool.hxx>
#include <IGESData_IGESDumper.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESDraw_Planar.hxx>
#include <IGESData_IGESReaderData.hxx>
#include <IGESData_ParamReader.hxx>
#include <IGESData_IGESWriter.hxx>
#include <Interface_EntityIterator.hxx>
#include <IGESData_DirChecker.hxx>
#include <Interface_ShareTool.hxx>
#include <Interface_Check.hxx>
#include <Interface_CopyTool.hxx>
#include <IGESData_IGESDumper.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESDraw_RectArraySubfigure.hxx>
#include <IGESData_IGESReaderData.hxx>
#include <IGESData_ParamReader.hxx>
#include <IGESData_IGESWriter.hxx>
#include <Interface_EntityIterator.hxx>
#include <IGESData_DirChecker.hxx>
#include <Interface_ShareTool.hxx>
#include <Interface_Check.hxx>
#include <Interface_CopyTool.hxx>
#include <IGESData_IGESDumper.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESDraw_SegmentedViewsVisible.hxx>
#include <IGESData_IGESReaderData.hxx>
#include <IGESData_ParamReader.hxx>
#include <IGESData_IGESWriter.hxx>
#include <Interface_EntityIterator.hxx>
#include <IGESData_DirChecker.hxx>
#include <Interface_ShareTool.hxx>
#include <Interface_Check.hxx>
#include <Interface_CopyTool.hxx>
#include <IGESData_IGESDumper.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESDraw_View.hxx>
#include <IGESData_IGESReaderData.hxx>
#include <IGESData_ParamReader.hxx>
#include <IGESData_IGESWriter.hxx>
#include <Interface_EntityIterator.hxx>
#include <IGESData_DirChecker.hxx>
#include <Interface_ShareTool.hxx>
#include <Interface_Check.hxx>
#include <Interface_CopyTool.hxx>
#include <IGESData_IGESDumper.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESDraw_ViewsVisible.hxx>
#include <IGESData_IGESReaderData.hxx>
#include <IGESData_ParamReader.hxx>
#include <IGESData_IGESWriter.hxx>
#include <Interface_EntityIterator.hxx>
#include <IGESData_DirChecker.hxx>
#include <Interface_ShareTool.hxx>
#include <Interface_Check.hxx>
#include <Interface_CopyTool.hxx>
#include <IGESData_IGESDumper.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESDraw_ViewsVisibleWithAttr.hxx>
#include <IGESData_IGESReaderData.hxx>
#include <IGESData_ParamReader.hxx>
#include <IGESData_IGESWriter.hxx>
#include <Interface_EntityIterator.hxx>
#include <IGESData_DirChecker.hxx>
#include <Interface_ShareTool.hxx>
#include <Interface_Check.hxx>
#include <Interface_CopyTool.hxx>
#include <IGESData_IGESDumper.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESGeom_Plane.hxx>
#include <IGESData_TransfEntity.hxx>
#include <gp_XYZ.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
// module includes
#include <IGESDraw.hxx>
#include <IGESDraw_Array1OfConnectPoint.hxx>
#include <IGESDraw_Array1OfViewKindEntity.hxx>
#include <IGESDraw_CircArraySubfigure.hxx>
#include <IGESDraw_ConnectPoint.hxx>
#include <IGESDraw_Drawing.hxx>
#include <IGESDraw_DrawingWithRotation.hxx>
#include <IGESDraw_GeneralModule.hxx>
#include <IGESDraw_HArray1OfConnectPoint.hxx>
#include <IGESDraw_HArray1OfViewKindEntity.hxx>
#include <IGESDraw_LabelDisplay.hxx>
#include <IGESDraw_NetworkSubfigure.hxx>
#include <IGESDraw_NetworkSubfigureDef.hxx>
#include <IGESDraw_PerspectiveView.hxx>
#include <IGESDraw_Planar.hxx>
#include <IGESDraw_Protocol.hxx>
#include <IGESDraw_ReadWriteModule.hxx>
#include <IGESDraw_RectArraySubfigure.hxx>
#include <IGESDraw_SegmentedViewsVisible.hxx>
#include <IGESDraw_SpecificModule.hxx>
#include <IGESDraw_ToolCircArraySubfigure.hxx>
#include <IGESDraw_ToolConnectPoint.hxx>
#include <IGESDraw_ToolDrawing.hxx>
#include <IGESDraw_ToolDrawingWithRotation.hxx>
#include <IGESDraw_ToolLabelDisplay.hxx>
#include <IGESDraw_ToolNetworkSubfigure.hxx>
#include <IGESDraw_ToolNetworkSubfigureDef.hxx>
#include <IGESDraw_ToolPerspectiveView.hxx>
#include <IGESDraw_ToolPlanar.hxx>
#include <IGESDraw_ToolRectArraySubfigure.hxx>
#include <IGESDraw_ToolSegmentedViewsVisible.hxx>
#include <IGESDraw_ToolView.hxx>
#include <IGESDraw_ToolViewsVisible.hxx>
#include <IGESDraw_ToolViewsVisibleWithAttr.hxx>
#include <IGESDraw_View.hxx>
#include <IGESDraw_ViewsVisible.hxx>
#include <IGESDraw_ViewsVisibleWithAttr.hxx>
// template related includes
// ./opencascade/IGESDraw_Array1OfConnectPoint.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/IGESDraw_Array1OfViewKindEntity.hxx
#include "NCollection_tmpl.hxx"
// user-defined pre
#include "OCP_specific.inc"
// user-defined inclusion per module
// Module definiiton
void register_IGESDraw(py::module &main_module) {
py::module m = static_cast<py::module>(main_module.attr("IGESDraw"));
py::object klass;
//Python trampoline classes
// classes
// Class IGESDraw from ./opencascade/IGESDraw.hxx
klass = m.attr("IGESDraw");
// default constructor
register_default_constructor<IGESDraw , shared_ptr<IGESDraw>>(m,"IGESDraw");
// nested enums
static_cast<py::class_<IGESDraw , shared_ptr<IGESDraw> >>(klass)
// constructors
// custom constructors
// methods
// methods using call by reference i.s.o. return
// static methods
.def_static("Init_s",
(void (*)() ) static_cast<void (*)() >(&IGESDraw::Init),
R"#(Prepares dynamic data (Protocol, Modules) for this package)#"
)
.def_static("Protocol_s",
(opencascade::handle<IGESDraw_Protocol> (*)() ) static_cast<opencascade::handle<IGESDraw_Protocol> (*)() >(&IGESDraw::Protocol),
R"#(Returns the Protocol for this Package)#"
)
// 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 IGESDraw_CircArraySubfigure from ./opencascade/IGESDraw_CircArraySubfigure.hxx
klass = m.attr("IGESDraw_CircArraySubfigure");
// nested enums
static_cast<py::class_<IGESDraw_CircArraySubfigure ,opencascade::handle<IGESDraw_CircArraySubfigure> , IGESData_IGESEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESDraw_CircArraySubfigure::*)( const opencascade::handle<IGESData_IGESEntity> & , const Standard_Integer , const gp_XYZ & , const Standard_Real , const Standard_Real , const Standard_Real , const Standard_Integer , const opencascade::handle<TColStd_HArray1OfInteger> & ) ) static_cast<void (IGESDraw_CircArraySubfigure::*)( const opencascade::handle<IGESData_IGESEntity> & , const Standard_Integer , const gp_XYZ & , const Standard_Real , const Standard_Real , const Standard_Real , const Standard_Integer , const opencascade::handle<TColStd_HArray1OfInteger> & ) >(&IGESDraw_CircArraySubfigure::Init),
R"#(This method is used to set the fields of the class CircArraySubfigure - aBase : Base entity - aNumLocs : Total number of possible instance locations - aCenter : Coordinates of Center of imaginary circle - aRadius : Radius of imaginary circle - aStAngle : Start angle in radians - aDelAngle : Delta angle in radians - aFlag : DO-DON'T flag to control which portion to display - allNumPos : All position to be or not to be processed)#" , py::arg("aBase"), py::arg("aNumLocs"), py::arg("aCenter"), py::arg("aRadius"), py::arg("aStAngle"), py::arg("aDelAngle"), py::arg("aFlag"), py::arg("allNumPos")
)
.def("BaseEntity",
(opencascade::handle<IGESData_IGESEntity> (IGESDraw_CircArraySubfigure::*)() const) static_cast<opencascade::handle<IGESData_IGESEntity> (IGESDraw_CircArraySubfigure::*)() const>(&IGESDraw_CircArraySubfigure::BaseEntity),
R"#(returns the base entity, copies of which are produced)#"
)
.def("NbLocations",
(Standard_Integer (IGESDraw_CircArraySubfigure::*)() const) static_cast<Standard_Integer (IGESDraw_CircArraySubfigure::*)() const>(&IGESDraw_CircArraySubfigure::NbLocations),
R"#(returns total number of possible instance locations)#"
)
.def("CenterPoint",
(gp_Pnt (IGESDraw_CircArraySubfigure::*)() const) static_cast<gp_Pnt (IGESDraw_CircArraySubfigure::*)() const>(&IGESDraw_CircArraySubfigure::CenterPoint),
R"#(returns the center of the imaginary circle)#"
)
.def("TransformedCenterPoint",
(gp_Pnt (IGESDraw_CircArraySubfigure::*)() const) static_cast<gp_Pnt (IGESDraw_CircArraySubfigure::*)() const>(&IGESDraw_CircArraySubfigure::TransformedCenterPoint),
R"#(returns the Transformed center of the imaginary circle)#"
)
.def("CircleRadius",
(Standard_Real (IGESDraw_CircArraySubfigure::*)() const) static_cast<Standard_Real (IGESDraw_CircArraySubfigure::*)() const>(&IGESDraw_CircArraySubfigure::CircleRadius),
R"#(returns the radius of the imaginary circle)#"
)
.def("StartAngle",
(Standard_Real (IGESDraw_CircArraySubfigure::*)() const) static_cast<Standard_Real (IGESDraw_CircArraySubfigure::*)() const>(&IGESDraw_CircArraySubfigure::StartAngle),
R"#(returns the start angle in radians)#"
)
.def("DeltaAngle",
(Standard_Real (IGESDraw_CircArraySubfigure::*)() const) static_cast<Standard_Real (IGESDraw_CircArraySubfigure::*)() const>(&IGESDraw_CircArraySubfigure::DeltaAngle),
R"#(returns the delta angle in radians)#"
)
.def("ListCount",
(Standard_Integer (IGESDraw_CircArraySubfigure::*)() const) static_cast<Standard_Integer (IGESDraw_CircArraySubfigure::*)() const>(&IGESDraw_CircArraySubfigure::ListCount),
R"#(returns 0 if all elements to be displayed)#"
)
.def("DisplayFlag",
(Standard_Boolean (IGESDraw_CircArraySubfigure::*)() const) static_cast<Standard_Boolean (IGESDraw_CircArraySubfigure::*)() const>(&IGESDraw_CircArraySubfigure::DisplayFlag),
R"#(returns True if (ListCount = 0) all elements are to be displayed)#"
)
.def("DoDontFlag",
(Standard_Boolean (IGESDraw_CircArraySubfigure::*)() const) static_cast<Standard_Boolean (IGESDraw_CircArraySubfigure::*)() const>(&IGESDraw_CircArraySubfigure::DoDontFlag),
R"#(returns 0 if half or fewer of the elements of the array are defined 1 if half or more of the elements are defined)#"
)
.def("PositionNum",
(Standard_Boolean (IGESDraw_CircArraySubfigure::*)( const Standard_Integer ) const) static_cast<Standard_Boolean (IGESDraw_CircArraySubfigure::*)( const Standard_Integer ) const>(&IGESDraw_CircArraySubfigure::PositionNum),
R"#(returns whether Index is to be processed (DO) or not to be processed(DON'T) if (ListCount = 0) return theDoDontFlag raises exception if Index <= 0 or Index > ListCount().)#" , py::arg("Index")
)
.def("ListPosition",
(Standard_Integer (IGESDraw_CircArraySubfigure::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IGESDraw_CircArraySubfigure::*)( const Standard_Integer ) const>(&IGESDraw_CircArraySubfigure::ListPosition),
R"#(returns the Index'th value position raises exception if Index <= 0 or Index > ListCount().)#" , py::arg("Index")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDraw_CircArraySubfigure::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDraw_CircArraySubfigure::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> & (IGESDraw_CircArraySubfigure::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDraw_CircArraySubfigure::*)() const>(&IGESDraw_CircArraySubfigure::DynamicType),
R"#(None)#"
)
;
// Class IGESDraw_ConnectPoint from ./opencascade/IGESDraw_ConnectPoint.hxx
klass = m.attr("IGESDraw_ConnectPoint");
// nested enums
static_cast<py::class_<IGESDraw_ConnectPoint ,opencascade::handle<IGESDraw_ConnectPoint> , IGESData_IGESEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESDraw_ConnectPoint::*)( const gp_XYZ & , const opencascade::handle<IGESData_IGESEntity> & , const Standard_Integer , const Standard_Integer , const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<IGESGraph_TextDisplayTemplate> & , const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<IGESGraph_TextDisplayTemplate> & , const Standard_Integer , const Standard_Integer , const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & ) ) static_cast<void (IGESDraw_ConnectPoint::*)( const gp_XYZ & , const opencascade::handle<IGESData_IGESEntity> & , const Standard_Integer , const Standard_Integer , const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<IGESGraph_TextDisplayTemplate> & , const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<IGESGraph_TextDisplayTemplate> & , const Standard_Integer , const Standard_Integer , const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & ) >(&IGESDraw_ConnectPoint::Init),
R"#(This method is used to set the fields of the class ConnectPoint - aPoint : A Coordinate point - aDisplaySymbol : Display symbol Geometry - aTypeFlag : Type of the connection - aFunctionFlag : Function flag for the connection - aFunctionIdentifier : Connection Point Function Identifier - anIdentifierTemplate : Connection Point Function Template - aFunctionName : Connection Point Function Name - aFunctionTemplate : Connection Point Function Template - aPointIdentifier : Unique Connect Point Identifier - aFunctionCode : Connect Point Function Code - aSwapFlag : Connect Point Swap Flag - anOwnerSubfigure : Pointer to the "Owner" Entity)#" , py::arg("aPoint"), py::arg("aDisplaySymbol"), py::arg("aTypeFlag"), py::arg("aFunctionFlag"), py::arg("aFunctionIdentifier"), py::arg("anIdentifierTemplate"), py::arg("aFunctionName"), py::arg("aFunctionTemplate"), py::arg("aPointIdentifier"), py::arg("aFunctionCode"), py::arg("aSwapFlag"), py::arg("anOwnerSubfigure")
)
.def("Point",
(gp_Pnt (IGESDraw_ConnectPoint::*)() const) static_cast<gp_Pnt (IGESDraw_ConnectPoint::*)() const>(&IGESDraw_ConnectPoint::Point),
R"#(returns the coordinate of the connection point)#"
)
.def("TransformedPoint",
(gp_Pnt (IGESDraw_ConnectPoint::*)() const) static_cast<gp_Pnt (IGESDraw_ConnectPoint::*)() const>(&IGESDraw_ConnectPoint::TransformedPoint),
R"#(returns the Transformed coordinate of the connection point)#"
)
.def("HasDisplaySymbol",
(Standard_Boolean (IGESDraw_ConnectPoint::*)() const) static_cast<Standard_Boolean (IGESDraw_ConnectPoint::*)() const>(&IGESDraw_ConnectPoint::HasDisplaySymbol),
R"#(returns True if Display symbol is specified else returns False)#"
)
.def("DisplaySymbol",
(opencascade::handle<IGESData_IGESEntity> (IGESDraw_ConnectPoint::*)() const) static_cast<opencascade::handle<IGESData_IGESEntity> (IGESDraw_ConnectPoint::*)() const>(&IGESDraw_ConnectPoint::DisplaySymbol),
R"#(if display symbol specified returns display symbol geometric entity else returns NULL Handle)#"
)
.def("TypeFlag",
(Standard_Integer (IGESDraw_ConnectPoint::*)() const) static_cast<Standard_Integer (IGESDraw_ConnectPoint::*)() const>(&IGESDraw_ConnectPoint::TypeFlag),
R"#(return value specifies a particular type of connection : Type Flag = 0 : Not Specified(default) 1 : Nonspecific logical point of connection 2 : Nonspecific physical point of connection 101 : Logical component pin 102 : Logical part connector 103 : Logical offpage connector 104 : Logical global signal connector 201 : Physical PWA surface mount pin 202 : Physical PWA blind pin 203 : Physical PWA thru-pin 5001-9999 : Implementor defined.)#"
)
.def("FunctionFlag",
(Standard_Integer (IGESDraw_ConnectPoint::*)() const) static_cast<Standard_Integer (IGESDraw_ConnectPoint::*)() const>(&IGESDraw_ConnectPoint::FunctionFlag),
R"#(returns Function Code that specifies a particular function for the ECO576 connection : e.g., Function Flag = 0 : Unspecified(default) = 1 : Electrical Signal = 2 : Fluid flow Signal)#"
)
.def("FunctionIdentifier",
(opencascade::handle<TCollection_HAsciiString> (IGESDraw_ConnectPoint::*)() const) static_cast<opencascade::handle<TCollection_HAsciiString> (IGESDraw_ConnectPoint::*)() const>(&IGESDraw_ConnectPoint::FunctionIdentifier),
R"#(return HAsciiString identifying Pin Number or Nozzle Label etc.)#"
)
.def("HasIdentifierTemplate",
(Standard_Boolean (IGESDraw_ConnectPoint::*)() const) static_cast<Standard_Boolean (IGESDraw_ConnectPoint::*)() const>(&IGESDraw_ConnectPoint::HasIdentifierTemplate),
R"#(returns True if Text Display Template is specified for Identifier else returns False)#"
)
.def("IdentifierTemplate",
(opencascade::handle<IGESGraph_TextDisplayTemplate> (IGESDraw_ConnectPoint::*)() const) static_cast<opencascade::handle<IGESGraph_TextDisplayTemplate> (IGESDraw_ConnectPoint::*)() const>(&IGESDraw_ConnectPoint::IdentifierTemplate),
R"#(if Text Display Template for the Function Identifier is defined, returns TestDisplayTemplate else returns NULL Handle)#"
)
.def("FunctionName",
(opencascade::handle<TCollection_HAsciiString> (IGESDraw_ConnectPoint::*)() const) static_cast<opencascade::handle<TCollection_HAsciiString> (IGESDraw_ConnectPoint::*)() const>(&IGESDraw_ConnectPoint::FunctionName),
R"#(returns Connection Point Function Name)#"
)
.def("HasFunctionTemplate",
(Standard_Boolean (IGESDraw_ConnectPoint::*)() const) static_cast<Standard_Boolean (IGESDraw_ConnectPoint::*)() const>(&IGESDraw_ConnectPoint::HasFunctionTemplate),
R"#(returns True if Text Display Template is specified for Function Name else returns False)#"
)
.def("FunctionTemplate",
(opencascade::handle<IGESGraph_TextDisplayTemplate> (IGESDraw_ConnectPoint::*)() const) static_cast<opencascade::handle<IGESGraph_TextDisplayTemplate> (IGESDraw_ConnectPoint::*)() const>(&IGESDraw_ConnectPoint::FunctionTemplate),
R"#(if Text Display Template for the Function Name is defined, returns TestDisplayTemplate else returns NULL Handle)#"
)
.def("PointIdentifier",
(Standard_Integer (IGESDraw_ConnectPoint::*)() const) static_cast<Standard_Integer (IGESDraw_ConnectPoint::*)() const>(&IGESDraw_ConnectPoint::PointIdentifier),
R"#(returns the Unique Connect Point Identifier)#"
)
.def("FunctionCode",
(Standard_Integer (IGESDraw_ConnectPoint::*)() const) static_cast<Standard_Integer (IGESDraw_ConnectPoint::*)() const>(&IGESDraw_ConnectPoint::FunctionCode),
R"#(returns the Connect Point Function Code)#"
)
.def("SwapFlag",
(Standard_Boolean (IGESDraw_ConnectPoint::*)() const) static_cast<Standard_Boolean (IGESDraw_ConnectPoint::*)() const>(&IGESDraw_ConnectPoint::SwapFlag),
R"#(return value = 0 : Connect point may be swapped(default) = 1 : Connect point may not be swapped)#"
)
.def("HasOwnerSubfigure",
(Standard_Boolean (IGESDraw_ConnectPoint::*)() const) static_cast<Standard_Boolean (IGESDraw_ConnectPoint::*)() const>(&IGESDraw_ConnectPoint::HasOwnerSubfigure),
R"#(returns True if Network Subfigure Instance/Definition Entity is specified else returns False)#"
)
.def("OwnerSubfigure",
(opencascade::handle<IGESData_IGESEntity> (IGESDraw_ConnectPoint::*)() const) static_cast<opencascade::handle<IGESData_IGESEntity> (IGESDraw_ConnectPoint::*)() const>(&IGESDraw_ConnectPoint::OwnerSubfigure),
R"#(returns "owner" Network Subfigure Instance Entity, or Network Subfigure Definition Entity, or NULL Handle.)#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDraw_ConnectPoint::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDraw_ConnectPoint::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> & (IGESDraw_ConnectPoint::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDraw_ConnectPoint::*)() const>(&IGESDraw_ConnectPoint::DynamicType),
R"#(None)#"
)
;
// Class IGESDraw_Drawing from ./opencascade/IGESDraw_Drawing.hxx
klass = m.attr("IGESDraw_Drawing");
// nested enums
static_cast<py::class_<IGESDraw_Drawing ,opencascade::handle<IGESDraw_Drawing> , IGESData_IGESEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESDraw_Drawing::*)( const opencascade::handle<IGESDraw_HArray1OfViewKindEntity> & , const opencascade::handle<TColgp_HArray1OfXY> & , const opencascade::handle<IGESData_HArray1OfIGESEntity> & ) ) static_cast<void (IGESDraw_Drawing::*)( const opencascade::handle<IGESDraw_HArray1OfViewKindEntity> & , const opencascade::handle<TColgp_HArray1OfXY> & , const opencascade::handle<IGESData_HArray1OfIGESEntity> & ) >(&IGESDraw_Drawing::Init),
R"#(This method is used to set the fields of the class Drawing - allViews : Pointers to DEs of View entities - allViewOrigins : Origin coordinates of transformed Views - allAnnotations : Pointers to DEs of Annotation entities raises exception if Lengths of allViews and allViewOrigins are not same.)#" , py::arg("allViews"), py::arg("allViewOrigins"), py::arg("allAnnotations")
)
.def("NbViews",
(Standard_Integer (IGESDraw_Drawing::*)() const) static_cast<Standard_Integer (IGESDraw_Drawing::*)() const>(&IGESDraw_Drawing::NbViews),
R"#(returns the number of view pointers in <me>)#"
)
.def("ViewItem",
(opencascade::handle<IGESData_ViewKindEntity> (IGESDraw_Drawing::*)( const Standard_Integer ) const) static_cast<opencascade::handle<IGESData_ViewKindEntity> (IGESDraw_Drawing::*)( const Standard_Integer ) const>(&IGESDraw_Drawing::ViewItem),
R"#(returns the ViewKindEntity indicated by ViewIndex raises an exception if ViewIndex <= 0 or ViewIndex > NbViews().)#" , py::arg("ViewIndex")
)
.def("ViewOrigin",
(gp_Pnt2d (IGESDraw_Drawing::*)( const Standard_Integer ) const) static_cast<gp_Pnt2d (IGESDraw_Drawing::*)( const Standard_Integer ) const>(&IGESDraw_Drawing::ViewOrigin),
R"#(returns the Drawing space coordinates of the origin of the Transformed view indicated by TViewIndex raises an exception if TViewIndex <= 0 or TViewIndex > NbViews().)#" , py::arg("TViewIndex")
)
.def("NbAnnotations",
(Standard_Integer (IGESDraw_Drawing::*)() const) static_cast<Standard_Integer (IGESDraw_Drawing::*)() const>(&IGESDraw_Drawing::NbAnnotations),
R"#(returns the number of Annotation entities in <me>)#"
)
.def("Annotation",
(opencascade::handle<IGESData_IGESEntity> (IGESDraw_Drawing::*)( const Standard_Integer ) const) static_cast<opencascade::handle<IGESData_IGESEntity> (IGESDraw_Drawing::*)( const Standard_Integer ) const>(&IGESDraw_Drawing::Annotation),
R"#(returns the Annotation entity in this Drawing, indicated by the AnnotationIndex raises an exception if AnnotationIndex <= 0 or AnnotationIndex > NbAnnotations().)#" , py::arg("AnnotationIndex")
)
.def("ViewToDrawing",
(gp_XY (IGESDraw_Drawing::*)( const Standard_Integer , const gp_XYZ & ) const) static_cast<gp_XY (IGESDraw_Drawing::*)( const Standard_Integer , const gp_XYZ & ) const>(&IGESDraw_Drawing::ViewToDrawing),
R"#(None)#" , py::arg("NumView"), py::arg("ViewCoords")
)
.def("DrawingUnit",
(Standard_Boolean (IGESDraw_Drawing::*)( Standard_Real & ) const) static_cast<Standard_Boolean (IGESDraw_Drawing::*)( Standard_Real & ) const>(&IGESDraw_Drawing::DrawingUnit),
R"#(Returns the Drawing Unit Value if it is specified (by a specific property entity) If not specified, returns False, and val as zero : unit to consider is then the model unit in GlobalSection)#" , py::arg("value")
)
.def("DrawingSize",
(Standard_Boolean (IGESDraw_Drawing::*)( Standard_Real & , Standard_Real & ) const) static_cast<Standard_Boolean (IGESDraw_Drawing::*)( Standard_Real & , Standard_Real & ) const>(&IGESDraw_Drawing::DrawingSize),
R"#(Returns the Drawing Size if it is specified (by a specific property entity) If not specified, returns False, and X,Y as zero : unit to consider is then the model unit in GlobalSection)#" , py::arg("X"), py::arg("Y")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDraw_Drawing::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDraw_Drawing::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> & (IGESDraw_Drawing::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDraw_Drawing::*)() const>(&IGESDraw_Drawing::DynamicType),
R"#(None)#"
)
;
// Class IGESDraw_DrawingWithRotation from ./opencascade/IGESDraw_DrawingWithRotation.hxx
klass = m.attr("IGESDraw_DrawingWithRotation");
// nested enums
static_cast<py::class_<IGESDraw_DrawingWithRotation ,opencascade::handle<IGESDraw_DrawingWithRotation> , IGESData_IGESEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESDraw_DrawingWithRotation::*)( const opencascade::handle<IGESDraw_HArray1OfViewKindEntity> & , const opencascade::handle<TColgp_HArray1OfXY> & , const opencascade::handle<TColStd_HArray1OfReal> & , const opencascade::handle<IGESData_HArray1OfIGESEntity> & ) ) static_cast<void (IGESDraw_DrawingWithRotation::*)( const opencascade::handle<IGESDraw_HArray1OfViewKindEntity> & , const opencascade::handle<TColgp_HArray1OfXY> & , const opencascade::handle<TColStd_HArray1OfReal> & , const opencascade::handle<IGESData_HArray1OfIGESEntity> & ) >(&IGESDraw_DrawingWithRotation::Init),
R"#(This method is used to set the fields of the class DrawingWithRotation - allViews : Pointers to View entities - allViewOrigins : Origin coords of transformed views - allOrientationAngles : Orientation angles of transformed views - allAnnotations : Pointers to Annotation entities raises exception if Lengths of allViews, allViewOrigins and allOrientationAngles are not same.)#" , py::arg("allViews"), py::arg("allViewOrigins"), py::arg("allOrientationAngles"), py::arg("allAnnotations")
)
.def("NbViews",
(Standard_Integer (IGESDraw_DrawingWithRotation::*)() const) static_cast<Standard_Integer (IGESDraw_DrawingWithRotation::*)() const>(&IGESDraw_DrawingWithRotation::NbViews),
R"#(returns the number of view pointers in <me>)#"
)
.def("ViewItem",
(opencascade::handle<IGESData_ViewKindEntity> (IGESDraw_DrawingWithRotation::*)( const Standard_Integer ) const) static_cast<opencascade::handle<IGESData_ViewKindEntity> (IGESDraw_DrawingWithRotation::*)( const Standard_Integer ) const>(&IGESDraw_DrawingWithRotation::ViewItem),
R"#(returns the View entity indicated by Index raises an exception if Index <= 0 or Index > NbViews().)#" , py::arg("Index")
)
.def("ViewOrigin",
(gp_Pnt2d (IGESDraw_DrawingWithRotation::*)( const Standard_Integer ) const) static_cast<gp_Pnt2d (IGESDraw_DrawingWithRotation::*)( const Standard_Integer ) const>(&IGESDraw_DrawingWithRotation::ViewOrigin),
R"#(returns the Drawing space coordinates of the origin of the Transformed view indicated by Index raises an exception if Index <= 0 or Index > NbViews().)#" , py::arg("Index")
)
.def("OrientationAngle",
(Standard_Real (IGESDraw_DrawingWithRotation::*)( const Standard_Integer ) const) static_cast<Standard_Real (IGESDraw_DrawingWithRotation::*)( const Standard_Integer ) const>(&IGESDraw_DrawingWithRotation::OrientationAngle),
R"#(returns the Orientation angle for the Transformed view indicated by Index raises an exception if Index <= 0 or Index > NbViews().)#" , py::arg("Index")
)
.def("NbAnnotations",
(Standard_Integer (IGESDraw_DrawingWithRotation::*)() const) static_cast<Standard_Integer (IGESDraw_DrawingWithRotation::*)() const>(&IGESDraw_DrawingWithRotation::NbAnnotations),
R"#(returns the number of Annotation entities in <me>)#"
)
.def("Annotation",
(opencascade::handle<IGESData_IGESEntity> (IGESDraw_DrawingWithRotation::*)( const Standard_Integer ) const) static_cast<opencascade::handle<IGESData_IGESEntity> (IGESDraw_DrawingWithRotation::*)( const Standard_Integer ) const>(&IGESDraw_DrawingWithRotation::Annotation),
R"#(returns the Annotation entity in this Drawing, indicated by Index raises an exception if Index <= 0 or Index > NbAnnotations().)#" , py::arg("Index")
)
.def("ViewToDrawing",
(gp_XY (IGESDraw_DrawingWithRotation::*)( const Standard_Integer , const gp_XYZ & ) const) static_cast<gp_XY (IGESDraw_DrawingWithRotation::*)( const Standard_Integer , const gp_XYZ & ) const>(&IGESDraw_DrawingWithRotation::ViewToDrawing),
R"#(None)#" , py::arg("NumView"), py::arg("ViewCoords")
)
.def("DrawingUnit",
(Standard_Boolean (IGESDraw_DrawingWithRotation::*)( Standard_Real & ) const) static_cast<Standard_Boolean (IGESDraw_DrawingWithRotation::*)( Standard_Real & ) const>(&IGESDraw_DrawingWithRotation::DrawingUnit),
R"#(Returns the Drawing Unit Value if it is specified (by a specific property entity) If not specified, returns False, and val as zero : unit to consider is then the model unit in GlobalSection)#" , py::arg("value")
)
.def("DrawingSize",
(Standard_Boolean (IGESDraw_DrawingWithRotation::*)( Standard_Real & , Standard_Real & ) const) static_cast<Standard_Boolean (IGESDraw_DrawingWithRotation::*)( Standard_Real & , Standard_Real & ) const>(&IGESDraw_DrawingWithRotation::DrawingSize),
R"#(Returns the Drawing Size if it is specified (by a specific property entity) If not specified, returns False, and X,Y as zero : unit to consider is then the model unit in GlobalSection)#" , py::arg("X"), py::arg("Y")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDraw_DrawingWithRotation::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDraw_DrawingWithRotation::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> & (IGESDraw_DrawingWithRotation::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDraw_DrawingWithRotation::*)() const>(&IGESDraw_DrawingWithRotation::DynamicType),
R"#(None)#"
)
;
// Class IGESDraw_GeneralModule from ./opencascade/IGESDraw_GeneralModule.hxx
klass = m.attr("IGESDraw_GeneralModule");
// nested enums
static_cast<py::class_<IGESDraw_GeneralModule ,opencascade::handle<IGESDraw_GeneralModule> , IGESData_GeneralModule >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("OwnSharedCase",
(void (IGESDraw_GeneralModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , Interface_EntityIterator & ) const) static_cast<void (IGESDraw_GeneralModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , Interface_EntityIterator & ) const>(&IGESDraw_GeneralModule::OwnSharedCase),
R"#(Lists the Entities shared by a given IGESEntity <ent>, from its specific parameters : specific for each type)#" , py::arg("CN"), py::arg("ent"), py::arg("iter")
)
.def("OwnImpliedCase",
(void (IGESDraw_GeneralModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , Interface_EntityIterator & ) const) static_cast<void (IGESDraw_GeneralModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , Interface_EntityIterator & ) const>(&IGESDraw_GeneralModule::OwnImpliedCase),
R"#(Specific list of Entities implied by an IGESEntity <ent> (in addition to Associativities). Redefined for ViewsVisible ...)#" , py::arg("CN"), py::arg("ent"), py::arg("iter")
)
.def("DirChecker",
(IGESData_DirChecker (IGESDraw_GeneralModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & ) const) static_cast<IGESData_DirChecker (IGESDraw_GeneralModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & ) const>(&IGESDraw_GeneralModule::DirChecker),
R"#(Returns a DirChecker, specific for each type of Entity (identified by its Case Number) : this DirChecker defines constraints which must be respected by the DirectoryPart)#" , py::arg("CN"), py::arg("ent")
)
.def("NewVoid",
(Standard_Boolean (IGESDraw_GeneralModule::*)( const Standard_Integer , opencascade::handle<Standard_Transient> & ) const) static_cast<Standard_Boolean (IGESDraw_GeneralModule::*)( const Standard_Integer , opencascade::handle<Standard_Transient> & ) const>(&IGESDraw_GeneralModule::NewVoid),
R"#(Specific creation of a new void entity)#" , py::arg("CN"), py::arg("entto")
)
.def("OwnCopyCase",
(void (IGESDraw_GeneralModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , const opencascade::handle<IGESData_IGESEntity> & , Interface_CopyTool & ) const) static_cast<void (IGESDraw_GeneralModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , const opencascade::handle<IGESData_IGESEntity> & , Interface_CopyTool & ) const>(&IGESDraw_GeneralModule::OwnCopyCase),
R"#(Copies parameters which are specific of each Type of Entity)#" , py::arg("CN"), py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnRenewCase",
(void (IGESDraw_GeneralModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , const opencascade::handle<IGESData_IGESEntity> & , const Interface_CopyTool & ) const) static_cast<void (IGESDraw_GeneralModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , const opencascade::handle<IGESData_IGESEntity> & , const Interface_CopyTool & ) const>(&IGESDraw_GeneralModule::OwnRenewCase),
R"#(Renews parameters which are specific of each Type of Entity : redefined for ViewsVisible ... (takes only the implied ref.s which have also been copied))#" , py::arg("CN"), py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDeleteCase",
(void (IGESDraw_GeneralModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & ) const) static_cast<void (IGESDraw_GeneralModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & ) const>(&IGESDraw_GeneralModule::OwnDeleteCase),
R"#(Clears parameters with can cause looping structures : redefined for ViewsVisible ... (clears the implied ref.s))#" , py::arg("CN"), py::arg("ent")
)
.def("CategoryNumber",
(Standard_Integer (IGESDraw_GeneralModule::*)( const Standard_Integer , const opencascade::handle<Standard_Transient> & , const Interface_ShareTool & ) const) static_cast<Standard_Integer (IGESDraw_GeneralModule::*)( const Standard_Integer , const opencascade::handle<Standard_Transient> & , const Interface_ShareTool & ) const>(&IGESDraw_GeneralModule::CategoryNumber),
R"#(Returns a category number which characterizes an entity Planar : Auxiliary Subfigures and ConnectPoint : Structure others : Drawing)#" , py::arg("CN"), py::arg("ent"), py::arg("shares")
)
// methods using call by reference i.s.o. return
.def("OwnCheckCase",
[]( IGESDraw_GeneralModule &self , const Standard_Integer CN,const opencascade::handle<IGESData_IGESEntity> & ent,const Interface_ShareTool & shares,Interface_Check& ach ){
opencascade::handle<Interface_Check> ach_ptr; ach_ptr = &ach;
self.OwnCheckCase(CN,ent,shares,ach_ptr);
if ( ach_ptr.get() != &ach ) copy_if_copy_constructible(ach, *ach_ptr);
return std::make_tuple(); },
R"#(Performs Specific Semantic Check for each type of Entity)#" , py::arg("CN"), py::arg("ent"), py::arg("shares"), py::arg("ach")
)
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDraw_GeneralModule::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDraw_GeneralModule::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> & (IGESDraw_GeneralModule::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDraw_GeneralModule::*)() const>(&IGESDraw_GeneralModule::DynamicType),
R"#(None)#"
)
;
// Class IGESDraw_HArray1OfConnectPoint from ./opencascade/IGESDraw_HArray1OfConnectPoint.hxx
klass = m.attr("IGESDraw_HArray1OfConnectPoint");
// nested enums
static_cast<py::class_<IGESDraw_HArray1OfConnectPoint ,opencascade::handle<IGESDraw_HArray1OfConnectPoint> , IGESDraw_Array1OfConnectPoint , Standard_Transient >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const Standard_Integer,const Standard_Integer >() , py::arg("theLower"), py::arg("theUpper") )
.def(py::init< const Standard_Integer,const Standard_Integer, const opencascade::handle<IGESDraw_ConnectPoint> & >() , py::arg("theLower"), py::arg("theUpper"), py::arg("theValue") )
.def(py::init< const opencascade::handle<IGESDraw_ConnectPoint> &,const Standard_Integer,const Standard_Integer,const bool >() , py::arg("theBegin"), py::arg("theLower"), py::arg("theUpper"), py::arg("arg") )
.def(py::init< const NCollection_Array1<opencascade::handle<IGESDraw_ConnectPoint>> & >() , py::arg("theOther") )
// custom constructors
// methods
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDraw_HArray1OfConnectPoint::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDraw_HArray1OfConnectPoint::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("Array1",
(const IGESDraw_Array1OfConnectPoint & (IGESDraw_HArray1OfConnectPoint::*)() const) static_cast<const IGESDraw_Array1OfConnectPoint & (IGESDraw_HArray1OfConnectPoint::*)() const>(&IGESDraw_HArray1OfConnectPoint::Array1),
R"#(None)#"
)
.def("ChangeArray1",
(IGESDraw_Array1OfConnectPoint & (IGESDraw_HArray1OfConnectPoint::*)() ) static_cast<IGESDraw_Array1OfConnectPoint & (IGESDraw_HArray1OfConnectPoint::*)() >(&IGESDraw_HArray1OfConnectPoint::ChangeArray1),
R"#(None)#"
, py::return_value_policy::reference_internal
)
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESDraw_HArray1OfConnectPoint::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDraw_HArray1OfConnectPoint::*)() const>(&IGESDraw_HArray1OfConnectPoint::DynamicType),
R"#(None)#"
)
;
// Class IGESDraw_HArray1OfViewKindEntity from ./opencascade/IGESDraw_HArray1OfViewKindEntity.hxx
klass = m.attr("IGESDraw_HArray1OfViewKindEntity");
// nested enums
static_cast<py::class_<IGESDraw_HArray1OfViewKindEntity ,opencascade::handle<IGESDraw_HArray1OfViewKindEntity> , IGESDraw_Array1OfViewKindEntity , Standard_Transient >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const Standard_Integer,const Standard_Integer >() , py::arg("theLower"), py::arg("theUpper") )
.def(py::init< const Standard_Integer,const Standard_Integer, const opencascade::handle<IGESData_ViewKindEntity> & >() , py::arg("theLower"), py::arg("theUpper"), py::arg("theValue") )
.def(py::init< const opencascade::handle<IGESData_ViewKindEntity> &,const Standard_Integer,const Standard_Integer,const bool >() , py::arg("theBegin"), py::arg("theLower"), py::arg("theUpper"), py::arg("arg") )
.def(py::init< const NCollection_Array1<opencascade::handle<IGESData_ViewKindEntity>> & >() , py::arg("theOther") )
// custom constructors
// methods
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDraw_HArray1OfViewKindEntity::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDraw_HArray1OfViewKindEntity::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("Array1",
(const IGESDraw_Array1OfViewKindEntity & (IGESDraw_HArray1OfViewKindEntity::*)() const) static_cast<const IGESDraw_Array1OfViewKindEntity & (IGESDraw_HArray1OfViewKindEntity::*)() const>(&IGESDraw_HArray1OfViewKindEntity::Array1),
R"#(None)#"
)
.def("ChangeArray1",
(IGESDraw_Array1OfViewKindEntity & (IGESDraw_HArray1OfViewKindEntity::*)() ) static_cast<IGESDraw_Array1OfViewKindEntity & (IGESDraw_HArray1OfViewKindEntity::*)() >(&IGESDraw_HArray1OfViewKindEntity::ChangeArray1),
R"#(None)#"
, py::return_value_policy::reference_internal
)
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESDraw_HArray1OfViewKindEntity::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDraw_HArray1OfViewKindEntity::*)() const>(&IGESDraw_HArray1OfViewKindEntity::DynamicType),
R"#(None)#"
)
;
// Class IGESDraw_LabelDisplay from ./opencascade/IGESDraw_LabelDisplay.hxx
klass = m.attr("IGESDraw_LabelDisplay");
// nested enums
static_cast<py::class_<IGESDraw_LabelDisplay ,opencascade::handle<IGESDraw_LabelDisplay> , IGESData_LabelDisplayEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESDraw_LabelDisplay::*)( const opencascade::handle<IGESDraw_HArray1OfViewKindEntity> & , const opencascade::handle<TColgp_HArray1OfXYZ> & , const opencascade::handle<IGESDimen_HArray1OfLeaderArrow> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<IGESData_HArray1OfIGESEntity> & ) ) static_cast<void (IGESDraw_LabelDisplay::*)( const opencascade::handle<IGESDraw_HArray1OfViewKindEntity> & , const opencascade::handle<TColgp_HArray1OfXYZ> & , const opencascade::handle<IGESDimen_HArray1OfLeaderArrow> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<IGESData_HArray1OfIGESEntity> & ) >(&IGESDraw_LabelDisplay::Init),
R"#(This method is used to set the fields of the class LabelDisplay - allViews : Pointers to View Entities - allTextLocations : Coordinates of text locations in the views - allLeaderEntities : Pointers to Leader Entities in the views - allLabelLevels : Entity label level numbers in the views - allDisplayedEntities : Pointers to the entities being displayed raises exception if Lengths of allViews, allTextLocations, allLeaderEntities, allLabelLevels and allDisplayedEntities are not same.)#" , py::arg("allViews"), py::arg("allTextLocations"), py::arg("allLeaderEntities"), py::arg("allLabelLevels"), py::arg("allDisplayedEntities")
)
.def("NbLabels",
(Standard_Integer (IGESDraw_LabelDisplay::*)() const) static_cast<Standard_Integer (IGESDraw_LabelDisplay::*)() const>(&IGESDraw_LabelDisplay::NbLabels),
R"#(returns the number of label placements in <me>)#"
)
.def("ViewItem",
(opencascade::handle<IGESData_ViewKindEntity> (IGESDraw_LabelDisplay::*)( const Standard_Integer ) const) static_cast<opencascade::handle<IGESData_ViewKindEntity> (IGESDraw_LabelDisplay::*)( const Standard_Integer ) const>(&IGESDraw_LabelDisplay::ViewItem),
R"#(returns the View entity indicated by ViewIndex raises an exception if ViewIndex <= 0 or ViewIndex > NbLabels().)#" , py::arg("ViewIndex")
)
.def("TextLocation",
(gp_Pnt (IGESDraw_LabelDisplay::*)( const Standard_Integer ) const) static_cast<gp_Pnt (IGESDraw_LabelDisplay::*)( const Standard_Integer ) const>(&IGESDraw_LabelDisplay::TextLocation),
R"#(returns the 3d-Point coordinates of the text location, in the view indicated by ViewIndex raises an exception if ViewIndex <= 0 or ViewIndex > NbLabels().)#" , py::arg("ViewIndex")
)
.def("LeaderEntity",
(opencascade::handle<IGESDimen_LeaderArrow> (IGESDraw_LabelDisplay::*)( const Standard_Integer ) const) static_cast<opencascade::handle<IGESDimen_LeaderArrow> (IGESDraw_LabelDisplay::*)( const Standard_Integer ) const>(&IGESDraw_LabelDisplay::LeaderEntity),
R"#(returns the Leader entity in the view indicated by ViewIndex raises an exception if ViewIndex <= 0 or ViewIndex > NbLabels().)#" , py::arg("ViewIndex")
)
.def("LabelLevel",
(Standard_Integer (IGESDraw_LabelDisplay::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IGESDraw_LabelDisplay::*)( const Standard_Integer ) const>(&IGESDraw_LabelDisplay::LabelLevel),
R"#(returns the Entity label level number in the view indicated by ViewIndex raises an exception if ViewIndex <= 0 or ViewIndex > NbLabels().)#" , py::arg("ViewIndex")
)
.def("DisplayedEntity",
(opencascade::handle<IGESData_IGESEntity> (IGESDraw_LabelDisplay::*)( const Standard_Integer ) const) static_cast<opencascade::handle<IGESData_IGESEntity> (IGESDraw_LabelDisplay::*)( const Standard_Integer ) const>(&IGESDraw_LabelDisplay::DisplayedEntity),
R"#(returns the entity indicated by EntityIndex raises an exception if EntityIndex <= 0 or EntityIndex > NbLabels().)#" , py::arg("EntityIndex")
)
.def("TransformedTextLocation",
(gp_Pnt (IGESDraw_LabelDisplay::*)( const Standard_Integer ) const) static_cast<gp_Pnt (IGESDraw_LabelDisplay::*)( const Standard_Integer ) const>(&IGESDraw_LabelDisplay::TransformedTextLocation),
R"#(returns the transformed 3d-Point coordinates of the text location, in the view indicated by ViewIndex raises an exception if ViewIndex <= 0 or ViewIndex > NbLabels().)#" , py::arg("ViewIndex")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDraw_LabelDisplay::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDraw_LabelDisplay::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> & (IGESDraw_LabelDisplay::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDraw_LabelDisplay::*)() const>(&IGESDraw_LabelDisplay::DynamicType),
R"#(None)#"
)
;
// Class IGESDraw_NetworkSubfigure from ./opencascade/IGESDraw_NetworkSubfigure.hxx
klass = m.attr("IGESDraw_NetworkSubfigure");
// nested enums
static_cast<py::class_<IGESDraw_NetworkSubfigure ,opencascade::handle<IGESDraw_NetworkSubfigure> , IGESData_IGESEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESDraw_NetworkSubfigure::*)( const opencascade::handle<IGESDraw_NetworkSubfigureDef> & , const gp_XYZ & , const gp_XYZ & , const Standard_Integer , const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<IGESGraph_TextDisplayTemplate> & , const opencascade::handle<IGESDraw_HArray1OfConnectPoint> & ) ) static_cast<void (IGESDraw_NetworkSubfigure::*)( const opencascade::handle<IGESDraw_NetworkSubfigureDef> & , const gp_XYZ & , const gp_XYZ & , const Standard_Integer , const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<IGESGraph_TextDisplayTemplate> & , const opencascade::handle<IGESDraw_HArray1OfConnectPoint> & ) >(&IGESDraw_NetworkSubfigure::Init),
R"#(This method is used to set the fields of the class NetworkSubfigure - aDefinition : Network Subfigure Definition Entity - aTranslation : Translation data relative to the model space or the definition space - aScaleFactor : Scale factors in the definition space - aTypeFlag : Type flag - aDesignator : Primary reference designator - aTemplate : Primary reference designator Text display Template Entity - allConnectPoints : Associated Connect Point Entities)#" , py::arg("aDefinition"), py::arg("aTranslation"), py::arg("aScaleFactor"), py::arg("aTypeFlag"), py::arg("aDesignator"), py::arg("aTemplate"), py::arg("allConnectPoints")
)
.def("SubfigureDefinition",
(opencascade::handle<IGESDraw_NetworkSubfigureDef> (IGESDraw_NetworkSubfigure::*)() const) static_cast<opencascade::handle<IGESDraw_NetworkSubfigureDef> (IGESDraw_NetworkSubfigure::*)() const>(&IGESDraw_NetworkSubfigure::SubfigureDefinition),
R"#(returns Network Subfigure Definition Entity specified by this entity)#"
)
.def("Translation",
(gp_XYZ (IGESDraw_NetworkSubfigure::*)() const) static_cast<gp_XYZ (IGESDraw_NetworkSubfigure::*)() const>(&IGESDraw_NetworkSubfigure::Translation),
R"#(returns Translation Data relative to either model space or to the definition space of a referring entity)#"
)
.def("TransformedTranslation",
(gp_XYZ (IGESDraw_NetworkSubfigure::*)() const) static_cast<gp_XYZ (IGESDraw_NetworkSubfigure::*)() const>(&IGESDraw_NetworkSubfigure::TransformedTranslation),
R"#(returns the Transformed Translation Data relative to either model space or to the definition space of a referring entity)#"
)
.def("ScaleFactors",
(gp_XYZ (IGESDraw_NetworkSubfigure::*)() const) static_cast<gp_XYZ (IGESDraw_NetworkSubfigure::*)() const>(&IGESDraw_NetworkSubfigure::ScaleFactors),
R"#(returns Scale factor in definition space(x, y, z axes))#"
)
.def("TypeFlag",
(Standard_Integer (IGESDraw_NetworkSubfigure::*)() const) static_cast<Standard_Integer (IGESDraw_NetworkSubfigure::*)() const>(&IGESDraw_NetworkSubfigure::TypeFlag),
R"#(returns Type Flag which implements the distinction between Logical design and Physical design data,and is required if both are present. Type Flag = 0 : Not specified (default) = 1 : Logical = 2 : Physical)#"
)
.def("ReferenceDesignator",
(opencascade::handle<TCollection_HAsciiString> (IGESDraw_NetworkSubfigure::*)() const) static_cast<opencascade::handle<TCollection_HAsciiString> (IGESDraw_NetworkSubfigure::*)() const>(&IGESDraw_NetworkSubfigure::ReferenceDesignator),
R"#(returns the primary reference designator)#"
)
.def("HasDesignatorTemplate",
(Standard_Boolean (IGESDraw_NetworkSubfigure::*)() const) static_cast<Standard_Boolean (IGESDraw_NetworkSubfigure::*)() const>(&IGESDraw_NetworkSubfigure::HasDesignatorTemplate),
R"#(returns True if Text Display Template Entity is specified, else False)#"
)
.def("DesignatorTemplate",
(opencascade::handle<IGESGraph_TextDisplayTemplate> (IGESDraw_NetworkSubfigure::*)() const) static_cast<opencascade::handle<IGESGraph_TextDisplayTemplate> (IGESDraw_NetworkSubfigure::*)() const>(&IGESDraw_NetworkSubfigure::DesignatorTemplate),
R"#(returns primary reference designator Text Display Template Entity, or null. If null, no Text Display Template Entity specified)#"
)
.def("NbConnectPoints",
(Standard_Integer (IGESDraw_NetworkSubfigure::*)() const) static_cast<Standard_Integer (IGESDraw_NetworkSubfigure::*)() const>(&IGESDraw_NetworkSubfigure::NbConnectPoints),
R"#(returns the number of associated Connect Point Entities)#"
)
.def("ConnectPoint",
(opencascade::handle<IGESDraw_ConnectPoint> (IGESDraw_NetworkSubfigure::*)( const Standard_Integer ) const) static_cast<opencascade::handle<IGESDraw_ConnectPoint> (IGESDraw_NetworkSubfigure::*)( const Standard_Integer ) const>(&IGESDraw_NetworkSubfigure::ConnectPoint),
R"#(returns the Index'th associated Connect point Entity raises exception if Index <= 0 or Index > NbConnectPoints())#" , py::arg("Index")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDraw_NetworkSubfigure::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDraw_NetworkSubfigure::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> & (IGESDraw_NetworkSubfigure::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDraw_NetworkSubfigure::*)() const>(&IGESDraw_NetworkSubfigure::DynamicType),
R"#(None)#"
)
;
// Class IGESDraw_NetworkSubfigureDef from ./opencascade/IGESDraw_NetworkSubfigureDef.hxx
klass = m.attr("IGESDraw_NetworkSubfigureDef");
// nested enums
static_cast<py::class_<IGESDraw_NetworkSubfigureDef ,opencascade::handle<IGESDraw_NetworkSubfigureDef> , IGESData_IGESEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESDraw_NetworkSubfigureDef::*)( const Standard_Integer , const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<IGESData_HArray1OfIGESEntity> & , const Standard_Integer , const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<IGESGraph_TextDisplayTemplate> & , const opencascade::handle<IGESDraw_HArray1OfConnectPoint> & ) ) static_cast<void (IGESDraw_NetworkSubfigureDef::*)( const Standard_Integer , const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<IGESData_HArray1OfIGESEntity> & , const Standard_Integer , const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<IGESGraph_TextDisplayTemplate> & , const opencascade::handle<IGESDraw_HArray1OfConnectPoint> & ) >(&IGESDraw_NetworkSubfigureDef::Init),
R"#(This method is used to set fields of the class NetworkSubfigureDef - aDepth : Depth of Subfigure (indicating the amount of nesting) - aName : Subfigure Name - allEntities : Associated subfigures Entities exclusive of primary reference designator and Control Points. - aTypeFlag : Type flag determines which Entity belongs in which design (Logical design or Physical design) - aDesignator : Designator HAsciiString and its Template - allPointEntities : Associated Connect Point Entities)#" , py::arg("aDepth"), py::arg("aName"), py::arg("allEntities"), py::arg("aTypeFlag"), py::arg("aDesignator"), py::arg("aTemplate"), py::arg("allPointEntities")
)
.def("Depth",
(Standard_Integer (IGESDraw_NetworkSubfigureDef::*)() const) static_cast<Standard_Integer (IGESDraw_NetworkSubfigureDef::*)() const>(&IGESDraw_NetworkSubfigureDef::Depth),
R"#(returns Depth of Subfigure(indication the amount of nesting) Note : The Depth is inclusive of both Network Subfigure Definition Entity and the Ordinary Subfigure Definition Entity. Thus, the two may be nested.)#"
)
.def("Name",
(opencascade::handle<TCollection_HAsciiString> (IGESDraw_NetworkSubfigureDef::*)() const) static_cast<opencascade::handle<TCollection_HAsciiString> (IGESDraw_NetworkSubfigureDef::*)() const>(&IGESDraw_NetworkSubfigureDef::Name),
R"#(returns the Subfigure Name)#"
)
.def("NbEntities",
(Standard_Integer (IGESDraw_NetworkSubfigureDef::*)() const) static_cast<Standard_Integer (IGESDraw_NetworkSubfigureDef::*)() const>(&IGESDraw_NetworkSubfigureDef::NbEntities),
R"#(returns Number of Associated(child) entries in subfigure exclusive of primary reference designator and Control Points)#"
)
.def("Entity",
(opencascade::handle<IGESData_IGESEntity> (IGESDraw_NetworkSubfigureDef::*)( const Standard_Integer ) const) static_cast<opencascade::handle<IGESData_IGESEntity> (IGESDraw_NetworkSubfigureDef::*)( const Standard_Integer ) const>(&IGESDraw_NetworkSubfigureDef::Entity),
R"#(returns the Index'th IGESEntity in subfigure exclusive of primary reference designator and Control Points raises exception if Index <=0 or Index > NbEntities())#" , py::arg("Index")
)
.def("TypeFlag",
(Standard_Integer (IGESDraw_NetworkSubfigureDef::*)() const) static_cast<Standard_Integer (IGESDraw_NetworkSubfigureDef::*)() const>(&IGESDraw_NetworkSubfigureDef::TypeFlag),
R"#(return value = 0 : Not Specified = 1 : Logical design = 2 : Physical design)#"
)
.def("Designator",
(opencascade::handle<TCollection_HAsciiString> (IGESDraw_NetworkSubfigureDef::*)() const) static_cast<opencascade::handle<TCollection_HAsciiString> (IGESDraw_NetworkSubfigureDef::*)() const>(&IGESDraw_NetworkSubfigureDef::Designator),
R"#(returns Primary Reference Designator)#"
)
.def("HasDesignatorTemplate",
(Standard_Boolean (IGESDraw_NetworkSubfigureDef::*)() const) static_cast<Standard_Boolean (IGESDraw_NetworkSubfigureDef::*)() const>(&IGESDraw_NetworkSubfigureDef::HasDesignatorTemplate),
R"#(returns True if Text Display Template is specified for primary designator else returns False)#"
)
.def("DesignatorTemplate",
(opencascade::handle<IGESGraph_TextDisplayTemplate> (IGESDraw_NetworkSubfigureDef::*)() const) static_cast<opencascade::handle<IGESGraph_TextDisplayTemplate> (IGESDraw_NetworkSubfigureDef::*)() const>(&IGESDraw_NetworkSubfigureDef::DesignatorTemplate),
R"#(if Text Display Template specified then return TextDisplayTemplate else return NULL Handle)#"
)
.def("NbPointEntities",
(Standard_Integer (IGESDraw_NetworkSubfigureDef::*)() const) static_cast<Standard_Integer (IGESDraw_NetworkSubfigureDef::*)() const>(&IGESDraw_NetworkSubfigureDef::NbPointEntities),
R"#(returns the Number Of Associated(child) Connect Point Entities)#"
)
.def("HasPointEntity",
(Standard_Boolean (IGESDraw_NetworkSubfigureDef::*)( const Standard_Integer ) const) static_cast<Standard_Boolean (IGESDraw_NetworkSubfigureDef::*)( const Standard_Integer ) const>(&IGESDraw_NetworkSubfigureDef::HasPointEntity),
R"#(returns True is Index'th Associated Connect Point Entity is present else returns False raises exception if Index is out of bound)#" , py::arg("Index")
)
.def("PointEntity",
(opencascade::handle<IGESDraw_ConnectPoint> (IGESDraw_NetworkSubfigureDef::*)( const Standard_Integer ) const) static_cast<opencascade::handle<IGESDraw_ConnectPoint> (IGESDraw_NetworkSubfigureDef::*)( const Standard_Integer ) const>(&IGESDraw_NetworkSubfigureDef::PointEntity),
R"#(returns the Index'th Associated Connect Point Entity raises exception if Index <= 0 or Index > NbPointEntities())#" , py::arg("Index")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDraw_NetworkSubfigureDef::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDraw_NetworkSubfigureDef::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> & (IGESDraw_NetworkSubfigureDef::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDraw_NetworkSubfigureDef::*)() const>(&IGESDraw_NetworkSubfigureDef::DynamicType),
R"#(None)#"
)
;
// Class IGESDraw_PerspectiveView from ./opencascade/IGESDraw_PerspectiveView.hxx
klass = m.attr("IGESDraw_PerspectiveView");
// nested enums
static_cast<py::class_<IGESDraw_PerspectiveView ,opencascade::handle<IGESDraw_PerspectiveView> , IGESData_ViewKindEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESDraw_PerspectiveView::*)( const Standard_Integer , const Standard_Real , const gp_XYZ & , const gp_XYZ & , const gp_XYZ & , const gp_XYZ & , const Standard_Real , const gp_XY & , const gp_XY & , const Standard_Integer , const Standard_Real , const Standard_Real ) ) static_cast<void (IGESDraw_PerspectiveView::*)( const Standard_Integer , const Standard_Real , const gp_XYZ & , const gp_XYZ & , const gp_XYZ & , const gp_XYZ & , const Standard_Real , const gp_XY & , const gp_XY & , const Standard_Integer , const Standard_Real , const Standard_Real ) >(&IGESDraw_PerspectiveView::Init),
R"#(This method is used to set the fields of the class PerspectiveView - aViewNumber : The desired view - aScaleFactor : Scale factor - aViewNormalVector : View plane normal vector (model space) - aViewReferencePoint : View reference point (model space) - aCenterOfProjection : Center Of Projection (model space) - aViewUpVector : View up vector (model space) - aViewPlaneDistance : View plane distance (model space) - aTopLeft : Top-left point of clipping window - aBottomRight : Bottom-right point of clipping window - aDepthClip : Depth clipping indicator - aBackPlaneDistance : Distance of back clipping plane - aFrontPlaneDistance : Distance of front clipping plane)#" , py::arg("aViewNumber"), py::arg("aScaleFactor"), py::arg("aViewNormalVector"), py::arg("aViewReferencePoint"), py::arg("aCenterOfProjection"), py::arg("aViewUpVector"), py::arg("aViewPlaneDistance"), py::arg("aTopLeft"), py::arg("aBottomRight"), py::arg("aDepthClip"), py::arg("aBackPlaneDistance"), py::arg("aFrontPlaneDistance")
)
.def("IsSingle",
(Standard_Boolean (IGESDraw_PerspectiveView::*)() const) static_cast<Standard_Boolean (IGESDraw_PerspectiveView::*)() const>(&IGESDraw_PerspectiveView::IsSingle),
R"#(Returns True (for a single view))#"
)
.def("NbViews",
(Standard_Integer (IGESDraw_PerspectiveView::*)() const) static_cast<Standard_Integer (IGESDraw_PerspectiveView::*)() const>(&IGESDraw_PerspectiveView::NbViews),
R"#(Returns 1 (single view))#"
)
.def("ViewItem",
(opencascade::handle<IGESData_ViewKindEntity> (IGESDraw_PerspectiveView::*)( const Standard_Integer ) const) static_cast<opencascade::handle<IGESData_ViewKindEntity> (IGESDraw_PerspectiveView::*)( const Standard_Integer ) const>(&IGESDraw_PerspectiveView::ViewItem),
R"#(For a single view, returns <me> whatever <num>)#" , py::arg("num")
)
.def("ViewNumber",
(Standard_Integer (IGESDraw_PerspectiveView::*)() const) static_cast<Standard_Integer (IGESDraw_PerspectiveView::*)() const>(&IGESDraw_PerspectiveView::ViewNumber),
R"#(returns the view number associated with <me>)#"
)
.def("ScaleFactor",
(Standard_Real (IGESDraw_PerspectiveView::*)() const) static_cast<Standard_Real (IGESDraw_PerspectiveView::*)() const>(&IGESDraw_PerspectiveView::ScaleFactor),
R"#(returns the scale factor associated with <me>)#"
)
.def("ViewNormalVector",
(gp_Vec (IGESDraw_PerspectiveView::*)() const) static_cast<gp_Vec (IGESDraw_PerspectiveView::*)() const>(&IGESDraw_PerspectiveView::ViewNormalVector),
R"#(returns the View plane normal vector (model space))#"
)
.def("ViewReferencePoint",
(gp_Pnt (IGESDraw_PerspectiveView::*)() const) static_cast<gp_Pnt (IGESDraw_PerspectiveView::*)() const>(&IGESDraw_PerspectiveView::ViewReferencePoint),
R"#(returns the View reference point (model space))#"
)
.def("CenterOfProjection",
(gp_Pnt (IGESDraw_PerspectiveView::*)() const) static_cast<gp_Pnt (IGESDraw_PerspectiveView::*)() const>(&IGESDraw_PerspectiveView::CenterOfProjection),
R"#(returns the Center Of Projection (model space))#"
)
.def("ViewUpVector",
(gp_Vec (IGESDraw_PerspectiveView::*)() const) static_cast<gp_Vec (IGESDraw_PerspectiveView::*)() const>(&IGESDraw_PerspectiveView::ViewUpVector),
R"#(returns the View up vector (model space))#"
)
.def("ViewPlaneDistance",
(Standard_Real (IGESDraw_PerspectiveView::*)() const) static_cast<Standard_Real (IGESDraw_PerspectiveView::*)() const>(&IGESDraw_PerspectiveView::ViewPlaneDistance),
R"#(returns the View plane distance (model space))#"
)
.def("TopLeft",
(gp_Pnt2d (IGESDraw_PerspectiveView::*)() const) static_cast<gp_Pnt2d (IGESDraw_PerspectiveView::*)() const>(&IGESDraw_PerspectiveView::TopLeft),
R"#(returns the top left point of the clipping window)#"
)
.def("BottomRight",
(gp_Pnt2d (IGESDraw_PerspectiveView::*)() const) static_cast<gp_Pnt2d (IGESDraw_PerspectiveView::*)() const>(&IGESDraw_PerspectiveView::BottomRight),
R"#(returns the bottom right point of the clipping window)#"
)
.def("DepthClip",
(Standard_Integer (IGESDraw_PerspectiveView::*)() const) static_cast<Standard_Integer (IGESDraw_PerspectiveView::*)() const>(&IGESDraw_PerspectiveView::DepthClip),
R"#(returns the Depth clipping indicator 0 = No depth clipping 1 = Back clipping plane ON 2 = Front clipping plane ON 3 = Back and front clipping planes ON)#"
)
.def("BackPlaneDistance",
(Standard_Real (IGESDraw_PerspectiveView::*)() const) static_cast<Standard_Real (IGESDraw_PerspectiveView::*)() const>(&IGESDraw_PerspectiveView::BackPlaneDistance),
R"#(returns the View coordinate denoting the location of the back clipping plane)#"
)
.def("FrontPlaneDistance",
(Standard_Real (IGESDraw_PerspectiveView::*)() const) static_cast<Standard_Real (IGESDraw_PerspectiveView::*)() const>(&IGESDraw_PerspectiveView::FrontPlaneDistance),
R"#(returns the View coordinate denoting the location of the front clipping plane)#"
)
.def("ViewMatrix",
(opencascade::handle<IGESData_TransfEntity> (IGESDraw_PerspectiveView::*)() const) static_cast<opencascade::handle<IGESData_TransfEntity> (IGESDraw_PerspectiveView::*)() const>(&IGESDraw_PerspectiveView::ViewMatrix),
R"#(returns the Transformation Matrix)#"
)
.def("ModelToView",
(gp_XYZ (IGESDraw_PerspectiveView::*)( const gp_XYZ & ) const) static_cast<gp_XYZ (IGESDraw_PerspectiveView::*)( const gp_XYZ & ) const>(&IGESDraw_PerspectiveView::ModelToView),
R"#(returns XYX from the Model space to the View space by applying the View Matrix)#" , py::arg("coords")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDraw_PerspectiveView::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDraw_PerspectiveView::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> & (IGESDraw_PerspectiveView::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDraw_PerspectiveView::*)() const>(&IGESDraw_PerspectiveView::DynamicType),
R"#(None)#"
)
;
// Class IGESDraw_Planar from ./opencascade/IGESDraw_Planar.hxx
klass = m.attr("IGESDraw_Planar");
// nested enums
static_cast<py::class_<IGESDraw_Planar ,opencascade::handle<IGESDraw_Planar> , IGESData_IGESEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESDraw_Planar::*)( const Standard_Integer , const opencascade::handle<IGESGeom_TransformationMatrix> & , const opencascade::handle<IGESData_HArray1OfIGESEntity> & ) ) static_cast<void (IGESDraw_Planar::*)( const Standard_Integer , const opencascade::handle<IGESGeom_TransformationMatrix> & , const opencascade::handle<IGESData_HArray1OfIGESEntity> & ) >(&IGESDraw_Planar::Init),
R"#(This method is used to set the fields of the class Planar - nbMats : Number of Transformation matrices - aTransformationMatrix : Pointer to the Transformation matrix - allEntities : Pointers to the entities specified)#" , py::arg("nbMats"), py::arg("aTransformationMatrix"), py::arg("allEntities")
)
.def("NbMatrices",
(Standard_Integer (IGESDraw_Planar::*)() const) static_cast<Standard_Integer (IGESDraw_Planar::*)() const>(&IGESDraw_Planar::NbMatrices),
R"#(returns the number of Transformation matrices in <me>)#"
)
.def("NbEntities",
(Standard_Integer (IGESDraw_Planar::*)() const) static_cast<Standard_Integer (IGESDraw_Planar::*)() const>(&IGESDraw_Planar::NbEntities),
R"#(returns the number of Entities in the plane pointed to by this associativity)#"
)
.def("IsIdentityMatrix",
(Standard_Boolean (IGESDraw_Planar::*)() const) static_cast<Standard_Boolean (IGESDraw_Planar::*)() const>(&IGESDraw_Planar::IsIdentityMatrix),
R"#(returns True if TransformationMatrix is Identity Matrix, i.e:- No Matrix defined.)#"
)
.def("TransformMatrix",
(opencascade::handle<IGESGeom_TransformationMatrix> (IGESDraw_Planar::*)() const) static_cast<opencascade::handle<IGESGeom_TransformationMatrix> (IGESDraw_Planar::*)() const>(&IGESDraw_Planar::TransformMatrix),
R"#(returns the Transformation matrix moving data from the XY plane into space or zero)#"
)
.def("Entity",
(opencascade::handle<IGESData_IGESEntity> (IGESDraw_Planar::*)( const Standard_Integer ) const) static_cast<opencascade::handle<IGESData_IGESEntity> (IGESDraw_Planar::*)( const Standard_Integer ) const>(&IGESDraw_Planar::Entity),
R"#(returns the Entity on the specified plane, indicated by EntityIndex raises an exception if EntityIndex <= 0 or EntityIndex > NbEntities())#" , py::arg("EntityIndex")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDraw_Planar::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDraw_Planar::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> & (IGESDraw_Planar::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDraw_Planar::*)() const>(&IGESDraw_Planar::DynamicType),
R"#(None)#"
)
;
// Class IGESDraw_Protocol from ./opencascade/IGESDraw_Protocol.hxx
klass = m.attr("IGESDraw_Protocol");
// nested enums
static_cast<py::class_<IGESDraw_Protocol ,opencascade::handle<IGESDraw_Protocol> , IGESData_Protocol >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("NbResources",
(Standard_Integer (IGESDraw_Protocol::*)() const) static_cast<Standard_Integer (IGESDraw_Protocol::*)() const>(&IGESDraw_Protocol::NbResources),
R"#(Gives the count of Resource Protocol. Here, one (Protocol from IGESDimen))#"
)
.def("Resource",
(opencascade::handle<Interface_Protocol> (IGESDraw_Protocol::*)( const Standard_Integer ) const) static_cast<opencascade::handle<Interface_Protocol> (IGESDraw_Protocol::*)( const Standard_Integer ) const>(&IGESDraw_Protocol::Resource),
R"#(Returns a Resource, given a rank.)#" , py::arg("num")
)
.def("TypeNumber",
(Standard_Integer (IGESDraw_Protocol::*)( const opencascade::handle<Standard_Type> & ) const) static_cast<Standard_Integer (IGESDraw_Protocol::*)( const opencascade::handle<Standard_Type> & ) const>(&IGESDraw_Protocol::TypeNumber),
R"#(Returns a Case Number, specific of each recognized Type This Case Number is then used in Libraries : the various Modules attached to this class of Protocol must use them in accordance (for a given value of TypeNumber, they must consider the same Type as the Protocol defines))#" , py::arg("atype")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDraw_Protocol::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDraw_Protocol::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> & (IGESDraw_Protocol::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDraw_Protocol::*)() const>(&IGESDraw_Protocol::DynamicType),
R"#(None)#"
)
;
// Class IGESDraw_ReadWriteModule from ./opencascade/IGESDraw_ReadWriteModule.hxx
klass = m.attr("IGESDraw_ReadWriteModule");
// nested enums
static_cast<py::class_<IGESDraw_ReadWriteModule ,opencascade::handle<IGESDraw_ReadWriteModule> , IGESData_ReadWriteModule >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("CaseIGES",
(Standard_Integer (IGESDraw_ReadWriteModule::*)( const Standard_Integer , const Standard_Integer ) const) static_cast<Standard_Integer (IGESDraw_ReadWriteModule::*)( const Standard_Integer , const Standard_Integer ) const>(&IGESDraw_ReadWriteModule::CaseIGES),
R"#(Defines Case Numbers for Entities of IGESDraw)#" , py::arg("typenum"), py::arg("formnum")
)
.def("ReadOwnParams",
(void (IGESDraw_ReadWriteModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESDraw_ReadWriteModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESDraw_ReadWriteModule::ReadOwnParams),
R"#(Reads own parameters from file for an Entity of IGESDraw)#" , py::arg("CN"), py::arg("ent"), py::arg("IR"), py::arg("PR")
)
.def("WriteOwnParams",
(void (IGESDraw_ReadWriteModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , IGESData_IGESWriter & ) const) static_cast<void (IGESDraw_ReadWriteModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , IGESData_IGESWriter & ) const>(&IGESDraw_ReadWriteModule::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("CN"), py::arg("ent"), py::arg("IW")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDraw_ReadWriteModule::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDraw_ReadWriteModule::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> & (IGESDraw_ReadWriteModule::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDraw_ReadWriteModule::*)() const>(&IGESDraw_ReadWriteModule::DynamicType),
R"#(None)#"
)
;
// Class IGESDraw_RectArraySubfigure from ./opencascade/IGESDraw_RectArraySubfigure.hxx
klass = m.attr("IGESDraw_RectArraySubfigure");
// nested enums
static_cast<py::class_<IGESDraw_RectArraySubfigure ,opencascade::handle<IGESDraw_RectArraySubfigure> , IGESData_IGESEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESDraw_RectArraySubfigure::*)( const opencascade::handle<IGESData_IGESEntity> & , const Standard_Real , const gp_XYZ & , const Standard_Integer , const Standard_Integer , const Standard_Real , const Standard_Real , const Standard_Real , const Standard_Integer , const opencascade::handle<TColStd_HArray1OfInteger> & ) ) static_cast<void (IGESDraw_RectArraySubfigure::*)( const opencascade::handle<IGESData_IGESEntity> & , const Standard_Real , const gp_XYZ & , const Standard_Integer , const Standard_Integer , const Standard_Real , const Standard_Real , const Standard_Real , const Standard_Integer , const opencascade::handle<TColStd_HArray1OfInteger> & ) >(&IGESDraw_RectArraySubfigure::Init),
R"#(This method is used to set the fields of the class RectArraySubfigure - aBase : a base entity which is replicated - aScale : Scale Factor - aCorner : lower left hand corner for the entire array - nbCols : Number of columns of the array - nbRows : Number of rows of the array - hDisp : Column separations - vtDisp : Row separation - rotationAngle : Rotation angle specified in radians - allDont : DO-DON'T flag to control which portion to display - allNumPos : List of positions to be or not to be displayed)#" , py::arg("aBase"), py::arg("aScale"), py::arg("aCorner"), py::arg("nbCols"), py::arg("nbRows"), py::arg("hDisp"), py::arg("vtDisp"), py::arg("rotationAngle"), py::arg("doDont"), py::arg("allNumPos")
)
.def("BaseEntity",
(opencascade::handle<IGESData_IGESEntity> (IGESDraw_RectArraySubfigure::*)() const) static_cast<opencascade::handle<IGESData_IGESEntity> (IGESDraw_RectArraySubfigure::*)() const>(&IGESDraw_RectArraySubfigure::BaseEntity),
R"#(returns the base entity, copies of which are produced)#"
)
.def("ScaleFactor",
(Standard_Real (IGESDraw_RectArraySubfigure::*)() const) static_cast<Standard_Real (IGESDraw_RectArraySubfigure::*)() const>(&IGESDraw_RectArraySubfigure::ScaleFactor),
R"#(returns the scale factor)#"
)
.def("LowerLeftCorner",
(gp_Pnt (IGESDraw_RectArraySubfigure::*)() const) static_cast<gp_Pnt (IGESDraw_RectArraySubfigure::*)() const>(&IGESDraw_RectArraySubfigure::LowerLeftCorner),
R"#(returns coordinates of lower left hand corner for the entire array)#"
)
.def("TransformedLowerLeftCorner",
(gp_Pnt (IGESDraw_RectArraySubfigure::*)() const) static_cast<gp_Pnt (IGESDraw_RectArraySubfigure::*)() const>(&IGESDraw_RectArraySubfigure::TransformedLowerLeftCorner),
R"#(returns Transformed coordinates of lower left corner for the array)#"
)
.def("NbColumns",
(Standard_Integer (IGESDraw_RectArraySubfigure::*)() const) static_cast<Standard_Integer (IGESDraw_RectArraySubfigure::*)() const>(&IGESDraw_RectArraySubfigure::NbColumns),
R"#(returns number of columns in the array)#"
)
.def("NbRows",
(Standard_Integer (IGESDraw_RectArraySubfigure::*)() const) static_cast<Standard_Integer (IGESDraw_RectArraySubfigure::*)() const>(&IGESDraw_RectArraySubfigure::NbRows),
R"#(returns number of rows in the array)#"
)
.def("ColumnSeparation",
(Standard_Real (IGESDraw_RectArraySubfigure::*)() const) static_cast<Standard_Real (IGESDraw_RectArraySubfigure::*)() const>(&IGESDraw_RectArraySubfigure::ColumnSeparation),
R"#(returns horizontal distance between columns)#"
)
.def("RowSeparation",
(Standard_Real (IGESDraw_RectArraySubfigure::*)() const) static_cast<Standard_Real (IGESDraw_RectArraySubfigure::*)() const>(&IGESDraw_RectArraySubfigure::RowSeparation),
R"#(returns vertical distance between rows)#"
)
.def("RotationAngle",
(Standard_Real (IGESDraw_RectArraySubfigure::*)() const) static_cast<Standard_Real (IGESDraw_RectArraySubfigure::*)() const>(&IGESDraw_RectArraySubfigure::RotationAngle),
R"#(returns rotation angle in radians)#"
)
.def("DisplayFlag",
(Standard_Boolean (IGESDraw_RectArraySubfigure::*)() const) static_cast<Standard_Boolean (IGESDraw_RectArraySubfigure::*)() const>(&IGESDraw_RectArraySubfigure::DisplayFlag),
R"#(returns True if (ListCount = 0) i.e., all elements to be displayed)#"
)
.def("ListCount",
(Standard_Integer (IGESDraw_RectArraySubfigure::*)() const) static_cast<Standard_Integer (IGESDraw_RectArraySubfigure::*)() const>(&IGESDraw_RectArraySubfigure::ListCount),
R"#(returns 0 if all replicated entities to be displayed)#"
)
.def("DoDontFlag",
(Standard_Boolean (IGESDraw_RectArraySubfigure::*)() const) static_cast<Standard_Boolean (IGESDraw_RectArraySubfigure::*)() const>(&IGESDraw_RectArraySubfigure::DoDontFlag),
R"#(returns 0 if half or fewer of the elements of the array are defined 1 if half or more of the elements are defined)#"
)
.def("PositionNum",
(Standard_Boolean (IGESDraw_RectArraySubfigure::*)( const Standard_Integer ) const) static_cast<Standard_Boolean (IGESDraw_RectArraySubfigure::*)( const Standard_Integer ) const>(&IGESDraw_RectArraySubfigure::PositionNum),
R"#(returns whether Index is to be processed (DO) or not to be processed(DON'T) if (ListCount = 0) return theDoDontFlag)#" , py::arg("Index")
)
.def("ListPosition",
(Standard_Integer (IGESDraw_RectArraySubfigure::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IGESDraw_RectArraySubfigure::*)( const Standard_Integer ) const>(&IGESDraw_RectArraySubfigure::ListPosition),
R"#(returns the Index'th value position raises exception if Index <= 0 or Index > ListCount())#" , py::arg("Index")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDraw_RectArraySubfigure::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDraw_RectArraySubfigure::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> & (IGESDraw_RectArraySubfigure::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDraw_RectArraySubfigure::*)() const>(&IGESDraw_RectArraySubfigure::DynamicType),
R"#(None)#"
)
;
// Class IGESDraw_SegmentedViewsVisible from ./opencascade/IGESDraw_SegmentedViewsVisible.hxx
klass = m.attr("IGESDraw_SegmentedViewsVisible");
// nested enums
static_cast<py::class_<IGESDraw_SegmentedViewsVisible ,opencascade::handle<IGESDraw_SegmentedViewsVisible> , IGESData_ViewKindEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESDraw_SegmentedViewsVisible::*)( const opencascade::handle<IGESDraw_HArray1OfViewKindEntity> & , const opencascade::handle<TColStd_HArray1OfReal> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<IGESGraph_HArray1OfColor> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<IGESBasic_HArray1OfLineFontEntity> & , const opencascade::handle<TColStd_HArray1OfInteger> & ) ) static_cast<void (IGESDraw_SegmentedViewsVisible::*)( const opencascade::handle<IGESDraw_HArray1OfViewKindEntity> & , const opencascade::handle<TColStd_HArray1OfReal> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<IGESGraph_HArray1OfColor> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<IGESBasic_HArray1OfLineFontEntity> & , const opencascade::handle<TColStd_HArray1OfInteger> & ) >(&IGESDraw_SegmentedViewsVisible::Init),
R"#(This method is used to set the fields of the class SegmentedViewsVisible - allViews : Pointers to View Entities - allBreakpointParameters : Parameters of breakpoints - allDisplayFlags : Display flags - allColorValues : Color Values - allColorDefinitions : Color Definitions - allLineFontValues : LineFont values - allLineFontDefinitions : LineFont Definitions - allLineWeights : Line weights raises exception if Lengths of allViews, allBreakpointParameters, allDisplayFlags, allColorValues, allColorDefinitions, allLineFontValues, allLineFontDefinitions and allLineWeights are not same.)#" , py::arg("allViews"), py::arg("allBreakpointParameters"), py::arg("allDisplayFlags"), py::arg("allColorValues"), py::arg("allColorDefinitions"), py::arg("allLineFontValues"), py::arg("allLineFontDefinitions"), py::arg("allLineWeights")
)
.def("IsSingle",
(Standard_Boolean (IGESDraw_SegmentedViewsVisible::*)() const) static_cast<Standard_Boolean (IGESDraw_SegmentedViewsVisible::*)() const>(&IGESDraw_SegmentedViewsVisible::IsSingle),
R"#(Returns False (for a complex view))#"
)
.def("NbViews",
(Standard_Integer (IGESDraw_SegmentedViewsVisible::*)() const) static_cast<Standard_Integer (IGESDraw_SegmentedViewsVisible::*)() const>(&IGESDraw_SegmentedViewsVisible::NbViews),
R"#(Returns the count of Views referenced by <me> (inherited))#"
)
.def("NbSegmentBlocks",
(Standard_Integer (IGESDraw_SegmentedViewsVisible::*)() const) static_cast<Standard_Integer (IGESDraw_SegmentedViewsVisible::*)() const>(&IGESDraw_SegmentedViewsVisible::NbSegmentBlocks),
R"#(returns the number of view/segment blocks in <me> Similar to NbViews but has a more general significance)#"
)
.def("ViewItem",
(opencascade::handle<IGESData_ViewKindEntity> (IGESDraw_SegmentedViewsVisible::*)( const Standard_Integer ) const) static_cast<opencascade::handle<IGESData_ViewKindEntity> (IGESDraw_SegmentedViewsVisible::*)( const Standard_Integer ) const>(&IGESDraw_SegmentedViewsVisible::ViewItem),
R"#(returns the View entity indicated by ViewIndex raises an exception if ViewIndex <= 0 or ViewIndex > NbSegmentBlocks())#" , py::arg("ViewIndex")
)
.def("BreakpointParameter",
(Standard_Real (IGESDraw_SegmentedViewsVisible::*)( const Standard_Integer ) const) static_cast<Standard_Real (IGESDraw_SegmentedViewsVisible::*)( const Standard_Integer ) const>(&IGESDraw_SegmentedViewsVisible::BreakpointParameter),
R"#(returns the parameter of the breakpoint indicated by BreakpointIndex raises an exception if BreakpointIndex <= 0 or BreakpointIndex > NbSegmentBlocks().)#" , py::arg("BreakpointIndex")
)
.def("DisplayFlag",
(Standard_Integer (IGESDraw_SegmentedViewsVisible::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IGESDraw_SegmentedViewsVisible::*)( const Standard_Integer ) const>(&IGESDraw_SegmentedViewsVisible::DisplayFlag),
R"#(returns the Display flag indicated by FlagIndex raises an exception if FlagIndex <= 0 or FlagIndex > NbSegmentBlocks().)#" , py::arg("FlagIndex")
)
.def("IsColorDefinition",
(Standard_Boolean (IGESDraw_SegmentedViewsVisible::*)( const Standard_Integer ) const) static_cast<Standard_Boolean (IGESDraw_SegmentedViewsVisible::*)( const Standard_Integer ) const>(&IGESDraw_SegmentedViewsVisible::IsColorDefinition),
R"#(returns True if the ColorIndex'th value of the "theColorDefinitions" field of <me> is a pointer raises an exception if ColorIndex <= 0 or ColorIndex > NbSegmentBlocks().)#" , py::arg("ColorIndex")
)
.def("ColorValue",
(Standard_Integer (IGESDraw_SegmentedViewsVisible::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IGESDraw_SegmentedViewsVisible::*)( const Standard_Integer ) const>(&IGESDraw_SegmentedViewsVisible::ColorValue),
R"#(returns the Color value indicated by ColorIndex raises an exception if ColorIndex <= 0 or ColorIndex > NbSegmentBlocks().)#" , py::arg("ColorIndex")
)
.def("ColorDefinition",
(opencascade::handle<IGESGraph_Color> (IGESDraw_SegmentedViewsVisible::*)( const Standard_Integer ) const) static_cast<opencascade::handle<IGESGraph_Color> (IGESDraw_SegmentedViewsVisible::*)( const Standard_Integer ) const>(&IGESDraw_SegmentedViewsVisible::ColorDefinition),
R"#(returns the Color definition entity indicated by ColorIndex raises an exception if ColorIndex <= 0 or ColorIndex > NbSegmentBlocks().)#" , py::arg("ColorIndex")
)
.def("IsFontDefinition",
(Standard_Boolean (IGESDraw_SegmentedViewsVisible::*)( const Standard_Integer ) const) static_cast<Standard_Boolean (IGESDraw_SegmentedViewsVisible::*)( const Standard_Integer ) const>(&IGESDraw_SegmentedViewsVisible::IsFontDefinition),
R"#(returns True if the FontIndex'th value of the "theLineFontDefinitions" field of <me> is a pointer raises an exception if FontIndex <= 0 or FontIndex > NbSegmentBlocks().)#" , py::arg("FontIndex")
)
.def("LineFontValue",
(Standard_Integer (IGESDraw_SegmentedViewsVisible::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IGESDraw_SegmentedViewsVisible::*)( const Standard_Integer ) const>(&IGESDraw_SegmentedViewsVisible::LineFontValue),
R"#(returns the LineFont value indicated by FontIndex raises an exception if FontIndex <= 0 or FontIndex > NbSegmentBlocks().)#" , py::arg("FontIndex")
)
.def("LineFontDefinition",
(opencascade::handle<IGESData_LineFontEntity> (IGESDraw_SegmentedViewsVisible::*)( const Standard_Integer ) const) static_cast<opencascade::handle<IGESData_LineFontEntity> (IGESDraw_SegmentedViewsVisible::*)( const Standard_Integer ) const>(&IGESDraw_SegmentedViewsVisible::LineFontDefinition),
R"#(returns the LineFont definition entity indicated by FontIndex raises an exception if FontIndex <= 0 or FontIndex > NbSegmentBlocks().)#" , py::arg("FontIndex")
)
.def("LineWeightItem",
(Standard_Integer (IGESDraw_SegmentedViewsVisible::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IGESDraw_SegmentedViewsVisible::*)( const Standard_Integer ) const>(&IGESDraw_SegmentedViewsVisible::LineWeightItem),
R"#(returns the LineWeight value indicated by WeightIndex raises an exception if WeightIndex <= 0 or WeightIndex > NbSegmentBlocks().)#" , py::arg("WeightIndex")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDraw_SegmentedViewsVisible::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDraw_SegmentedViewsVisible::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> & (IGESDraw_SegmentedViewsVisible::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDraw_SegmentedViewsVisible::*)() const>(&IGESDraw_SegmentedViewsVisible::DynamicType),
R"#(None)#"
)
;
// Class IGESDraw_SpecificModule from ./opencascade/IGESDraw_SpecificModule.hxx
klass = m.attr("IGESDraw_SpecificModule");
// nested enums
static_cast<py::class_<IGESDraw_SpecificModule ,opencascade::handle<IGESDraw_SpecificModule> , IGESData_SpecificModule >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("OwnDump",
(void (IGESDraw_SpecificModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESDraw_SpecificModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESDraw_SpecificModule::OwnDump),
R"#(Specific Dump (own parameters) for IGESDraw)#" , py::arg("CN"), py::arg("ent"), py::arg("dumper"), py::arg("S"), py::arg("own")
)
.def("OwnCorrect",
(Standard_Boolean (IGESDraw_SpecificModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & ) const) static_cast<Standard_Boolean (IGESDraw_SpecificModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & ) const>(&IGESDraw_SpecificModule::OwnCorrect),
R"#(Performs non-ambiguous Corrections on Entities which support them (Planar))#" , py::arg("CN"), py::arg("ent")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDraw_SpecificModule::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDraw_SpecificModule::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> & (IGESDraw_SpecificModule::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDraw_SpecificModule::*)() const>(&IGESDraw_SpecificModule::DynamicType),
R"#(None)#"
)
;
// Class IGESDraw_ToolCircArraySubfigure from ./opencascade/IGESDraw_ToolCircArraySubfigure.hxx
klass = m.attr("IGESDraw_ToolCircArraySubfigure");
// nested enums
static_cast<py::class_<IGESDraw_ToolCircArraySubfigure , shared_ptr<IGESDraw_ToolCircArraySubfigure> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESDraw_ToolCircArraySubfigure::*)( const opencascade::handle<IGESDraw_CircArraySubfigure> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESDraw_ToolCircArraySubfigure::*)( const opencascade::handle<IGESDraw_CircArraySubfigure> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESDraw_ToolCircArraySubfigure::ReadOwnParams),
R"#(Reads own parameters from file. <PR> gives access to them, <IR> detains parameter types and values)#" , py::arg("ent"), py::arg("IR"), py::arg("PR")
)
.def("WriteOwnParams",
(void (IGESDraw_ToolCircArraySubfigure::*)( const opencascade::handle<IGESDraw_CircArraySubfigure> & , IGESData_IGESWriter & ) const) static_cast<void (IGESDraw_ToolCircArraySubfigure::*)( const opencascade::handle<IGESDraw_CircArraySubfigure> & , IGESData_IGESWriter & ) const>(&IGESDraw_ToolCircArraySubfigure::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESDraw_ToolCircArraySubfigure::*)( const opencascade::handle<IGESDraw_CircArraySubfigure> & , Interface_EntityIterator & ) const) static_cast<void (IGESDraw_ToolCircArraySubfigure::*)( const opencascade::handle<IGESDraw_CircArraySubfigure> & , Interface_EntityIterator & ) const>(&IGESDraw_ToolCircArraySubfigure::OwnShared),
R"#(Lists the Entities shared by a CircArraySubfigure <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("DirChecker",
(IGESData_DirChecker (IGESDraw_ToolCircArraySubfigure::*)( const opencascade::handle<IGESDraw_CircArraySubfigure> & ) const) static_cast<IGESData_DirChecker (IGESDraw_ToolCircArraySubfigure::*)( const opencascade::handle<IGESDraw_CircArraySubfigure> & ) const>(&IGESDraw_ToolCircArraySubfigure::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESDraw_ToolCircArraySubfigure::*)( const opencascade::handle<IGESDraw_CircArraySubfigure> & , const opencascade::handle<IGESDraw_CircArraySubfigure> & , Interface_CopyTool & ) const) static_cast<void (IGESDraw_ToolCircArraySubfigure::*)( const opencascade::handle<IGESDraw_CircArraySubfigure> & , const opencascade::handle<IGESDraw_CircArraySubfigure> & , Interface_CopyTool & ) const>(&IGESDraw_ToolCircArraySubfigure::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESDraw_ToolCircArraySubfigure::*)( const opencascade::handle<IGESDraw_CircArraySubfigure> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESDraw_ToolCircArraySubfigure::*)( const opencascade::handle<IGESDraw_CircArraySubfigure> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESDraw_ToolCircArraySubfigure::OwnDump),
R"#(Dump of Specific Parameters)#" , py::arg("ent"), py::arg("dumper"), py::arg("S"), py::arg("own")
)
// methods using call by reference i.s.o. return
.def("OwnCheck",
[]( IGESDraw_ToolCircArraySubfigure &self , const opencascade::handle<IGESDraw_CircArraySubfigure> & ent,const Interface_ShareTool & shares,Interface_Check& ach ){
opencascade::handle<Interface_Check> ach_ptr; ach_ptr = &ach;
self.OwnCheck(ent,shares,ach_ptr);
if ( ach_ptr.get() != &ach ) copy_if_copy_constructible(ach, *ach_ptr);
return std::make_tuple(); },
R"#(Performs Specific Semantic Check)#" , py::arg("ent"), py::arg("shares"), py::arg("ach")
)
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class IGESDraw_ToolConnectPoint from ./opencascade/IGESDraw_ToolConnectPoint.hxx
klass = m.attr("IGESDraw_ToolConnectPoint");
// nested enums
static_cast<py::class_<IGESDraw_ToolConnectPoint , shared_ptr<IGESDraw_ToolConnectPoint> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESDraw_ToolConnectPoint::*)( const opencascade::handle<IGESDraw_ConnectPoint> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESDraw_ToolConnectPoint::*)( const opencascade::handle<IGESDraw_ConnectPoint> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESDraw_ToolConnectPoint::ReadOwnParams),
R"#(Reads own parameters from file. <PR> gives access to them, <IR> detains parameter types and values)#" , py::arg("ent"), py::arg("IR"), py::arg("PR")
)
.def("WriteOwnParams",
(void (IGESDraw_ToolConnectPoint::*)( const opencascade::handle<IGESDraw_ConnectPoint> & , IGESData_IGESWriter & ) const) static_cast<void (IGESDraw_ToolConnectPoint::*)( const opencascade::handle<IGESDraw_ConnectPoint> & , IGESData_IGESWriter & ) const>(&IGESDraw_ToolConnectPoint::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESDraw_ToolConnectPoint::*)( const opencascade::handle<IGESDraw_ConnectPoint> & , Interface_EntityIterator & ) const) static_cast<void (IGESDraw_ToolConnectPoint::*)( const opencascade::handle<IGESDraw_ConnectPoint> & , Interface_EntityIterator & ) const>(&IGESDraw_ToolConnectPoint::OwnShared),
R"#(Lists the Entities shared by a ConnectPoint <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("DirChecker",
(IGESData_DirChecker (IGESDraw_ToolConnectPoint::*)( const opencascade::handle<IGESDraw_ConnectPoint> & ) const) static_cast<IGESData_DirChecker (IGESDraw_ToolConnectPoint::*)( const opencascade::handle<IGESDraw_ConnectPoint> & ) const>(&IGESDraw_ToolConnectPoint::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESDraw_ToolConnectPoint::*)( const opencascade::handle<IGESDraw_ConnectPoint> & , const opencascade::handle<IGESDraw_ConnectPoint> & , Interface_CopyTool & ) const) static_cast<void (IGESDraw_ToolConnectPoint::*)( const opencascade::handle<IGESDraw_ConnectPoint> & , const opencascade::handle<IGESDraw_ConnectPoint> & , Interface_CopyTool & ) const>(&IGESDraw_ToolConnectPoint::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESDraw_ToolConnectPoint::*)( const opencascade::handle<IGESDraw_ConnectPoint> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESDraw_ToolConnectPoint::*)( const opencascade::handle<IGESDraw_ConnectPoint> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESDraw_ToolConnectPoint::OwnDump),
R"#(Dump of Specific Parameters)#" , py::arg("ent"), py::arg("dumper"), py::arg("S"), py::arg("own")
)
// methods using call by reference i.s.o. return
.def("OwnCheck",
[]( IGESDraw_ToolConnectPoint &self , const opencascade::handle<IGESDraw_ConnectPoint> & ent,const Interface_ShareTool & shares,Interface_Check& ach ){
opencascade::handle<Interface_Check> ach_ptr; ach_ptr = &ach;
self.OwnCheck(ent,shares,ach_ptr);
if ( ach_ptr.get() != &ach ) copy_if_copy_constructible(ach, *ach_ptr);
return std::make_tuple(); },
R"#(Performs Specific Semantic Check)#" , py::arg("ent"), py::arg("shares"), py::arg("ach")
)
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class IGESDraw_ToolDrawing from ./opencascade/IGESDraw_ToolDrawing.hxx
klass = m.attr("IGESDraw_ToolDrawing");
// nested enums
static_cast<py::class_<IGESDraw_ToolDrawing , shared_ptr<IGESDraw_ToolDrawing> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESDraw_ToolDrawing::*)( const opencascade::handle<IGESDraw_Drawing> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESDraw_ToolDrawing::*)( const opencascade::handle<IGESDraw_Drawing> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESDraw_ToolDrawing::ReadOwnParams),
R"#(Reads own parameters from file. <PR> gives access to them, <IR> detains parameter types and values)#" , py::arg("ent"), py::arg("IR"), py::arg("PR")
)
.def("WriteOwnParams",
(void (IGESDraw_ToolDrawing::*)( const opencascade::handle<IGESDraw_Drawing> & , IGESData_IGESWriter & ) const) static_cast<void (IGESDraw_ToolDrawing::*)( const opencascade::handle<IGESDraw_Drawing> & , IGESData_IGESWriter & ) const>(&IGESDraw_ToolDrawing::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESDraw_ToolDrawing::*)( const opencascade::handle<IGESDraw_Drawing> & , Interface_EntityIterator & ) const) static_cast<void (IGESDraw_ToolDrawing::*)( const opencascade::handle<IGESDraw_Drawing> & , Interface_EntityIterator & ) const>(&IGESDraw_ToolDrawing::OwnShared),
R"#(Lists the Entities shared by a Drawing <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("OwnCorrect",
(Standard_Boolean (IGESDraw_ToolDrawing::*)( const opencascade::handle<IGESDraw_Drawing> & ) const) static_cast<Standard_Boolean (IGESDraw_ToolDrawing::*)( const opencascade::handle<IGESDraw_Drawing> & ) const>(&IGESDraw_ToolDrawing::OwnCorrect),
R"#(Sets automatic unambiguous Correction on a Drawing (Null Views are removed from list))#" , py::arg("ent")
)
.def("DirChecker",
(IGESData_DirChecker (IGESDraw_ToolDrawing::*)( const opencascade::handle<IGESDraw_Drawing> & ) const) static_cast<IGESData_DirChecker (IGESDraw_ToolDrawing::*)( const opencascade::handle<IGESDraw_Drawing> & ) const>(&IGESDraw_ToolDrawing::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESDraw_ToolDrawing::*)( const opencascade::handle<IGESDraw_Drawing> & , const opencascade::handle<IGESDraw_Drawing> & , Interface_CopyTool & ) const) static_cast<void (IGESDraw_ToolDrawing::*)( const opencascade::handle<IGESDraw_Drawing> & , const opencascade::handle<IGESDraw_Drawing> & , Interface_CopyTool & ) const>(&IGESDraw_ToolDrawing::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESDraw_ToolDrawing::*)( const opencascade::handle<IGESDraw_Drawing> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESDraw_ToolDrawing::*)( const opencascade::handle<IGESDraw_Drawing> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESDraw_ToolDrawing::OwnDump),
R"#(Dump of Specific Parameters)#" , py::arg("ent"), py::arg("dumper"), py::arg("S"), py::arg("own")
)
// methods using call by reference i.s.o. return
.def("OwnCheck",
[]( IGESDraw_ToolDrawing &self , const opencascade::handle<IGESDraw_Drawing> & ent,const Interface_ShareTool & shares,Interface_Check& ach ){
opencascade::handle<Interface_Check> ach_ptr; ach_ptr = &ach;
self.OwnCheck(ent,shares,ach_ptr);
if ( ach_ptr.get() != &ach ) copy_if_copy_constructible(ach, *ach_ptr);
return std::make_tuple(); },
R"#(Performs Specific Semantic Check)#" , py::arg("ent"), py::arg("shares"), py::arg("ach")
)
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class IGESDraw_ToolDrawingWithRotation from ./opencascade/IGESDraw_ToolDrawingWithRotation.hxx
klass = m.attr("IGESDraw_ToolDrawingWithRotation");
// nested enums
static_cast<py::class_<IGESDraw_ToolDrawingWithRotation , shared_ptr<IGESDraw_ToolDrawingWithRotation> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESDraw_ToolDrawingWithRotation::*)( const opencascade::handle<IGESDraw_DrawingWithRotation> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESDraw_ToolDrawingWithRotation::*)( const opencascade::handle<IGESDraw_DrawingWithRotation> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESDraw_ToolDrawingWithRotation::ReadOwnParams),
R"#(Reads own parameters from file. <PR> gives access to them, <IR> detains parameter types and values)#" , py::arg("ent"), py::arg("IR"), py::arg("PR")
)
.def("WriteOwnParams",
(void (IGESDraw_ToolDrawingWithRotation::*)( const opencascade::handle<IGESDraw_DrawingWithRotation> & , IGESData_IGESWriter & ) const) static_cast<void (IGESDraw_ToolDrawingWithRotation::*)( const opencascade::handle<IGESDraw_DrawingWithRotation> & , IGESData_IGESWriter & ) const>(&IGESDraw_ToolDrawingWithRotation::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESDraw_ToolDrawingWithRotation::*)( const opencascade::handle<IGESDraw_DrawingWithRotation> & , Interface_EntityIterator & ) const) static_cast<void (IGESDraw_ToolDrawingWithRotation::*)( const opencascade::handle<IGESDraw_DrawingWithRotation> & , Interface_EntityIterator & ) const>(&IGESDraw_ToolDrawingWithRotation::OwnShared),
R"#(Lists the Entities shared by a DrawingWithRotation <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("OwnCorrect",
(Standard_Boolean (IGESDraw_ToolDrawingWithRotation::*)( const opencascade::handle<IGESDraw_DrawingWithRotation> & ) const) static_cast<Standard_Boolean (IGESDraw_ToolDrawingWithRotation::*)( const opencascade::handle<IGESDraw_DrawingWithRotation> & ) const>(&IGESDraw_ToolDrawingWithRotation::OwnCorrect),
R"#(Sets automatic unambiguous Correction on a DrawingWithRotation (Null Views are removed from list))#" , py::arg("ent")
)
.def("DirChecker",
(IGESData_DirChecker (IGESDraw_ToolDrawingWithRotation::*)( const opencascade::handle<IGESDraw_DrawingWithRotation> & ) const) static_cast<IGESData_DirChecker (IGESDraw_ToolDrawingWithRotation::*)( const opencascade::handle<IGESDraw_DrawingWithRotation> & ) const>(&IGESDraw_ToolDrawingWithRotation::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESDraw_ToolDrawingWithRotation::*)( const opencascade::handle<IGESDraw_DrawingWithRotation> & , const opencascade::handle<IGESDraw_DrawingWithRotation> & , Interface_CopyTool & ) const) static_cast<void (IGESDraw_ToolDrawingWithRotation::*)( const opencascade::handle<IGESDraw_DrawingWithRotation> & , const opencascade::handle<IGESDraw_DrawingWithRotation> & , Interface_CopyTool & ) const>(&IGESDraw_ToolDrawingWithRotation::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESDraw_ToolDrawingWithRotation::*)( const opencascade::handle<IGESDraw_DrawingWithRotation> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESDraw_ToolDrawingWithRotation::*)( const opencascade::handle<IGESDraw_DrawingWithRotation> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESDraw_ToolDrawingWithRotation::OwnDump),
R"#(Dump of Specific Parameters)#" , py::arg("ent"), py::arg("dumper"), py::arg("S"), py::arg("own")
)
// methods using call by reference i.s.o. return
.def("OwnCheck",
[]( IGESDraw_ToolDrawingWithRotation &self , const opencascade::handle<IGESDraw_DrawingWithRotation> & ent,const Interface_ShareTool & shares,Interface_Check& ach ){
opencascade::handle<Interface_Check> ach_ptr; ach_ptr = &ach;
self.OwnCheck(ent,shares,ach_ptr);
if ( ach_ptr.get() != &ach ) copy_if_copy_constructible(ach, *ach_ptr);
return std::make_tuple(); },
R"#(Performs Specific Semantic Check)#" , py::arg("ent"), py::arg("shares"), py::arg("ach")
)
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class IGESDraw_ToolLabelDisplay from ./opencascade/IGESDraw_ToolLabelDisplay.hxx
klass = m.attr("IGESDraw_ToolLabelDisplay");
// nested enums
static_cast<py::class_<IGESDraw_ToolLabelDisplay , shared_ptr<IGESDraw_ToolLabelDisplay> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESDraw_ToolLabelDisplay::*)( const opencascade::handle<IGESDraw_LabelDisplay> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESDraw_ToolLabelDisplay::*)( const opencascade::handle<IGESDraw_LabelDisplay> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESDraw_ToolLabelDisplay::ReadOwnParams),
R"#(Reads own parameters from file. <PR> gives access to them, <IR> detains parameter types and values)#" , py::arg("ent"), py::arg("IR"), py::arg("PR")
)
.def("WriteOwnParams",
(void (IGESDraw_ToolLabelDisplay::*)( const opencascade::handle<IGESDraw_LabelDisplay> & , IGESData_IGESWriter & ) const) static_cast<void (IGESDraw_ToolLabelDisplay::*)( const opencascade::handle<IGESDraw_LabelDisplay> & , IGESData_IGESWriter & ) const>(&IGESDraw_ToolLabelDisplay::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESDraw_ToolLabelDisplay::*)( const opencascade::handle<IGESDraw_LabelDisplay> & , Interface_EntityIterator & ) const) static_cast<void (IGESDraw_ToolLabelDisplay::*)( const opencascade::handle<IGESDraw_LabelDisplay> & , Interface_EntityIterator & ) const>(&IGESDraw_ToolLabelDisplay::OwnShared),
R"#(Lists the Entities shared by a LabelDisplay <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("DirChecker",
(IGESData_DirChecker (IGESDraw_ToolLabelDisplay::*)( const opencascade::handle<IGESDraw_LabelDisplay> & ) const) static_cast<IGESData_DirChecker (IGESDraw_ToolLabelDisplay::*)( const opencascade::handle<IGESDraw_LabelDisplay> & ) const>(&IGESDraw_ToolLabelDisplay::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESDraw_ToolLabelDisplay::*)( const opencascade::handle<IGESDraw_LabelDisplay> & , const opencascade::handle<IGESDraw_LabelDisplay> & , Interface_CopyTool & ) const) static_cast<void (IGESDraw_ToolLabelDisplay::*)( const opencascade::handle<IGESDraw_LabelDisplay> & , const opencascade::handle<IGESDraw_LabelDisplay> & , Interface_CopyTool & ) const>(&IGESDraw_ToolLabelDisplay::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESDraw_ToolLabelDisplay::*)( const opencascade::handle<IGESDraw_LabelDisplay> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESDraw_ToolLabelDisplay::*)( const opencascade::handle<IGESDraw_LabelDisplay> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESDraw_ToolLabelDisplay::OwnDump),
R"#(Dump of Specific Parameters)#" , py::arg("ent"), py::arg("dumper"), py::arg("S"), py::arg("own")
)
// methods using call by reference i.s.o. return
.def("OwnCheck",
[]( IGESDraw_ToolLabelDisplay &self , const opencascade::handle<IGESDraw_LabelDisplay> & ent,const Interface_ShareTool & shares,Interface_Check& ach ){
opencascade::handle<Interface_Check> ach_ptr; ach_ptr = &ach;
self.OwnCheck(ent,shares,ach_ptr);
if ( ach_ptr.get() != &ach ) copy_if_copy_constructible(ach, *ach_ptr);
return std::make_tuple(); },
R"#(Performs Specific Semantic Check)#" , py::arg("ent"), py::arg("shares"), py::arg("ach")
)
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class IGESDraw_ToolNetworkSubfigure from ./opencascade/IGESDraw_ToolNetworkSubfigure.hxx
klass = m.attr("IGESDraw_ToolNetworkSubfigure");
// nested enums
static_cast<py::class_<IGESDraw_ToolNetworkSubfigure , shared_ptr<IGESDraw_ToolNetworkSubfigure> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESDraw_ToolNetworkSubfigure::*)( const opencascade::handle<IGESDraw_NetworkSubfigure> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESDraw_ToolNetworkSubfigure::*)( const opencascade::handle<IGESDraw_NetworkSubfigure> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESDraw_ToolNetworkSubfigure::ReadOwnParams),
R"#(Reads own parameters from file. <PR> gives access to them, <IR> detains parameter types and values)#" , py::arg("ent"), py::arg("IR"), py::arg("PR")
)
.def("WriteOwnParams",
(void (IGESDraw_ToolNetworkSubfigure::*)( const opencascade::handle<IGESDraw_NetworkSubfigure> & , IGESData_IGESWriter & ) const) static_cast<void (IGESDraw_ToolNetworkSubfigure::*)( const opencascade::handle<IGESDraw_NetworkSubfigure> & , IGESData_IGESWriter & ) const>(&IGESDraw_ToolNetworkSubfigure::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESDraw_ToolNetworkSubfigure::*)( const opencascade::handle<IGESDraw_NetworkSubfigure> & , Interface_EntityIterator & ) const) static_cast<void (IGESDraw_ToolNetworkSubfigure::*)( const opencascade::handle<IGESDraw_NetworkSubfigure> & , Interface_EntityIterator & ) const>(&IGESDraw_ToolNetworkSubfigure::OwnShared),
R"#(Lists the Entities shared by a NetworkSubfigure <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("DirChecker",
(IGESData_DirChecker (IGESDraw_ToolNetworkSubfigure::*)( const opencascade::handle<IGESDraw_NetworkSubfigure> & ) const) static_cast<IGESData_DirChecker (IGESDraw_ToolNetworkSubfigure::*)( const opencascade::handle<IGESDraw_NetworkSubfigure> & ) const>(&IGESDraw_ToolNetworkSubfigure::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESDraw_ToolNetworkSubfigure::*)( const opencascade::handle<IGESDraw_NetworkSubfigure> & , const opencascade::handle<IGESDraw_NetworkSubfigure> & , Interface_CopyTool & ) const) static_cast<void (IGESDraw_ToolNetworkSubfigure::*)( const opencascade::handle<IGESDraw_NetworkSubfigure> & , const opencascade::handle<IGESDraw_NetworkSubfigure> & , Interface_CopyTool & ) const>(&IGESDraw_ToolNetworkSubfigure::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESDraw_ToolNetworkSubfigure::*)( const opencascade::handle<IGESDraw_NetworkSubfigure> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESDraw_ToolNetworkSubfigure::*)( const opencascade::handle<IGESDraw_NetworkSubfigure> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESDraw_ToolNetworkSubfigure::OwnDump),
R"#(Dump of Specific Parameters)#" , py::arg("ent"), py::arg("dumper"), py::arg("S"), py::arg("own")
)
// methods using call by reference i.s.o. return
.def("OwnCheck",
[]( IGESDraw_ToolNetworkSubfigure &self , const opencascade::handle<IGESDraw_NetworkSubfigure> & ent,const Interface_ShareTool & shares,Interface_Check& ach ){
opencascade::handle<Interface_Check> ach_ptr; ach_ptr = &ach;
self.OwnCheck(ent,shares,ach_ptr);
if ( ach_ptr.get() != &ach ) copy_if_copy_constructible(ach, *ach_ptr);
return std::make_tuple(); },
R"#(Performs Specific Semantic Check)#" , py::arg("ent"), py::arg("shares"), py::arg("ach")
)
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class IGESDraw_ToolNetworkSubfigureDef from ./opencascade/IGESDraw_ToolNetworkSubfigureDef.hxx
klass = m.attr("IGESDraw_ToolNetworkSubfigureDef");
// nested enums
static_cast<py::class_<IGESDraw_ToolNetworkSubfigureDef , shared_ptr<IGESDraw_ToolNetworkSubfigureDef> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESDraw_ToolNetworkSubfigureDef::*)( const opencascade::handle<IGESDraw_NetworkSubfigureDef> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESDraw_ToolNetworkSubfigureDef::*)( const opencascade::handle<IGESDraw_NetworkSubfigureDef> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESDraw_ToolNetworkSubfigureDef::ReadOwnParams),
R"#(Reads own parameters from file. <PR> gives access to them, <IR> detains parameter types and values)#" , py::arg("ent"), py::arg("IR"), py::arg("PR")
)
.def("WriteOwnParams",
(void (IGESDraw_ToolNetworkSubfigureDef::*)( const opencascade::handle<IGESDraw_NetworkSubfigureDef> & , IGESData_IGESWriter & ) const) static_cast<void (IGESDraw_ToolNetworkSubfigureDef::*)( const opencascade::handle<IGESDraw_NetworkSubfigureDef> & , IGESData_IGESWriter & ) const>(&IGESDraw_ToolNetworkSubfigureDef::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESDraw_ToolNetworkSubfigureDef::*)( const opencascade::handle<IGESDraw_NetworkSubfigureDef> & , Interface_EntityIterator & ) const) static_cast<void (IGESDraw_ToolNetworkSubfigureDef::*)( const opencascade::handle<IGESDraw_NetworkSubfigureDef> & , Interface_EntityIterator & ) const>(&IGESDraw_ToolNetworkSubfigureDef::OwnShared),
R"#(Lists the Entities shared by a NetworkSubfigureDef <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("DirChecker",
(IGESData_DirChecker (IGESDraw_ToolNetworkSubfigureDef::*)( const opencascade::handle<IGESDraw_NetworkSubfigureDef> & ) const) static_cast<IGESData_DirChecker (IGESDraw_ToolNetworkSubfigureDef::*)( const opencascade::handle<IGESDraw_NetworkSubfigureDef> & ) const>(&IGESDraw_ToolNetworkSubfigureDef::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESDraw_ToolNetworkSubfigureDef::*)( const opencascade::handle<IGESDraw_NetworkSubfigureDef> & , const opencascade::handle<IGESDraw_NetworkSubfigureDef> & , Interface_CopyTool & ) const) static_cast<void (IGESDraw_ToolNetworkSubfigureDef::*)( const opencascade::handle<IGESDraw_NetworkSubfigureDef> & , const opencascade::handle<IGESDraw_NetworkSubfigureDef> & , Interface_CopyTool & ) const>(&IGESDraw_ToolNetworkSubfigureDef::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESDraw_ToolNetworkSubfigureDef::*)( const opencascade::handle<IGESDraw_NetworkSubfigureDef> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESDraw_ToolNetworkSubfigureDef::*)( const opencascade::handle<IGESDraw_NetworkSubfigureDef> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESDraw_ToolNetworkSubfigureDef::OwnDump),
R"#(Dump of Specific Parameters)#" , py::arg("ent"), py::arg("dumper"), py::arg("S"), py::arg("own")
)
// methods using call by reference i.s.o. return
.def("OwnCheck",
[]( IGESDraw_ToolNetworkSubfigureDef &self , const opencascade::handle<IGESDraw_NetworkSubfigureDef> & ent,const Interface_ShareTool & shares,Interface_Check& ach ){
opencascade::handle<Interface_Check> ach_ptr; ach_ptr = &ach;
self.OwnCheck(ent,shares,ach_ptr);
if ( ach_ptr.get() != &ach ) copy_if_copy_constructible(ach, *ach_ptr);
return std::make_tuple(); },
R"#(Performs Specific Semantic Check)#" , py::arg("ent"), py::arg("shares"), py::arg("ach")
)
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class IGESDraw_ToolPerspectiveView from ./opencascade/IGESDraw_ToolPerspectiveView.hxx
klass = m.attr("IGESDraw_ToolPerspectiveView");
// nested enums
static_cast<py::class_<IGESDraw_ToolPerspectiveView , shared_ptr<IGESDraw_ToolPerspectiveView> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESDraw_ToolPerspectiveView::*)( const opencascade::handle<IGESDraw_PerspectiveView> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESDraw_ToolPerspectiveView::*)( const opencascade::handle<IGESDraw_PerspectiveView> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESDraw_ToolPerspectiveView::ReadOwnParams),
R"#(Reads own parameters from file. <PR> gives access to them, <IR> detains parameter types and values)#" , py::arg("ent"), py::arg("IR"), py::arg("PR")
)
.def("WriteOwnParams",
(void (IGESDraw_ToolPerspectiveView::*)( const opencascade::handle<IGESDraw_PerspectiveView> & , IGESData_IGESWriter & ) const) static_cast<void (IGESDraw_ToolPerspectiveView::*)( const opencascade::handle<IGESDraw_PerspectiveView> & , IGESData_IGESWriter & ) const>(&IGESDraw_ToolPerspectiveView::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESDraw_ToolPerspectiveView::*)( const opencascade::handle<IGESDraw_PerspectiveView> & , Interface_EntityIterator & ) const) static_cast<void (IGESDraw_ToolPerspectiveView::*)( const opencascade::handle<IGESDraw_PerspectiveView> & , Interface_EntityIterator & ) const>(&IGESDraw_ToolPerspectiveView::OwnShared),
R"#(Lists the Entities shared by a PerspectiveView <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("DirChecker",
(IGESData_DirChecker (IGESDraw_ToolPerspectiveView::*)( const opencascade::handle<IGESDraw_PerspectiveView> & ) const) static_cast<IGESData_DirChecker (IGESDraw_ToolPerspectiveView::*)( const opencascade::handle<IGESDraw_PerspectiveView> & ) const>(&IGESDraw_ToolPerspectiveView::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESDraw_ToolPerspectiveView::*)( const opencascade::handle<IGESDraw_PerspectiveView> & , const opencascade::handle<IGESDraw_PerspectiveView> & , Interface_CopyTool & ) const) static_cast<void (IGESDraw_ToolPerspectiveView::*)( const opencascade::handle<IGESDraw_PerspectiveView> & , const opencascade::handle<IGESDraw_PerspectiveView> & , Interface_CopyTool & ) const>(&IGESDraw_ToolPerspectiveView::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESDraw_ToolPerspectiveView::*)( const opencascade::handle<IGESDraw_PerspectiveView> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESDraw_ToolPerspectiveView::*)( const opencascade::handle<IGESDraw_PerspectiveView> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESDraw_ToolPerspectiveView::OwnDump),
R"#(Dump of Specific Parameters)#" , py::arg("ent"), py::arg("dumper"), py::arg("S"), py::arg("own")
)
// methods using call by reference i.s.o. return
.def("OwnCheck",
[]( IGESDraw_ToolPerspectiveView &self , const opencascade::handle<IGESDraw_PerspectiveView> & ent,const Interface_ShareTool & shares,Interface_Check& ach ){
opencascade::handle<Interface_Check> ach_ptr; ach_ptr = &ach;
self.OwnCheck(ent,shares,ach_ptr);
if ( ach_ptr.get() != &ach ) copy_if_copy_constructible(ach, *ach_ptr);
return std::make_tuple(); },
R"#(Performs Specific Semantic Check)#" , py::arg("ent"), py::arg("shares"), py::arg("ach")
)
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class IGESDraw_ToolPlanar from ./opencascade/IGESDraw_ToolPlanar.hxx
klass = m.attr("IGESDraw_ToolPlanar");
// nested enums
static_cast<py::class_<IGESDraw_ToolPlanar , shared_ptr<IGESDraw_ToolPlanar> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESDraw_ToolPlanar::*)( const opencascade::handle<IGESDraw_Planar> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESDraw_ToolPlanar::*)( const opencascade::handle<IGESDraw_Planar> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESDraw_ToolPlanar::ReadOwnParams),
R"#(Reads own parameters from file. <PR> gives access to them, <IR> detains parameter types and values)#" , py::arg("ent"), py::arg("IR"), py::arg("PR")
)
.def("WriteOwnParams",
(void (IGESDraw_ToolPlanar::*)( const opencascade::handle<IGESDraw_Planar> & , IGESData_IGESWriter & ) const) static_cast<void (IGESDraw_ToolPlanar::*)( const opencascade::handle<IGESDraw_Planar> & , IGESData_IGESWriter & ) const>(&IGESDraw_ToolPlanar::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESDraw_ToolPlanar::*)( const opencascade::handle<IGESDraw_Planar> & , Interface_EntityIterator & ) const) static_cast<void (IGESDraw_ToolPlanar::*)( const opencascade::handle<IGESDraw_Planar> & , Interface_EntityIterator & ) const>(&IGESDraw_ToolPlanar::OwnShared),
R"#(Lists the Entities shared by a Planar <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("OwnCorrect",
(Standard_Boolean (IGESDraw_ToolPlanar::*)( const opencascade::handle<IGESDraw_Planar> & ) const) static_cast<Standard_Boolean (IGESDraw_ToolPlanar::*)( const opencascade::handle<IGESDraw_Planar> & ) const>(&IGESDraw_ToolPlanar::OwnCorrect),
R"#(Sets automatic unambiguous Correction on a Planar (NbMatrices forced to 1))#" , py::arg("ent")
)
.def("DirChecker",
(IGESData_DirChecker (IGESDraw_ToolPlanar::*)( const opencascade::handle<IGESDraw_Planar> & ) const) static_cast<IGESData_DirChecker (IGESDraw_ToolPlanar::*)( const opencascade::handle<IGESDraw_Planar> & ) const>(&IGESDraw_ToolPlanar::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESDraw_ToolPlanar::*)( const opencascade::handle<IGESDraw_Planar> & , const opencascade::handle<IGESDraw_Planar> & , Interface_CopyTool & ) const) static_cast<void (IGESDraw_ToolPlanar::*)( const opencascade::handle<IGESDraw_Planar> & , const opencascade::handle<IGESDraw_Planar> & , Interface_CopyTool & ) const>(&IGESDraw_ToolPlanar::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESDraw_ToolPlanar::*)( const opencascade::handle<IGESDraw_Planar> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESDraw_ToolPlanar::*)( const opencascade::handle<IGESDraw_Planar> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESDraw_ToolPlanar::OwnDump),
R"#(Dump of Specific Parameters)#" , py::arg("ent"), py::arg("dumper"), py::arg("S"), py::arg("own")
)
// methods using call by reference i.s.o. return
.def("OwnCheck",
[]( IGESDraw_ToolPlanar &self , const opencascade::handle<IGESDraw_Planar> & ent,const Interface_ShareTool & shares,Interface_Check& ach ){
opencascade::handle<Interface_Check> ach_ptr; ach_ptr = &ach;
self.OwnCheck(ent,shares,ach_ptr);
if ( ach_ptr.get() != &ach ) copy_if_copy_constructible(ach, *ach_ptr);
return std::make_tuple(); },
R"#(Performs Specific Semantic Check)#" , py::arg("ent"), py::arg("shares"), py::arg("ach")
)
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class IGESDraw_ToolRectArraySubfigure from ./opencascade/IGESDraw_ToolRectArraySubfigure.hxx
klass = m.attr("IGESDraw_ToolRectArraySubfigure");
// nested enums
static_cast<py::class_<IGESDraw_ToolRectArraySubfigure , shared_ptr<IGESDraw_ToolRectArraySubfigure> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESDraw_ToolRectArraySubfigure::*)( const opencascade::handle<IGESDraw_RectArraySubfigure> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESDraw_ToolRectArraySubfigure::*)( const opencascade::handle<IGESDraw_RectArraySubfigure> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESDraw_ToolRectArraySubfigure::ReadOwnParams),
R"#(Reads own parameters from file. <PR> gives access to them, <IR> detains parameter types and values)#" , py::arg("ent"), py::arg("IR"), py::arg("PR")
)
.def("WriteOwnParams",
(void (IGESDraw_ToolRectArraySubfigure::*)( const opencascade::handle<IGESDraw_RectArraySubfigure> & , IGESData_IGESWriter & ) const) static_cast<void (IGESDraw_ToolRectArraySubfigure::*)( const opencascade::handle<IGESDraw_RectArraySubfigure> & , IGESData_IGESWriter & ) const>(&IGESDraw_ToolRectArraySubfigure::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESDraw_ToolRectArraySubfigure::*)( const opencascade::handle<IGESDraw_RectArraySubfigure> & , Interface_EntityIterator & ) const) static_cast<void (IGESDraw_ToolRectArraySubfigure::*)( const opencascade::handle<IGESDraw_RectArraySubfigure> & , Interface_EntityIterator & ) const>(&IGESDraw_ToolRectArraySubfigure::OwnShared),
R"#(Lists the Entities shared by a RectArraySubfigure <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("DirChecker",
(IGESData_DirChecker (IGESDraw_ToolRectArraySubfigure::*)( const opencascade::handle<IGESDraw_RectArraySubfigure> & ) const) static_cast<IGESData_DirChecker (IGESDraw_ToolRectArraySubfigure::*)( const opencascade::handle<IGESDraw_RectArraySubfigure> & ) const>(&IGESDraw_ToolRectArraySubfigure::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESDraw_ToolRectArraySubfigure::*)( const opencascade::handle<IGESDraw_RectArraySubfigure> & , const opencascade::handle<IGESDraw_RectArraySubfigure> & , Interface_CopyTool & ) const) static_cast<void (IGESDraw_ToolRectArraySubfigure::*)( const opencascade::handle<IGESDraw_RectArraySubfigure> & , const opencascade::handle<IGESDraw_RectArraySubfigure> & , Interface_CopyTool & ) const>(&IGESDraw_ToolRectArraySubfigure::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESDraw_ToolRectArraySubfigure::*)( const opencascade::handle<IGESDraw_RectArraySubfigure> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESDraw_ToolRectArraySubfigure::*)( const opencascade::handle<IGESDraw_RectArraySubfigure> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESDraw_ToolRectArraySubfigure::OwnDump),
R"#(Dump of Specific Parameters)#" , py::arg("ent"), py::arg("dumper"), py::arg("S"), py::arg("own")
)
// methods using call by reference i.s.o. return
.def("OwnCheck",
[]( IGESDraw_ToolRectArraySubfigure &self , const opencascade::handle<IGESDraw_RectArraySubfigure> & ent,const Interface_ShareTool & shares,Interface_Check& ach ){
opencascade::handle<Interface_Check> ach_ptr; ach_ptr = &ach;
self.OwnCheck(ent,shares,ach_ptr);
if ( ach_ptr.get() != &ach ) copy_if_copy_constructible(ach, *ach_ptr);
return std::make_tuple(); },
R"#(Performs Specific Semantic Check)#" , py::arg("ent"), py::arg("shares"), py::arg("ach")
)
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class IGESDraw_ToolSegmentedViewsVisible from ./opencascade/IGESDraw_ToolSegmentedViewsVisible.hxx
klass = m.attr("IGESDraw_ToolSegmentedViewsVisible");
// nested enums
static_cast<py::class_<IGESDraw_ToolSegmentedViewsVisible , shared_ptr<IGESDraw_ToolSegmentedViewsVisible> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESDraw_ToolSegmentedViewsVisible::*)( const opencascade::handle<IGESDraw_SegmentedViewsVisible> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESDraw_ToolSegmentedViewsVisible::*)( const opencascade::handle<IGESDraw_SegmentedViewsVisible> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESDraw_ToolSegmentedViewsVisible::ReadOwnParams),
R"#(Reads own parameters from file. <PR> gives access to them, <IR> detains parameter types and values)#" , py::arg("ent"), py::arg("IR"), py::arg("PR")
)
.def("WriteOwnParams",
(void (IGESDraw_ToolSegmentedViewsVisible::*)( const opencascade::handle<IGESDraw_SegmentedViewsVisible> & , IGESData_IGESWriter & ) const) static_cast<void (IGESDraw_ToolSegmentedViewsVisible::*)( const opencascade::handle<IGESDraw_SegmentedViewsVisible> & , IGESData_IGESWriter & ) const>(&IGESDraw_ToolSegmentedViewsVisible::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESDraw_ToolSegmentedViewsVisible::*)( const opencascade::handle<IGESDraw_SegmentedViewsVisible> & , Interface_EntityIterator & ) const) static_cast<void (IGESDraw_ToolSegmentedViewsVisible::*)( const opencascade::handle<IGESDraw_SegmentedViewsVisible> & , Interface_EntityIterator & ) const>(&IGESDraw_ToolSegmentedViewsVisible::OwnShared),
R"#(Lists the Entities shared by a SegmentedViewsVisible <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("DirChecker",
(IGESData_DirChecker (IGESDraw_ToolSegmentedViewsVisible::*)( const opencascade::handle<IGESDraw_SegmentedViewsVisible> & ) const) static_cast<IGESData_DirChecker (IGESDraw_ToolSegmentedViewsVisible::*)( const opencascade::handle<IGESDraw_SegmentedViewsVisible> & ) const>(&IGESDraw_ToolSegmentedViewsVisible::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESDraw_ToolSegmentedViewsVisible::*)( const opencascade::handle<IGESDraw_SegmentedViewsVisible> & , const opencascade::handle<IGESDraw_SegmentedViewsVisible> & , Interface_CopyTool & ) const) static_cast<void (IGESDraw_ToolSegmentedViewsVisible::*)( const opencascade::handle<IGESDraw_SegmentedViewsVisible> & , const opencascade::handle<IGESDraw_SegmentedViewsVisible> & , Interface_CopyTool & ) const>(&IGESDraw_ToolSegmentedViewsVisible::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESDraw_ToolSegmentedViewsVisible::*)( const opencascade::handle<IGESDraw_SegmentedViewsVisible> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESDraw_ToolSegmentedViewsVisible::*)( const opencascade::handle<IGESDraw_SegmentedViewsVisible> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESDraw_ToolSegmentedViewsVisible::OwnDump),
R"#(Dump of Specific Parameters)#" , py::arg("ent"), py::arg("dumper"), py::arg("S"), py::arg("own")
)
// methods using call by reference i.s.o. return
.def("OwnCheck",
[]( IGESDraw_ToolSegmentedViewsVisible &self , const opencascade::handle<IGESDraw_SegmentedViewsVisible> & ent,const Interface_ShareTool & shares,Interface_Check& ach ){
opencascade::handle<Interface_Check> ach_ptr; ach_ptr = &ach;
self.OwnCheck(ent,shares,ach_ptr);
if ( ach_ptr.get() != &ach ) copy_if_copy_constructible(ach, *ach_ptr);
return std::make_tuple(); },
R"#(Performs Specific Semantic Check)#" , py::arg("ent"), py::arg("shares"), py::arg("ach")
)
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class IGESDraw_ToolView from ./opencascade/IGESDraw_ToolView.hxx
klass = m.attr("IGESDraw_ToolView");
// nested enums
static_cast<py::class_<IGESDraw_ToolView , shared_ptr<IGESDraw_ToolView> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESDraw_ToolView::*)( const opencascade::handle<IGESDraw_View> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESDraw_ToolView::*)( const opencascade::handle<IGESDraw_View> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESDraw_ToolView::ReadOwnParams),
R"#(Reads own parameters from file. <PR> gives access to them, <IR> detains parameter types and values)#" , py::arg("ent"), py::arg("IR"), py::arg("PR")
)
.def("WriteOwnParams",
(void (IGESDraw_ToolView::*)( const opencascade::handle<IGESDraw_View> & , IGESData_IGESWriter & ) const) static_cast<void (IGESDraw_ToolView::*)( const opencascade::handle<IGESDraw_View> & , IGESData_IGESWriter & ) const>(&IGESDraw_ToolView::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESDraw_ToolView::*)( const opencascade::handle<IGESDraw_View> & , Interface_EntityIterator & ) const) static_cast<void (IGESDraw_ToolView::*)( const opencascade::handle<IGESDraw_View> & , Interface_EntityIterator & ) const>(&IGESDraw_ToolView::OwnShared),
R"#(Lists the Entities shared by a View <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("DirChecker",
(IGESData_DirChecker (IGESDraw_ToolView::*)( const opencascade::handle<IGESDraw_View> & ) const) static_cast<IGESData_DirChecker (IGESDraw_ToolView::*)( const opencascade::handle<IGESDraw_View> & ) const>(&IGESDraw_ToolView::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESDraw_ToolView::*)( const opencascade::handle<IGESDraw_View> & , const opencascade::handle<IGESDraw_View> & , Interface_CopyTool & ) const) static_cast<void (IGESDraw_ToolView::*)( const opencascade::handle<IGESDraw_View> & , const opencascade::handle<IGESDraw_View> & , Interface_CopyTool & ) const>(&IGESDraw_ToolView::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESDraw_ToolView::*)( const opencascade::handle<IGESDraw_View> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESDraw_ToolView::*)( const opencascade::handle<IGESDraw_View> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESDraw_ToolView::OwnDump),
R"#(Dump of Specific Parameters)#" , py::arg("ent"), py::arg("dumper"), py::arg("S"), py::arg("own")
)
// methods using call by reference i.s.o. return
.def("OwnCheck",
[]( IGESDraw_ToolView &self , const opencascade::handle<IGESDraw_View> & ent,const Interface_ShareTool & shares,Interface_Check& ach ){
opencascade::handle<Interface_Check> ach_ptr; ach_ptr = &ach;
self.OwnCheck(ent,shares,ach_ptr);
if ( ach_ptr.get() != &ach ) copy_if_copy_constructible(ach, *ach_ptr);
return std::make_tuple(); },
R"#(Performs Specific Semantic Check)#" , py::arg("ent"), py::arg("shares"), py::arg("ach")
)
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class IGESDraw_ToolViewsVisible from ./opencascade/IGESDraw_ToolViewsVisible.hxx
klass = m.attr("IGESDraw_ToolViewsVisible");
// nested enums
static_cast<py::class_<IGESDraw_ToolViewsVisible , shared_ptr<IGESDraw_ToolViewsVisible> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESDraw_ToolViewsVisible::*)( const opencascade::handle<IGESDraw_ViewsVisible> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESDraw_ToolViewsVisible::*)( const opencascade::handle<IGESDraw_ViewsVisible> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESDraw_ToolViewsVisible::ReadOwnParams),
R"#(Reads own parameters from file. <PR> gives access to them, <IR> detains parameter types and values)#" , py::arg("ent"), py::arg("IR"), py::arg("PR")
)
.def("WriteOwnParams",
(void (IGESDraw_ToolViewsVisible::*)( const opencascade::handle<IGESDraw_ViewsVisible> & , IGESData_IGESWriter & ) const) static_cast<void (IGESDraw_ToolViewsVisible::*)( const opencascade::handle<IGESDraw_ViewsVisible> & , IGESData_IGESWriter & ) const>(&IGESDraw_ToolViewsVisible::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESDraw_ToolViewsVisible::*)( const opencascade::handle<IGESDraw_ViewsVisible> & , Interface_EntityIterator & ) const) static_cast<void (IGESDraw_ToolViewsVisible::*)( const opencascade::handle<IGESDraw_ViewsVisible> & , Interface_EntityIterator & ) const>(&IGESDraw_ToolViewsVisible::OwnShared),
R"#(Lists the Entities shared by a ViewsVisible <ent>, from its specific (own) parameters shared not implied (the Views))#" , py::arg("ent"), py::arg("iter")
)
.def("OwnImplied",
(void (IGESDraw_ToolViewsVisible::*)( const opencascade::handle<IGESDraw_ViewsVisible> & , Interface_EntityIterator & ) const) static_cast<void (IGESDraw_ToolViewsVisible::*)( const opencascade::handle<IGESDraw_ViewsVisible> & , Interface_EntityIterator & ) const>(&IGESDraw_ToolViewsVisible::OwnImplied),
R"#(Lists the Entities shared by a ViewsVisible <ent>, from its specific (own) implied parameters : the Displayed Entities)#" , py::arg("ent"), py::arg("iter")
)
.def("DirChecker",
(IGESData_DirChecker (IGESDraw_ToolViewsVisible::*)( const opencascade::handle<IGESDraw_ViewsVisible> & ) const) static_cast<IGESData_DirChecker (IGESDraw_ToolViewsVisible::*)( const opencascade::handle<IGESDraw_ViewsVisible> & ) const>(&IGESDraw_ToolViewsVisible::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESDraw_ToolViewsVisible::*)( const opencascade::handle<IGESDraw_ViewsVisible> & , const opencascade::handle<IGESDraw_ViewsVisible> & , Interface_CopyTool & ) const) static_cast<void (IGESDraw_ToolViewsVisible::*)( const opencascade::handle<IGESDraw_ViewsVisible> & , const opencascade::handle<IGESDraw_ViewsVisible> & , Interface_CopyTool & ) const>(&IGESDraw_ToolViewsVisible::OwnCopy),
R"#(Copies Specific Parameters shared not implied, i.e. all but the Displayed Entities)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnRenew",
(void (IGESDraw_ToolViewsVisible::*)( const opencascade::handle<IGESDraw_ViewsVisible> & , const opencascade::handle<IGESDraw_ViewsVisible> & , const Interface_CopyTool & ) const) static_cast<void (IGESDraw_ToolViewsVisible::*)( const opencascade::handle<IGESDraw_ViewsVisible> & , const opencascade::handle<IGESDraw_ViewsVisible> & , const Interface_CopyTool & ) const>(&IGESDraw_ToolViewsVisible::OwnRenew),
R"#(Copies Specific implied Parameters : the Displayed Entities which have already been copied)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnWhenDelete",
(void (IGESDraw_ToolViewsVisible::*)( const opencascade::handle<IGESDraw_ViewsVisible> & ) const) static_cast<void (IGESDraw_ToolViewsVisible::*)( const opencascade::handle<IGESDraw_ViewsVisible> & ) const>(&IGESDraw_ToolViewsVisible::OwnWhenDelete),
R"#(Clears specific implied parameters, which cause looping structures; required for deletion)#" , py::arg("ent")
)
.def("OwnDump",
(void (IGESDraw_ToolViewsVisible::*)( const opencascade::handle<IGESDraw_ViewsVisible> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESDraw_ToolViewsVisible::*)( const opencascade::handle<IGESDraw_ViewsVisible> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESDraw_ToolViewsVisible::OwnDump),
R"#(Dump of Specific Parameters)#" , py::arg("ent"), py::arg("dumper"), py::arg("S"), py::arg("own")
)
.def("OwnCorrect",
(Standard_Boolean (IGESDraw_ToolViewsVisible::*)( const opencascade::handle<IGESDraw_ViewsVisible> & ) const) static_cast<Standard_Boolean (IGESDraw_ToolViewsVisible::*)( const opencascade::handle<IGESDraw_ViewsVisible> & ) const>(&IGESDraw_ToolViewsVisible::OwnCorrect),
R"#(Sets automatic unambiguous Correction on a ViewsVisible (all displayed entities must refer to <ent> in directory part, else the list is cleared))#" , py::arg("ent")
)
// methods using call by reference i.s.o. return
.def("OwnCheck",
[]( IGESDraw_ToolViewsVisible &self , const opencascade::handle<IGESDraw_ViewsVisible> & ent,const Interface_ShareTool & shares,Interface_Check& ach ){
opencascade::handle<Interface_Check> ach_ptr; ach_ptr = &ach;
self.OwnCheck(ent,shares,ach_ptr);
if ( ach_ptr.get() != &ach ) copy_if_copy_constructible(ach, *ach_ptr);
return std::make_tuple(); },
R"#(Performs Specific Semantic Check)#" , py::arg("ent"), py::arg("shares"), py::arg("ach")
)
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class IGESDraw_ToolViewsVisibleWithAttr from ./opencascade/IGESDraw_ToolViewsVisibleWithAttr.hxx
klass = m.attr("IGESDraw_ToolViewsVisibleWithAttr");
// nested enums
static_cast<py::class_<IGESDraw_ToolViewsVisibleWithAttr , shared_ptr<IGESDraw_ToolViewsVisibleWithAttr> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESDraw_ToolViewsVisibleWithAttr::*)( const opencascade::handle<IGESDraw_ViewsVisibleWithAttr> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESDraw_ToolViewsVisibleWithAttr::*)( const opencascade::handle<IGESDraw_ViewsVisibleWithAttr> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESDraw_ToolViewsVisibleWithAttr::ReadOwnParams),
R"#(Reads own parameters from file. <PR> gives access to them, <IR> detains parameter types and values)#" , py::arg("ent"), py::arg("IR"), py::arg("PR")
)
.def("WriteOwnParams",
(void (IGESDraw_ToolViewsVisibleWithAttr::*)( const opencascade::handle<IGESDraw_ViewsVisibleWithAttr> & , IGESData_IGESWriter & ) const) static_cast<void (IGESDraw_ToolViewsVisibleWithAttr::*)( const opencascade::handle<IGESDraw_ViewsVisibleWithAttr> & , IGESData_IGESWriter & ) const>(&IGESDraw_ToolViewsVisibleWithAttr::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESDraw_ToolViewsVisibleWithAttr::*)( const opencascade::handle<IGESDraw_ViewsVisibleWithAttr> & , Interface_EntityIterator & ) const) static_cast<void (IGESDraw_ToolViewsVisibleWithAttr::*)( const opencascade::handle<IGESDraw_ViewsVisibleWithAttr> & , Interface_EntityIterator & ) const>(&IGESDraw_ToolViewsVisibleWithAttr::OwnShared),
R"#(Lists the Entities shared by a ViewsVisibleWithAttr <ent>, from its specific (own) parameters shared not implied, i.e. all but the Displayed Entities)#" , py::arg("ent"), py::arg("iter")
)
.def("OwnImplied",
(void (IGESDraw_ToolViewsVisibleWithAttr::*)( const opencascade::handle<IGESDraw_ViewsVisibleWithAttr> & , Interface_EntityIterator & ) const) static_cast<void (IGESDraw_ToolViewsVisibleWithAttr::*)( const opencascade::handle<IGESDraw_ViewsVisibleWithAttr> & , Interface_EntityIterator & ) const>(&IGESDraw_ToolViewsVisibleWithAttr::OwnImplied),
R"#(Lists the Entities shared by a ViewsVisible <ent>, from its specific (own) implied parameters : the Displayed Entities)#" , py::arg("ent"), py::arg("iter")
)
.def("DirChecker",
(IGESData_DirChecker (IGESDraw_ToolViewsVisibleWithAttr::*)( const opencascade::handle<IGESDraw_ViewsVisibleWithAttr> & ) const) static_cast<IGESData_DirChecker (IGESDraw_ToolViewsVisibleWithAttr::*)( const opencascade::handle<IGESDraw_ViewsVisibleWithAttr> & ) const>(&IGESDraw_ToolViewsVisibleWithAttr::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESDraw_ToolViewsVisibleWithAttr::*)( const opencascade::handle<IGESDraw_ViewsVisibleWithAttr> & , const opencascade::handle<IGESDraw_ViewsVisibleWithAttr> & , Interface_CopyTool & ) const) static_cast<void (IGESDraw_ToolViewsVisibleWithAttr::*)( const opencascade::handle<IGESDraw_ViewsVisibleWithAttr> & , const opencascade::handle<IGESDraw_ViewsVisibleWithAttr> & , Interface_CopyTool & ) const>(&IGESDraw_ToolViewsVisibleWithAttr::OwnCopy),
R"#(Copies Specific Parameters shared not implied, i.e. all but the Displayed Entities)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnRenew",
(void (IGESDraw_ToolViewsVisibleWithAttr::*)( const opencascade::handle<IGESDraw_ViewsVisibleWithAttr> & , const opencascade::handle<IGESDraw_ViewsVisibleWithAttr> & , const Interface_CopyTool & ) const) static_cast<void (IGESDraw_ToolViewsVisibleWithAttr::*)( const opencascade::handle<IGESDraw_ViewsVisibleWithAttr> & , const opencascade::handle<IGESDraw_ViewsVisibleWithAttr> & , const Interface_CopyTool & ) const>(&IGESDraw_ToolViewsVisibleWithAttr::OwnRenew),
R"#(Copies Specific implied Parameters : the Displayed Entities which have already been copied)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnWhenDelete",
(void (IGESDraw_ToolViewsVisibleWithAttr::*)( const opencascade::handle<IGESDraw_ViewsVisibleWithAttr> & ) const) static_cast<void (IGESDraw_ToolViewsVisibleWithAttr::*)( const opencascade::handle<IGESDraw_ViewsVisibleWithAttr> & ) const>(&IGESDraw_ToolViewsVisibleWithAttr::OwnWhenDelete),
R"#(Clears specific implied parameters, which cause looping structures; required for deletion)#" , py::arg("ent")
)
.def("OwnDump",
(void (IGESDraw_ToolViewsVisibleWithAttr::*)( const opencascade::handle<IGESDraw_ViewsVisibleWithAttr> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESDraw_ToolViewsVisibleWithAttr::*)( const opencascade::handle<IGESDraw_ViewsVisibleWithAttr> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESDraw_ToolViewsVisibleWithAttr::OwnDump),
R"#(Dump of Specific Parameters)#" , py::arg("ent"), py::arg("dumper"), py::arg("S"), py::arg("own")
)
.def("OwnCorrect",
(Standard_Boolean (IGESDraw_ToolViewsVisibleWithAttr::*)( const opencascade::handle<IGESDraw_ViewsVisibleWithAttr> & ) const) static_cast<Standard_Boolean (IGESDraw_ToolViewsVisibleWithAttr::*)( const opencascade::handle<IGESDraw_ViewsVisibleWithAttr> & ) const>(&IGESDraw_ToolViewsVisibleWithAttr::OwnCorrect),
R"#(Sets automatic unambiguous Correction on a ViewsVisibleWithAttr (all displayed entities must refer to <ent> in directory part, else the list is cleared))#" , py::arg("ent")
)
// methods using call by reference i.s.o. return
.def("OwnCheck",
[]( IGESDraw_ToolViewsVisibleWithAttr &self , const opencascade::handle<IGESDraw_ViewsVisibleWithAttr> & ent,const Interface_ShareTool & shares,Interface_Check& ach ){
opencascade::handle<Interface_Check> ach_ptr; ach_ptr = &ach;
self.OwnCheck(ent,shares,ach_ptr);
if ( ach_ptr.get() != &ach ) copy_if_copy_constructible(ach, *ach_ptr);
return std::make_tuple(); },
R"#(Performs Specific Semantic Check)#" , py::arg("ent"), py::arg("shares"), py::arg("ach")
)
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class IGESDraw_View from ./opencascade/IGESDraw_View.hxx
klass = m.attr("IGESDraw_View");
// nested enums
static_cast<py::class_<IGESDraw_View ,opencascade::handle<IGESDraw_View> , IGESData_ViewKindEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESDraw_View::*)( const Standard_Integer , const Standard_Real , const opencascade::handle<IGESGeom_Plane> & , const opencascade::handle<IGESGeom_Plane> & , const opencascade::handle<IGESGeom_Plane> & , const opencascade::handle<IGESGeom_Plane> & , const opencascade::handle<IGESGeom_Plane> & , const opencascade::handle<IGESGeom_Plane> & ) ) static_cast<void (IGESDraw_View::*)( const Standard_Integer , const Standard_Real , const opencascade::handle<IGESGeom_Plane> & , const opencascade::handle<IGESGeom_Plane> & , const opencascade::handle<IGESGeom_Plane> & , const opencascade::handle<IGESGeom_Plane> & , const opencascade::handle<IGESGeom_Plane> & , const opencascade::handle<IGESGeom_Plane> & ) >(&IGESDraw_View::Init),
R"#(This method is used to set fields of the class View - aViewNum : View number - aScale : Scale factor - aLeftPlane : Left plane of view volume - aTopPlane : Top plane of view volume - aRightPlane : Right plane of view volume - aBottomPlane : Bottom plane of view volume - aBackPlane : Back plane of view volume - aFrontPlane : Front plane of view volume)#" , py::arg("aViewNum"), py::arg("aScale"), py::arg("aLeftPlane"), py::arg("aTopPlane"), py::arg("aRightPlane"), py::arg("aBottomPlane"), py::arg("aBackPlane"), py::arg("aFrontPlane")
)
.def("IsSingle",
(Standard_Boolean (IGESDraw_View::*)() const) static_cast<Standard_Boolean (IGESDraw_View::*)() const>(&IGESDraw_View::IsSingle),
R"#(Returns True (for a single view))#"
)
.def("NbViews",
(Standard_Integer (IGESDraw_View::*)() const) static_cast<Standard_Integer (IGESDraw_View::*)() const>(&IGESDraw_View::NbViews),
R"#(Returns 1 (single view))#"
)
.def("ViewItem",
(opencascade::handle<IGESData_ViewKindEntity> (IGESDraw_View::*)( const Standard_Integer ) const) static_cast<opencascade::handle<IGESData_ViewKindEntity> (IGESDraw_View::*)( const Standard_Integer ) const>(&IGESDraw_View::ViewItem),
R"#(For a single view, returns <me> whatever <num>)#" , py::arg("num")
)
.def("ViewNumber",
(Standard_Integer (IGESDraw_View::*)() const) static_cast<Standard_Integer (IGESDraw_View::*)() const>(&IGESDraw_View::ViewNumber),
R"#(returns integer number identifying view orientation)#"
)
.def("ScaleFactor",
(Standard_Real (IGESDraw_View::*)() const) static_cast<Standard_Real (IGESDraw_View::*)() const>(&IGESDraw_View::ScaleFactor),
R"#(returns the scale factor(Default = 1.0))#"
)
.def("HasLeftPlane",
(Standard_Boolean (IGESDraw_View::*)() const) static_cast<Standard_Boolean (IGESDraw_View::*)() const>(&IGESDraw_View::HasLeftPlane),
R"#(returns False if left side of view volume is not present)#"
)
.def("LeftPlane",
(opencascade::handle<IGESGeom_Plane> (IGESDraw_View::*)() const) static_cast<opencascade::handle<IGESGeom_Plane> (IGESDraw_View::*)() const>(&IGESDraw_View::LeftPlane),
R"#(returns the left side of view volume, or null handle)#"
)
.def("HasTopPlane",
(Standard_Boolean (IGESDraw_View::*)() const) static_cast<Standard_Boolean (IGESDraw_View::*)() const>(&IGESDraw_View::HasTopPlane),
R"#(returns False if top of view volume is not present)#"
)
.def("TopPlane",
(opencascade::handle<IGESGeom_Plane> (IGESDraw_View::*)() const) static_cast<opencascade::handle<IGESGeom_Plane> (IGESDraw_View::*)() const>(&IGESDraw_View::TopPlane),
R"#(returns the top of view volume, or null handle)#"
)
.def("HasRightPlane",
(Standard_Boolean (IGESDraw_View::*)() const) static_cast<Standard_Boolean (IGESDraw_View::*)() const>(&IGESDraw_View::HasRightPlane),
R"#(returns False if right side of view volume is not present)#"
)
.def("RightPlane",
(opencascade::handle<IGESGeom_Plane> (IGESDraw_View::*)() const) static_cast<opencascade::handle<IGESGeom_Plane> (IGESDraw_View::*)() const>(&IGESDraw_View::RightPlane),
R"#(returns the right side of view volume, or null handle)#"
)
.def("HasBottomPlane",
(Standard_Boolean (IGESDraw_View::*)() const) static_cast<Standard_Boolean (IGESDraw_View::*)() const>(&IGESDraw_View::HasBottomPlane),
R"#(returns False if bottom of view volume is not present)#"
)
.def("BottomPlane",
(opencascade::handle<IGESGeom_Plane> (IGESDraw_View::*)() const) static_cast<opencascade::handle<IGESGeom_Plane> (IGESDraw_View::*)() const>(&IGESDraw_View::BottomPlane),
R"#(returns the bottom of view volume, or null handle)#"
)
.def("HasBackPlane",
(Standard_Boolean (IGESDraw_View::*)() const) static_cast<Standard_Boolean (IGESDraw_View::*)() const>(&IGESDraw_View::HasBackPlane),
R"#(returns False if back of view volume is not present)#"
)
.def("BackPlane",
(opencascade::handle<IGESGeom_Plane> (IGESDraw_View::*)() const) static_cast<opencascade::handle<IGESGeom_Plane> (IGESDraw_View::*)() const>(&IGESDraw_View::BackPlane),
R"#(returns the back of view volume, or null handle)#"
)
.def("HasFrontPlane",
(Standard_Boolean (IGESDraw_View::*)() const) static_cast<Standard_Boolean (IGESDraw_View::*)() const>(&IGESDraw_View::HasFrontPlane),
R"#(returns False if front of view volume is not present)#"
)
.def("FrontPlane",
(opencascade::handle<IGESGeom_Plane> (IGESDraw_View::*)() const) static_cast<opencascade::handle<IGESGeom_Plane> (IGESDraw_View::*)() const>(&IGESDraw_View::FrontPlane),
R"#(returns the front of view volume, or null handle)#"
)
.def("ViewMatrix",
(opencascade::handle<IGESData_TransfEntity> (IGESDraw_View::*)() const) static_cast<opencascade::handle<IGESData_TransfEntity> (IGESDraw_View::*)() const>(&IGESDraw_View::ViewMatrix),
R"#(returns the Transformation Matrix)#"
)
.def("ModelToView",
(gp_XYZ (IGESDraw_View::*)( const gp_XYZ & ) const) static_cast<gp_XYZ (IGESDraw_View::*)( const gp_XYZ & ) const>(&IGESDraw_View::ModelToView),
R"#(returns XYZ from the Model space to the View space by applying the View Matrix)#" , py::arg("coords")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDraw_View::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDraw_View::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> & (IGESDraw_View::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDraw_View::*)() const>(&IGESDraw_View::DynamicType),
R"#(None)#"
)
;
// Class IGESDraw_ViewsVisible from ./opencascade/IGESDraw_ViewsVisible.hxx
klass = m.attr("IGESDraw_ViewsVisible");
// nested enums
static_cast<py::class_<IGESDraw_ViewsVisible ,opencascade::handle<IGESDraw_ViewsVisible> , IGESData_ViewKindEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESDraw_ViewsVisible::*)( const opencascade::handle<IGESDraw_HArray1OfViewKindEntity> & , const opencascade::handle<IGESData_HArray1OfIGESEntity> & ) ) static_cast<void (IGESDraw_ViewsVisible::*)( const opencascade::handle<IGESDraw_HArray1OfViewKindEntity> & , const opencascade::handle<IGESData_HArray1OfIGESEntity> & ) >(&IGESDraw_ViewsVisible::Init),
R"#(This method is used to set the fields of the class ViewsVisible - allViewEntities : All View kind entities - allDisplayEntity : All entities whose display is specified)#" , py::arg("allViewEntities"), py::arg("allDisplayEntity")
)
.def("InitImplied",
(void (IGESDraw_ViewsVisible::*)( const opencascade::handle<IGESData_HArray1OfIGESEntity> & ) ) static_cast<void (IGESDraw_ViewsVisible::*)( const opencascade::handle<IGESData_HArray1OfIGESEntity> & ) >(&IGESDraw_ViewsVisible::InitImplied),
R"#(Changes only the list of Displayed Entities (Null allowed))#" , py::arg("allDisplayEntity")
)
.def("IsSingle",
(Standard_Boolean (IGESDraw_ViewsVisible::*)() const) static_cast<Standard_Boolean (IGESDraw_ViewsVisible::*)() const>(&IGESDraw_ViewsVisible::IsSingle),
R"#(Returns False (for a complex view))#"
)
.def("NbViews",
(Standard_Integer (IGESDraw_ViewsVisible::*)() const) static_cast<Standard_Integer (IGESDraw_ViewsVisible::*)() const>(&IGESDraw_ViewsVisible::NbViews),
R"#(returns the Number of views visible)#"
)
.def("NbDisplayedEntities",
(Standard_Integer (IGESDraw_ViewsVisible::*)() const) static_cast<Standard_Integer (IGESDraw_ViewsVisible::*)() const>(&IGESDraw_ViewsVisible::NbDisplayedEntities),
R"#(returns the number of entities displayed in the Views or zero if no Entities specified in these Views)#"
)
.def("ViewItem",
(opencascade::handle<IGESData_ViewKindEntity> (IGESDraw_ViewsVisible::*)( const Standard_Integer ) const) static_cast<opencascade::handle<IGESData_ViewKindEntity> (IGESDraw_ViewsVisible::*)( const Standard_Integer ) const>(&IGESDraw_ViewsVisible::ViewItem),
R"#(returns the Index'th ViewKindEntity Entity raises exception if Index <= 0 or Index > NbViewsVisible())#" , py::arg("Index")
)
.def("DisplayedEntity",
(opencascade::handle<IGESData_IGESEntity> (IGESDraw_ViewsVisible::*)( const Standard_Integer ) const) static_cast<opencascade::handle<IGESData_IGESEntity> (IGESDraw_ViewsVisible::*)( const Standard_Integer ) const>(&IGESDraw_ViewsVisible::DisplayedEntity),
R"#(returns the Index'th entity whose display is being specified by this associativity instance raises exception if Index <= 0 or Index > NbEntityDisplayed())#" , py::arg("Index")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDraw_ViewsVisible::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDraw_ViewsVisible::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> & (IGESDraw_ViewsVisible::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDraw_ViewsVisible::*)() const>(&IGESDraw_ViewsVisible::DynamicType),
R"#(None)#"
)
;
// Class IGESDraw_ViewsVisibleWithAttr from ./opencascade/IGESDraw_ViewsVisibleWithAttr.hxx
klass = m.attr("IGESDraw_ViewsVisibleWithAttr");
// nested enums
static_cast<py::class_<IGESDraw_ViewsVisibleWithAttr ,opencascade::handle<IGESDraw_ViewsVisibleWithAttr> , IGESData_ViewKindEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESDraw_ViewsVisibleWithAttr::*)( const opencascade::handle<IGESDraw_HArray1OfViewKindEntity> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<IGESBasic_HArray1OfLineFontEntity> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<IGESGraph_HArray1OfColor> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<IGESData_HArray1OfIGESEntity> & ) ) static_cast<void (IGESDraw_ViewsVisibleWithAttr::*)( const opencascade::handle<IGESDraw_HArray1OfViewKindEntity> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<IGESBasic_HArray1OfLineFontEntity> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<IGESGraph_HArray1OfColor> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<IGESData_HArray1OfIGESEntity> & ) >(&IGESDraw_ViewsVisibleWithAttr::Init),
R"#(This method is used to set fields of the class ViewsVisibleWithAttr - allViewEntities : All View kind entities - allLineFonts : All Line Font values or zero(0) - allLineDefinitions : Line Font Definition (if Line Font value = 0) - allColorValues : All Color values - allColorDefinitions : All Color Definition Entities - allLineWeights : All Line Weight values - allDisplayEntities : Entities which are member of this associativity raises exception if Lengths of allViewEntities, allLineFonts, allColorValues,allColorDefinitions, allLineWeights are not same)#" , py::arg("allViewEntities"), py::arg("allLineFonts"), py::arg("allLineDefinitions"), py::arg("allColorValues"), py::arg("allColorDefinitions"), py::arg("allLineWeights"), py::arg("allDisplayEntities")
)
.def("InitImplied",
(void (IGESDraw_ViewsVisibleWithAttr::*)( const opencascade::handle<IGESData_HArray1OfIGESEntity> & ) ) static_cast<void (IGESDraw_ViewsVisibleWithAttr::*)( const opencascade::handle<IGESData_HArray1OfIGESEntity> & ) >(&IGESDraw_ViewsVisibleWithAttr::InitImplied),
R"#(Changes only the list of Displayed Entities (Null allowed))#" , py::arg("allDisplayEntity")
)
.def("IsSingle",
(Standard_Boolean (IGESDraw_ViewsVisibleWithAttr::*)() const) static_cast<Standard_Boolean (IGESDraw_ViewsVisibleWithAttr::*)() const>(&IGESDraw_ViewsVisibleWithAttr::IsSingle),
R"#(Returns False (for a complex view))#"
)
.def("NbViews",
(Standard_Integer (IGESDraw_ViewsVisibleWithAttr::*)() const) static_cast<Standard_Integer (IGESDraw_ViewsVisibleWithAttr::*)() const>(&IGESDraw_ViewsVisibleWithAttr::NbViews),
R"#(returns the number of Views containing the view visible, line font, color number, and line weight information)#"
)
.def("NbDisplayedEntities",
(Standard_Integer (IGESDraw_ViewsVisibleWithAttr::*)() const) static_cast<Standard_Integer (IGESDraw_ViewsVisibleWithAttr::*)() const>(&IGESDraw_ViewsVisibleWithAttr::NbDisplayedEntities),
R"#(returns the number of entities which have this particular set of display characteristic, or zero if no Entities specified)#"
)
.def("ViewItem",
(opencascade::handle<IGESData_ViewKindEntity> (IGESDraw_ViewsVisibleWithAttr::*)( const Standard_Integer ) const) static_cast<opencascade::handle<IGESData_ViewKindEntity> (IGESDraw_ViewsVisibleWithAttr::*)( const Standard_Integer ) const>(&IGESDraw_ViewsVisibleWithAttr::ViewItem),
R"#(returns the Index'th ViewKindEntity entity raises exception if Index <= 0 or Index > NbViews())#" , py::arg("Index")
)
.def("LineFontValue",
(Standard_Integer (IGESDraw_ViewsVisibleWithAttr::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IGESDraw_ViewsVisibleWithAttr::*)( const Standard_Integer ) const>(&IGESDraw_ViewsVisibleWithAttr::LineFontValue),
R"#(returns the Index'th Line font value or zero raises exception if Index <= 0 or Index > NbViews())#" , py::arg("Index")
)
.def("IsFontDefinition",
(Standard_Boolean (IGESDraw_ViewsVisibleWithAttr::*)( const Standard_Integer ) const) static_cast<Standard_Boolean (IGESDraw_ViewsVisibleWithAttr::*)( const Standard_Integer ) const>(&IGESDraw_ViewsVisibleWithAttr::IsFontDefinition),
R"#(returns True if the Index'th Line Font Definition is specified else returns False raises exception if Index <= 0 or Index > NbViews())#" , py::arg("Index")
)
.def("FontDefinition",
(opencascade::handle<IGESData_LineFontEntity> (IGESDraw_ViewsVisibleWithAttr::*)( const Standard_Integer ) const) static_cast<opencascade::handle<IGESData_LineFontEntity> (IGESDraw_ViewsVisibleWithAttr::*)( const Standard_Integer ) const>(&IGESDraw_ViewsVisibleWithAttr::FontDefinition),
R"#(returns the Index'th Line Font Definition Entity or NULL(0) raises exception if Index <= 0 or Index > NbViews())#" , py::arg("Index")
)
.def("ColorValue",
(Standard_Integer (IGESDraw_ViewsVisibleWithAttr::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IGESDraw_ViewsVisibleWithAttr::*)( const Standard_Integer ) const>(&IGESDraw_ViewsVisibleWithAttr::ColorValue),
R"#(returns the Index'th Color number value raises exception if Index <= 0 or Index > NbViews())#" , py::arg("Index")
)
.def("IsColorDefinition",
(Standard_Boolean (IGESDraw_ViewsVisibleWithAttr::*)( const Standard_Integer ) const) static_cast<Standard_Boolean (IGESDraw_ViewsVisibleWithAttr::*)( const Standard_Integer ) const>(&IGESDraw_ViewsVisibleWithAttr::IsColorDefinition),
R"#(returns True if Index'th Color Definition is specified else returns False raises exception if Index <= 0 or Index > NbViews())#" , py::arg("Index")
)
.def("ColorDefinition",
(opencascade::handle<IGESGraph_Color> (IGESDraw_ViewsVisibleWithAttr::*)( const Standard_Integer ) const) static_cast<opencascade::handle<IGESGraph_Color> (IGESDraw_ViewsVisibleWithAttr::*)( const Standard_Integer ) const>(&IGESDraw_ViewsVisibleWithAttr::ColorDefinition),
R"#(returns the Index'th Color Definition Entity raises exception if Index <= 0 or Index > NbViews())#" , py::arg("Index")
)
.def("LineWeightItem",
(Standard_Integer (IGESDraw_ViewsVisibleWithAttr::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IGESDraw_ViewsVisibleWithAttr::*)( const Standard_Integer ) const>(&IGESDraw_ViewsVisibleWithAttr::LineWeightItem),
R"#(returns the Index'th Color Line Weight raises exception if Index <= 0 or Index > NbViews())#" , py::arg("Index")
)
.def("DisplayedEntity",
(opencascade::handle<IGESData_IGESEntity> (IGESDraw_ViewsVisibleWithAttr::*)( const Standard_Integer ) const) static_cast<opencascade::handle<IGESData_IGESEntity> (IGESDraw_ViewsVisibleWithAttr::*)( const Standard_Integer ) const>(&IGESDraw_ViewsVisibleWithAttr::DisplayedEntity),
R"#(returns Index'th Display entity with this particular characteristics raises exception if Index <= 0 or Index > NbEntities())#" , py::arg("Index")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDraw_ViewsVisibleWithAttr::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDraw_ViewsVisibleWithAttr::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> & (IGESDraw_ViewsVisibleWithAttr::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDraw_ViewsVisibleWithAttr::*)() const>(&IGESDraw_ViewsVisibleWithAttr::DynamicType),
R"#(None)#"
)
;
// functions
// ./opencascade/IGESDraw.hxx
// ./opencascade/IGESDraw_Array1OfConnectPoint.hxx
// ./opencascade/IGESDraw_Array1OfViewKindEntity.hxx
// ./opencascade/IGESDraw_CircArraySubfigure.hxx
// ./opencascade/IGESDraw_ConnectPoint.hxx
// ./opencascade/IGESDraw_Drawing.hxx
// ./opencascade/IGESDraw_DrawingWithRotation.hxx
// ./opencascade/IGESDraw_GeneralModule.hxx
// ./opencascade/IGESDraw_HArray1OfConnectPoint.hxx
// ./opencascade/IGESDraw_HArray1OfViewKindEntity.hxx
// ./opencascade/IGESDraw_LabelDisplay.hxx
// ./opencascade/IGESDraw_NetworkSubfigure.hxx
// ./opencascade/IGESDraw_NetworkSubfigureDef.hxx
// ./opencascade/IGESDraw_PerspectiveView.hxx
// ./opencascade/IGESDraw_Planar.hxx
// ./opencascade/IGESDraw_Protocol.hxx
// ./opencascade/IGESDraw_ReadWriteModule.hxx
// ./opencascade/IGESDraw_RectArraySubfigure.hxx
// ./opencascade/IGESDraw_SegmentedViewsVisible.hxx
// ./opencascade/IGESDraw_SpecificModule.hxx
// ./opencascade/IGESDraw_ToolCircArraySubfigure.hxx
// ./opencascade/IGESDraw_ToolConnectPoint.hxx
// ./opencascade/IGESDraw_ToolDrawing.hxx
// ./opencascade/IGESDraw_ToolDrawingWithRotation.hxx
// ./opencascade/IGESDraw_ToolLabelDisplay.hxx
// ./opencascade/IGESDraw_ToolNetworkSubfigure.hxx
// ./opencascade/IGESDraw_ToolNetworkSubfigureDef.hxx
// ./opencascade/IGESDraw_ToolPerspectiveView.hxx
// ./opencascade/IGESDraw_ToolPlanar.hxx
// ./opencascade/IGESDraw_ToolRectArraySubfigure.hxx
// ./opencascade/IGESDraw_ToolSegmentedViewsVisible.hxx
// ./opencascade/IGESDraw_ToolView.hxx
// ./opencascade/IGESDraw_ToolViewsVisible.hxx
// ./opencascade/IGESDraw_ToolViewsVisibleWithAttr.hxx
// ./opencascade/IGESDraw_View.hxx
// ./opencascade/IGESDraw_ViewsVisible.hxx
// ./opencascade/IGESDraw_ViewsVisibleWithAttr.hxx
// Additional functions
// operators
// register typdefs
register_template_NCollection_Array1<opencascade::handle<IGESDraw_ConnectPoint>>(m,"IGESDraw_Array1OfConnectPoint");
register_template_NCollection_Array1<opencascade::handle<IGESData_ViewKindEntity>>(m,"IGESDraw_Array1OfViewKindEntity");
// exceptions
// user-defined post-inclusion per module in the body
};
// user-defined post-inclusion per module
// user-defined post
|