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
|
// 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 <IGESGraph_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 <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <TCollection_HAsciiString.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 <TCollection_HAsciiString.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 <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 <TCollection_HAsciiString.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESBasic_SubfigureDef.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 <TCollection_HAsciiString.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 <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 <IGESData_IGESEntity.hxx>
#include <IGESData_IGESDumper.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESGraph_TextFontDef.hxx>
#include <gp_Pnt.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <TCollection_HAsciiString.hxx>
#include <IGESBasic_HArray1OfHArray1OfInteger.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESGraph_Color.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 <IGESGraph_DefinitionLevel.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 <IGESGraph_DrawingSize.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 <IGESGraph_DrawingUnits.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 <IGESGraph_HighLight.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 <IGESGraph_IntercharacterSpacing.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 <IGESGraph_LineFontDefPattern.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 <IGESGraph_LineFontDefTemplate.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 <IGESGraph_LineFontPredefined.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 <IGESGraph_NominalSize.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 <IGESGraph_Pick.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 <IGESGraph_TextDisplayTemplate.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 <IGESGraph_TextFontDef.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 <IGESGraph_UniformRectGrid.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 <gp_Pnt2d.hxx>
#include <gp_Vec2d.hxx>
// module includes
#include <IGESGraph.hxx>
#include <IGESGraph_Array1OfColor.hxx>
#include <IGESGraph_Array1OfTextDisplayTemplate.hxx>
#include <IGESGraph_Array1OfTextFontDef.hxx>
#include <IGESGraph_Color.hxx>
#include <IGESGraph_DefinitionLevel.hxx>
#include <IGESGraph_DrawingSize.hxx>
#include <IGESGraph_DrawingUnits.hxx>
#include <IGESGraph_GeneralModule.hxx>
#include <IGESGraph_HArray1OfColor.hxx>
#include <IGESGraph_HArray1OfTextDisplayTemplate.hxx>
#include <IGESGraph_HArray1OfTextFontDef.hxx>
#include <IGESGraph_HighLight.hxx>
#include <IGESGraph_IntercharacterSpacing.hxx>
#include <IGESGraph_LineFontDefPattern.hxx>
#include <IGESGraph_LineFontDefTemplate.hxx>
#include <IGESGraph_LineFontPredefined.hxx>
#include <IGESGraph_NominalSize.hxx>
#include <IGESGraph_Pick.hxx>
#include <IGESGraph_Protocol.hxx>
#include <IGESGraph_ReadWriteModule.hxx>
#include <IGESGraph_SpecificModule.hxx>
#include <IGESGraph_TextDisplayTemplate.hxx>
#include <IGESGraph_TextFontDef.hxx>
#include <IGESGraph_ToolColor.hxx>
#include <IGESGraph_ToolDefinitionLevel.hxx>
#include <IGESGraph_ToolDrawingSize.hxx>
#include <IGESGraph_ToolDrawingUnits.hxx>
#include <IGESGraph_ToolHighLight.hxx>
#include <IGESGraph_ToolIntercharacterSpacing.hxx>
#include <IGESGraph_ToolLineFontDefPattern.hxx>
#include <IGESGraph_ToolLineFontDefTemplate.hxx>
#include <IGESGraph_ToolLineFontPredefined.hxx>
#include <IGESGraph_ToolNominalSize.hxx>
#include <IGESGraph_ToolPick.hxx>
#include <IGESGraph_ToolTextDisplayTemplate.hxx>
#include <IGESGraph_ToolTextFontDef.hxx>
#include <IGESGraph_ToolUniformRectGrid.hxx>
#include <IGESGraph_UniformRectGrid.hxx>
// template related includes
// ./opencascade/IGESGraph_Array1OfColor.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/IGESGraph_Array1OfTextDisplayTemplate.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/IGESGraph_Array1OfTextFontDef.hxx
#include "NCollection_tmpl.hxx"
// user-defined pre
#include "OCP_specific.inc"
// user-defined inclusion per module
// Module definiiton
void register_IGESGraph(py::module &main_module) {
py::module m = static_cast<py::module>(main_module.attr("IGESGraph"));
py::object klass;
//Python trampoline classes
// classes
// Class IGESGraph from ./opencascade/IGESGraph.hxx
klass = m.attr("IGESGraph");
// default constructor
register_default_constructor<IGESGraph , shared_ptr<IGESGraph>>(m,"IGESGraph");
// nested enums
static_cast<py::class_<IGESGraph , shared_ptr<IGESGraph> >>(klass)
// constructors
// custom constructors
// methods
// methods using call by reference i.s.o. return
// static methods
.def_static("Init_s",
(void (*)() ) static_cast<void (*)() >(&IGESGraph::Init),
R"#(Prepares dynamic data (Protocol, Modules) for this package)#"
)
.def_static("Protocol_s",
(opencascade::handle<IGESGraph_Protocol> (*)() ) static_cast<opencascade::handle<IGESGraph_Protocol> (*)() >(&IGESGraph::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 IGESGraph_Color from ./opencascade/IGESGraph_Color.hxx
klass = m.attr("IGESGraph_Color");
// nested enums
static_cast<py::class_<IGESGraph_Color ,opencascade::handle<IGESGraph_Color> , IGESData_ColorEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESGraph_Color::*)( const Standard_Real , const Standard_Real , const Standard_Real , const opencascade::handle<TCollection_HAsciiString> & ) ) static_cast<void (IGESGraph_Color::*)( const Standard_Real , const Standard_Real , const Standard_Real , const opencascade::handle<TCollection_HAsciiString> & ) >(&IGESGraph_Color::Init),
R"#(This method is used to set the fields of the class Color - red : Red color intensity (range 0.0 to 100.0) - green : Green color intensity (range 0.0 to 100.0) - blue : Blue color intensity (range 0.0 to 100.0) - aColorName : Name of the color (optional))#" , py::arg("red"), py::arg("green"), py::arg("blue"), py::arg("aColorName")
)
.def("HasColorName",
(Standard_Boolean (IGESGraph_Color::*)() const) static_cast<Standard_Boolean (IGESGraph_Color::*)() const>(&IGESGraph_Color::HasColorName),
R"#(returns True if optional character string is assigned, False otherwise.)#"
)
.def("ColorName",
(opencascade::handle<TCollection_HAsciiString> (IGESGraph_Color::*)() const) static_cast<opencascade::handle<TCollection_HAsciiString> (IGESGraph_Color::*)() const>(&IGESGraph_Color::ColorName),
R"#(if HasColorName() is True returns the Verbal description of the Color.)#"
)
// methods using call by reference i.s.o. return
.def("RGBIntensity",
[]( IGESGraph_Color &self ){
Standard_Real Red;
Standard_Real Green;
Standard_Real Blue;
self.RGBIntensity(Red,Green,Blue);
return std::make_tuple(Red,Green,Blue); },
R"#(None)#"
)
.def("CMYIntensity",
[]( IGESGraph_Color &self ){
Standard_Real Cyan;
Standard_Real Magenta;
Standard_Real Yellow;
self.CMYIntensity(Cyan,Magenta,Yellow);
return std::make_tuple(Cyan,Magenta,Yellow); },
R"#(None)#"
)
.def("HLSPercentage",
[]( IGESGraph_Color &self ){
Standard_Real Hue;
Standard_Real Lightness;
Standard_Real Saturation;
self.HLSPercentage(Hue,Lightness,Saturation);
return std::make_tuple(Hue,Lightness,Saturation); },
R"#(None)#"
)
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESGraph_Color::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESGraph_Color::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> & (IGESGraph_Color::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESGraph_Color::*)() const>(&IGESGraph_Color::DynamicType),
R"#(None)#"
)
;
// Class IGESGraph_DefinitionLevel from ./opencascade/IGESGraph_DefinitionLevel.hxx
klass = m.attr("IGESGraph_DefinitionLevel");
// nested enums
static_cast<py::class_<IGESGraph_DefinitionLevel ,opencascade::handle<IGESGraph_DefinitionLevel> , IGESData_LevelListEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESGraph_DefinitionLevel::*)( const opencascade::handle<TColStd_HArray1OfInteger> & ) ) static_cast<void (IGESGraph_DefinitionLevel::*)( const opencascade::handle<TColStd_HArray1OfInteger> & ) >(&IGESGraph_DefinitionLevel::Init),
R"#(This method is used to set the fields of the class DefinitionLevel - allLevelNumbers : Values of Level Numbers)#" , py::arg("allLevelNumbers")
)
.def("NbPropertyValues",
(Standard_Integer (IGESGraph_DefinitionLevel::*)() const) static_cast<Standard_Integer (IGESGraph_DefinitionLevel::*)() const>(&IGESGraph_DefinitionLevel::NbPropertyValues),
R"#(returns the number of property values in <me>)#"
)
.def("NbLevelNumbers",
(Standard_Integer (IGESGraph_DefinitionLevel::*)() const) static_cast<Standard_Integer (IGESGraph_DefinitionLevel::*)() const>(&IGESGraph_DefinitionLevel::NbLevelNumbers),
R"#(Must return the count of levels (== NbPropertyValues))#"
)
.def("LevelNumber",
(Standard_Integer (IGESGraph_DefinitionLevel::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IGESGraph_DefinitionLevel::*)( const Standard_Integer ) const>(&IGESGraph_DefinitionLevel::LevelNumber),
R"#(returns the Level Number of <me> indicated by <LevelIndex> raises an exception if LevelIndex is <= 0 or LevelIndex > NbPropertyValues)#" , py::arg("LevelIndex")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESGraph_DefinitionLevel::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESGraph_DefinitionLevel::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> & (IGESGraph_DefinitionLevel::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESGraph_DefinitionLevel::*)() const>(&IGESGraph_DefinitionLevel::DynamicType),
R"#(None)#"
)
;
// Class IGESGraph_DrawingSize from ./opencascade/IGESGraph_DrawingSize.hxx
klass = m.attr("IGESGraph_DrawingSize");
// nested enums
static_cast<py::class_<IGESGraph_DrawingSize ,opencascade::handle<IGESGraph_DrawingSize> , IGESData_IGESEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESGraph_DrawingSize::*)( const Standard_Integer , const Standard_Real , const Standard_Real ) ) static_cast<void (IGESGraph_DrawingSize::*)( const Standard_Integer , const Standard_Real , const Standard_Real ) >(&IGESGraph_DrawingSize::Init),
R"#(This method is used to set the fields of the class DrawingSize - nbProps : Number of property values (NP = 2) - aXSize : Extent of Drawing along positive XD axis - aYSize : Extent of Drawing along positive YD axis)#" , py::arg("nbProps"), py::arg("aXSize"), py::arg("aYSize")
)
.def("NbPropertyValues",
(Standard_Integer (IGESGraph_DrawingSize::*)() const) static_cast<Standard_Integer (IGESGraph_DrawingSize::*)() const>(&IGESGraph_DrawingSize::NbPropertyValues),
R"#(returns the number of property values in <me> (NP = 2))#"
)
.def("XSize",
(Standard_Real (IGESGraph_DrawingSize::*)() const) static_cast<Standard_Real (IGESGraph_DrawingSize::*)() const>(&IGESGraph_DrawingSize::XSize),
R"#(returns the extent of Drawing along positive XD axis)#"
)
.def("YSize",
(Standard_Real (IGESGraph_DrawingSize::*)() const) static_cast<Standard_Real (IGESGraph_DrawingSize::*)() const>(&IGESGraph_DrawingSize::YSize),
R"#(returns the extent of Drawing along positive YD axis)#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESGraph_DrawingSize::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESGraph_DrawingSize::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> & (IGESGraph_DrawingSize::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESGraph_DrawingSize::*)() const>(&IGESGraph_DrawingSize::DynamicType),
R"#(None)#"
)
;
// Class IGESGraph_DrawingUnits from ./opencascade/IGESGraph_DrawingUnits.hxx
klass = m.attr("IGESGraph_DrawingUnits");
// nested enums
static_cast<py::class_<IGESGraph_DrawingUnits ,opencascade::handle<IGESGraph_DrawingUnits> , IGESData_IGESEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESGraph_DrawingUnits::*)( const Standard_Integer , const Standard_Integer , const opencascade::handle<TCollection_HAsciiString> & ) ) static_cast<void (IGESGraph_DrawingUnits::*)( const Standard_Integer , const Standard_Integer , const opencascade::handle<TCollection_HAsciiString> & ) >(&IGESGraph_DrawingUnits::Init),
R"#(This method is used to set the fields of the class DrawingUnits - nbProps : Number of property values (NP = 2) - aFlag : DrawingUnits Flag - aUnit : DrawingUnits Name)#" , py::arg("nbProps"), py::arg("aFlag"), py::arg("aUnit")
)
.def("NbPropertyValues",
(Standard_Integer (IGESGraph_DrawingUnits::*)() const) static_cast<Standard_Integer (IGESGraph_DrawingUnits::*)() const>(&IGESGraph_DrawingUnits::NbPropertyValues),
R"#(returns the number of property values in <me>)#"
)
.def("Flag",
(Standard_Integer (IGESGraph_DrawingUnits::*)() const) static_cast<Standard_Integer (IGESGraph_DrawingUnits::*)() const>(&IGESGraph_DrawingUnits::Flag),
R"#(returns the drawing space units of <me>)#"
)
.def("Unit",
(opencascade::handle<TCollection_HAsciiString> (IGESGraph_DrawingUnits::*)() const) static_cast<opencascade::handle<TCollection_HAsciiString> (IGESGraph_DrawingUnits::*)() const>(&IGESGraph_DrawingUnits::Unit),
R"#(returns the name of the drawing space units of <me>)#"
)
.def("UnitValue",
(Standard_Real (IGESGraph_DrawingUnits::*)() const) static_cast<Standard_Real (IGESGraph_DrawingUnits::*)() const>(&IGESGraph_DrawingUnits::UnitValue),
R"#(Computes the value of the unit, in meters, according Flag (same values as for GlobalSection from IGESData))#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESGraph_DrawingUnits::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESGraph_DrawingUnits::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> & (IGESGraph_DrawingUnits::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESGraph_DrawingUnits::*)() const>(&IGESGraph_DrawingUnits::DynamicType),
R"#(None)#"
)
;
// Class IGESGraph_GeneralModule from ./opencascade/IGESGraph_GeneralModule.hxx
klass = m.attr("IGESGraph_GeneralModule");
// nested enums
static_cast<py::class_<IGESGraph_GeneralModule ,opencascade::handle<IGESGraph_GeneralModule> , IGESData_GeneralModule >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("OwnSharedCase",
(void (IGESGraph_GeneralModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , Interface_EntityIterator & ) const) static_cast<void (IGESGraph_GeneralModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , Interface_EntityIterator & ) const>(&IGESGraph_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("DirChecker",
(IGESData_DirChecker (IGESGraph_GeneralModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & ) const) static_cast<IGESData_DirChecker (IGESGraph_GeneralModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & ) const>(&IGESGraph_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 (IGESGraph_GeneralModule::*)( const Standard_Integer , opencascade::handle<Standard_Transient> & ) const) static_cast<Standard_Boolean (IGESGraph_GeneralModule::*)( const Standard_Integer , opencascade::handle<Standard_Transient> & ) const>(&IGESGraph_GeneralModule::NewVoid),
R"#(Specific creation of a new void entity)#" , py::arg("CN"), py::arg("entto")
)
.def("OwnCopyCase",
(void (IGESGraph_GeneralModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , const opencascade::handle<IGESData_IGESEntity> & , Interface_CopyTool & ) const) static_cast<void (IGESGraph_GeneralModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , const opencascade::handle<IGESData_IGESEntity> & , Interface_CopyTool & ) const>(&IGESGraph_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("CategoryNumber",
(Standard_Integer (IGESGraph_GeneralModule::*)( const Standard_Integer , const opencascade::handle<Standard_Transient> & , const Interface_ShareTool & ) const) static_cast<Standard_Integer (IGESGraph_GeneralModule::*)( const Standard_Integer , const opencascade::handle<Standard_Transient> & , const Interface_ShareTool & ) const>(&IGESGraph_GeneralModule::CategoryNumber),
R"#(Returns a category number which characterizes an entity Drawing for all)#" , py::arg("CN"), py::arg("ent"), py::arg("shares")
)
// methods using call by reference i.s.o. return
.def("OwnCheckCase",
[]( IGESGraph_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 * (*)() >(&IGESGraph_GeneralModule::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESGraph_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> & (IGESGraph_GeneralModule::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESGraph_GeneralModule::*)() const>(&IGESGraph_GeneralModule::DynamicType),
R"#(None)#"
)
;
// Class IGESGraph_HArray1OfColor from ./opencascade/IGESGraph_HArray1OfColor.hxx
klass = m.attr("IGESGraph_HArray1OfColor");
// nested enums
static_cast<py::class_<IGESGraph_HArray1OfColor ,opencascade::handle<IGESGraph_HArray1OfColor> , IGESGraph_Array1OfColor , 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<IGESGraph_Color> & >() , py::arg("theLower"), py::arg("theUpper"), py::arg("theValue") )
.def(py::init< const opencascade::handle<IGESGraph_Color> &,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<IGESGraph_Color>> & >() , 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 * (*)() >(&IGESGraph_HArray1OfColor::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESGraph_HArray1OfColor::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 IGESGraph_Array1OfColor & (IGESGraph_HArray1OfColor::*)() const) static_cast<const IGESGraph_Array1OfColor & (IGESGraph_HArray1OfColor::*)() const>(&IGESGraph_HArray1OfColor::Array1),
R"#(None)#"
)
.def("ChangeArray1",
(IGESGraph_Array1OfColor & (IGESGraph_HArray1OfColor::*)() ) static_cast<IGESGraph_Array1OfColor & (IGESGraph_HArray1OfColor::*)() >(&IGESGraph_HArray1OfColor::ChangeArray1),
R"#(None)#"
, py::return_value_policy::reference_internal
)
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESGraph_HArray1OfColor::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESGraph_HArray1OfColor::*)() const>(&IGESGraph_HArray1OfColor::DynamicType),
R"#(None)#"
)
;
// Class IGESGraph_HArray1OfTextDisplayTemplate from ./opencascade/IGESGraph_HArray1OfTextDisplayTemplate.hxx
klass = m.attr("IGESGraph_HArray1OfTextDisplayTemplate");
// nested enums
static_cast<py::class_<IGESGraph_HArray1OfTextDisplayTemplate ,opencascade::handle<IGESGraph_HArray1OfTextDisplayTemplate> , IGESGraph_Array1OfTextDisplayTemplate , 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<IGESGraph_TextDisplayTemplate> & >() , py::arg("theLower"), py::arg("theUpper"), py::arg("theValue") )
.def(py::init< const opencascade::handle<IGESGraph_TextDisplayTemplate> &,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<IGESGraph_TextDisplayTemplate>> & >() , 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 * (*)() >(&IGESGraph_HArray1OfTextDisplayTemplate::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESGraph_HArray1OfTextDisplayTemplate::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 IGESGraph_Array1OfTextDisplayTemplate & (IGESGraph_HArray1OfTextDisplayTemplate::*)() const) static_cast<const IGESGraph_Array1OfTextDisplayTemplate & (IGESGraph_HArray1OfTextDisplayTemplate::*)() const>(&IGESGraph_HArray1OfTextDisplayTemplate::Array1),
R"#(None)#"
)
.def("ChangeArray1",
(IGESGraph_Array1OfTextDisplayTemplate & (IGESGraph_HArray1OfTextDisplayTemplate::*)() ) static_cast<IGESGraph_Array1OfTextDisplayTemplate & (IGESGraph_HArray1OfTextDisplayTemplate::*)() >(&IGESGraph_HArray1OfTextDisplayTemplate::ChangeArray1),
R"#(None)#"
, py::return_value_policy::reference_internal
)
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESGraph_HArray1OfTextDisplayTemplate::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESGraph_HArray1OfTextDisplayTemplate::*)() const>(&IGESGraph_HArray1OfTextDisplayTemplate::DynamicType),
R"#(None)#"
)
;
// Class IGESGraph_HArray1OfTextFontDef from ./opencascade/IGESGraph_HArray1OfTextFontDef.hxx
klass = m.attr("IGESGraph_HArray1OfTextFontDef");
// nested enums
static_cast<py::class_<IGESGraph_HArray1OfTextFontDef ,opencascade::handle<IGESGraph_HArray1OfTextFontDef> , IGESGraph_Array1OfTextFontDef , 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<IGESGraph_TextFontDef> & >() , py::arg("theLower"), py::arg("theUpper"), py::arg("theValue") )
.def(py::init< const opencascade::handle<IGESGraph_TextFontDef> &,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<IGESGraph_TextFontDef>> & >() , 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 * (*)() >(&IGESGraph_HArray1OfTextFontDef::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESGraph_HArray1OfTextFontDef::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 IGESGraph_Array1OfTextFontDef & (IGESGraph_HArray1OfTextFontDef::*)() const) static_cast<const IGESGraph_Array1OfTextFontDef & (IGESGraph_HArray1OfTextFontDef::*)() const>(&IGESGraph_HArray1OfTextFontDef::Array1),
R"#(None)#"
)
.def("ChangeArray1",
(IGESGraph_Array1OfTextFontDef & (IGESGraph_HArray1OfTextFontDef::*)() ) static_cast<IGESGraph_Array1OfTextFontDef & (IGESGraph_HArray1OfTextFontDef::*)() >(&IGESGraph_HArray1OfTextFontDef::ChangeArray1),
R"#(None)#"
, py::return_value_policy::reference_internal
)
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESGraph_HArray1OfTextFontDef::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESGraph_HArray1OfTextFontDef::*)() const>(&IGESGraph_HArray1OfTextFontDef::DynamicType),
R"#(None)#"
)
;
// Class IGESGraph_HighLight from ./opencascade/IGESGraph_HighLight.hxx
klass = m.attr("IGESGraph_HighLight");
// nested enums
static_cast<py::class_<IGESGraph_HighLight ,opencascade::handle<IGESGraph_HighLight> , IGESData_IGESEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESGraph_HighLight::*)( const Standard_Integer , const Standard_Integer ) ) static_cast<void (IGESGraph_HighLight::*)( const Standard_Integer , const Standard_Integer ) >(&IGESGraph_HighLight::Init),
R"#(This method is used to set the fields of the class HighLight - nbProps : Number of property values (NP = 1) - aHighLightStatus : HighLight Flag)#" , py::arg("nbProps"), py::arg("aHighLightStatus")
)
.def("NbPropertyValues",
(Standard_Integer (IGESGraph_HighLight::*)() const) static_cast<Standard_Integer (IGESGraph_HighLight::*)() const>(&IGESGraph_HighLight::NbPropertyValues),
R"#(returns the number of property values in <me>)#"
)
.def("HighLightStatus",
(Standard_Integer (IGESGraph_HighLight::*)() const) static_cast<Standard_Integer (IGESGraph_HighLight::*)() const>(&IGESGraph_HighLight::HighLightStatus),
R"#(returns 0 if <me> is not highlighted(default), 1 if <me> is highlighted)#"
)
.def("IsHighLighted",
(Standard_Boolean (IGESGraph_HighLight::*)() const) static_cast<Standard_Boolean (IGESGraph_HighLight::*)() const>(&IGESGraph_HighLight::IsHighLighted),
R"#(returns True if entity is highlighted)#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESGraph_HighLight::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESGraph_HighLight::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> & (IGESGraph_HighLight::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESGraph_HighLight::*)() const>(&IGESGraph_HighLight::DynamicType),
R"#(None)#"
)
;
// Class IGESGraph_IntercharacterSpacing from ./opencascade/IGESGraph_IntercharacterSpacing.hxx
klass = m.attr("IGESGraph_IntercharacterSpacing");
// nested enums
static_cast<py::class_<IGESGraph_IntercharacterSpacing ,opencascade::handle<IGESGraph_IntercharacterSpacing> , IGESData_IGESEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESGraph_IntercharacterSpacing::*)( const Standard_Integer , const Standard_Real ) ) static_cast<void (IGESGraph_IntercharacterSpacing::*)( const Standard_Integer , const Standard_Real ) >(&IGESGraph_IntercharacterSpacing::Init),
R"#(This method is used to set the fields of the class IntercharacterSpacing - nbProps : Number of property values (NP = 1) - anISpace : Intercharacter spacing percentage)#" , py::arg("nbProps"), py::arg("anISpace")
)
.def("NbPropertyValues",
(Standard_Integer (IGESGraph_IntercharacterSpacing::*)() const) static_cast<Standard_Integer (IGESGraph_IntercharacterSpacing::*)() const>(&IGESGraph_IntercharacterSpacing::NbPropertyValues),
R"#(returns the number of property values in <me>)#"
)
.def("ISpace",
(Standard_Real (IGESGraph_IntercharacterSpacing::*)() const) static_cast<Standard_Real (IGESGraph_IntercharacterSpacing::*)() const>(&IGESGraph_IntercharacterSpacing::ISpace),
R"#(returns the Intercharacter Space of <me> in percentage of the text height (Range = 0..100))#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESGraph_IntercharacterSpacing::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESGraph_IntercharacterSpacing::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> & (IGESGraph_IntercharacterSpacing::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESGraph_IntercharacterSpacing::*)() const>(&IGESGraph_IntercharacterSpacing::DynamicType),
R"#(None)#"
)
;
// Class IGESGraph_LineFontDefPattern from ./opencascade/IGESGraph_LineFontDefPattern.hxx
klass = m.attr("IGESGraph_LineFontDefPattern");
// nested enums
static_cast<py::class_<IGESGraph_LineFontDefPattern ,opencascade::handle<IGESGraph_LineFontDefPattern> , IGESData_LineFontEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESGraph_LineFontDefPattern::*)( const opencascade::handle<TColStd_HArray1OfReal> & , const opencascade::handle<TCollection_HAsciiString> & ) ) static_cast<void (IGESGraph_LineFontDefPattern::*)( const opencascade::handle<TColStd_HArray1OfReal> & , const opencascade::handle<TCollection_HAsciiString> & ) >(&IGESGraph_LineFontDefPattern::Init),
R"#(This method is used to set the fields of the class LineFontDefPattern - allSegLength : Containing lengths of respective segments - aPattern : HAsciiString indicating visible-blank segments)#" , py::arg("allSegLength"), py::arg("aPattern")
)
.def("NbSegments",
(Standard_Integer (IGESGraph_LineFontDefPattern::*)() const) static_cast<Standard_Integer (IGESGraph_LineFontDefPattern::*)() const>(&IGESGraph_LineFontDefPattern::NbSegments),
R"#(returns the number of segments in the visible-blank pattern)#"
)
.def("Length",
(Standard_Real (IGESGraph_LineFontDefPattern::*)( const Standard_Integer ) const) static_cast<Standard_Real (IGESGraph_LineFontDefPattern::*)( const Standard_Integer ) const>(&IGESGraph_LineFontDefPattern::Length),
R"#(returns the Length of Index'th segment of the basic pattern raises exception if Index <= 0 or Index > NbSegments)#" , py::arg("Index")
)
.def("DisplayPattern",
(opencascade::handle<TCollection_HAsciiString> (IGESGraph_LineFontDefPattern::*)() const) static_cast<opencascade::handle<TCollection_HAsciiString> (IGESGraph_LineFontDefPattern::*)() const>(&IGESGraph_LineFontDefPattern::DisplayPattern),
R"#(returns the string indicating which segments of the basic pattern are visible and which are blanked. e.g: theNbSegments = 5 and if Bit Pattern = 10110, which means that segments 2, 3 and 5 are visible, whereas segments 1 and 4 are blank. The method returns "2H16" as the HAsciiString. Note: The bits are right justified. (16h = 10110))#"
)
.def("IsVisible",
(Standard_Boolean (IGESGraph_LineFontDefPattern::*)( const Standard_Integer ) const) static_cast<Standard_Boolean (IGESGraph_LineFontDefPattern::*)( const Standard_Integer ) const>(&IGESGraph_LineFontDefPattern::IsVisible),
R"#(The Display Pattern is decrypted to return True if the Index'th basic pattern is Visible, False otherwise. If Index > NbSegments or Index <= 0 then return value is False.)#" , 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 * (*)() >(&IGESGraph_LineFontDefPattern::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESGraph_LineFontDefPattern::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> & (IGESGraph_LineFontDefPattern::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESGraph_LineFontDefPattern::*)() const>(&IGESGraph_LineFontDefPattern::DynamicType),
R"#(None)#"
)
;
// Class IGESGraph_LineFontDefTemplate from ./opencascade/IGESGraph_LineFontDefTemplate.hxx
klass = m.attr("IGESGraph_LineFontDefTemplate");
// nested enums
static_cast<py::class_<IGESGraph_LineFontDefTemplate ,opencascade::handle<IGESGraph_LineFontDefTemplate> , IGESData_LineFontEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESGraph_LineFontDefTemplate::*)( const Standard_Integer , const opencascade::handle<IGESBasic_SubfigureDef> & , const Standard_Real , const Standard_Real ) ) static_cast<void (IGESGraph_LineFontDefTemplate::*)( const Standard_Integer , const opencascade::handle<IGESBasic_SubfigureDef> & , const Standard_Real , const Standard_Real ) >(&IGESGraph_LineFontDefTemplate::Init),
R"#(This method is used to set the fields of the class LineFontDefTemplate - anOrientation : Orientation of Template figure on anchoring curve - aTemplate : SubfigureDef entity used as Template figure - aDistance : Distance between the neighbouring Template figures - aScale : Scale factor applied to the Template figure)#" , py::arg("anOrientation"), py::arg("aTemplate"), py::arg("aDistance"), py::arg("aScale")
)
.def("Orientation",
(Standard_Integer (IGESGraph_LineFontDefTemplate::*)() const) static_cast<Standard_Integer (IGESGraph_LineFontDefTemplate::*)() const>(&IGESGraph_LineFontDefTemplate::Orientation),
R"#(if return value = 0, Each Template display is oriented by aligning the axis of the SubfigureDef with the axis of the definition space of the anchoring curve. = 1, Each Template display is oriented by aligning X-axis of the SubfigureDef with the tangent vector of the anchoring curve at the point of incidence of the curve and the origin of subfigure. Similarly Z-axis is aligned.)#"
)
.def("TemplateEntity",
(opencascade::handle<IGESBasic_SubfigureDef> (IGESGraph_LineFontDefTemplate::*)() const) static_cast<opencascade::handle<IGESBasic_SubfigureDef> (IGESGraph_LineFontDefTemplate::*)() const>(&IGESGraph_LineFontDefTemplate::TemplateEntity),
R"#(returns SubfigureDef as the Entity used as Template figure.)#"
)
.def("Distance",
(Standard_Real (IGESGraph_LineFontDefTemplate::*)() const) static_cast<Standard_Real (IGESGraph_LineFontDefTemplate::*)() const>(&IGESGraph_LineFontDefTemplate::Distance),
R"#(returns the Distance between any two Template figures on the anchoring curve.)#"
)
.def("Scale",
(Standard_Real (IGESGraph_LineFontDefTemplate::*)() const) static_cast<Standard_Real (IGESGraph_LineFontDefTemplate::*)() const>(&IGESGraph_LineFontDefTemplate::Scale),
R"#(returns the Scaling factor applied to SubfigureDef to form Template figure.)#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESGraph_LineFontDefTemplate::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESGraph_LineFontDefTemplate::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> & (IGESGraph_LineFontDefTemplate::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESGraph_LineFontDefTemplate::*)() const>(&IGESGraph_LineFontDefTemplate::DynamicType),
R"#(None)#"
)
;
// Class IGESGraph_LineFontPredefined from ./opencascade/IGESGraph_LineFontPredefined.hxx
klass = m.attr("IGESGraph_LineFontPredefined");
// nested enums
static_cast<py::class_<IGESGraph_LineFontPredefined ,opencascade::handle<IGESGraph_LineFontPredefined> , IGESData_IGESEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESGraph_LineFontPredefined::*)( const Standard_Integer , const Standard_Integer ) ) static_cast<void (IGESGraph_LineFontPredefined::*)( const Standard_Integer , const Standard_Integer ) >(&IGESGraph_LineFontPredefined::Init),
R"#(This method is used to set the fields of the class LineFontPredefined - nbProps : Number of property values (NP = 1) - aLineFontPatternCode : Line Font Pattern Code)#" , py::arg("nbProps"), py::arg("aLineFontPatternCode")
)
.def("NbPropertyValues",
(Standard_Integer (IGESGraph_LineFontPredefined::*)() const) static_cast<Standard_Integer (IGESGraph_LineFontPredefined::*)() const>(&IGESGraph_LineFontPredefined::NbPropertyValues),
R"#(returns the number of property values in <me>)#"
)
.def("LineFontPatternCode",
(Standard_Integer (IGESGraph_LineFontPredefined::*)() const) static_cast<Standard_Integer (IGESGraph_LineFontPredefined::*)() const>(&IGESGraph_LineFontPredefined::LineFontPatternCode),
R"#(returns the Line Font Pattern Code of <me>)#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESGraph_LineFontPredefined::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESGraph_LineFontPredefined::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> & (IGESGraph_LineFontPredefined::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESGraph_LineFontPredefined::*)() const>(&IGESGraph_LineFontPredefined::DynamicType),
R"#(None)#"
)
;
// Class IGESGraph_NominalSize from ./opencascade/IGESGraph_NominalSize.hxx
klass = m.attr("IGESGraph_NominalSize");
// nested enums
static_cast<py::class_<IGESGraph_NominalSize ,opencascade::handle<IGESGraph_NominalSize> , IGESData_IGESEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESGraph_NominalSize::*)( const Standard_Integer , const Standard_Real , const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<TCollection_HAsciiString> & ) ) static_cast<void (IGESGraph_NominalSize::*)( const Standard_Integer , const Standard_Real , const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<TCollection_HAsciiString> & ) >(&IGESGraph_NominalSize::Init),
R"#(This method is used to set the fields of the class NominalSize - nbProps : Number of property values (2 or 3) - aNominalSizeValue : NominalSize Value - aNominalSizeName : NominalSize Name - aStandardName : Name of relevant engineering standard)#" , py::arg("nbProps"), py::arg("aNominalSizeValue"), py::arg("aNominalSizeName"), py::arg("aStandardName")
)
.def("NbPropertyValues",
(Standard_Integer (IGESGraph_NominalSize::*)() const) static_cast<Standard_Integer (IGESGraph_NominalSize::*)() const>(&IGESGraph_NominalSize::NbPropertyValues),
R"#(returns the number of property values in <me>)#"
)
.def("NominalSizeValue",
(Standard_Real (IGESGraph_NominalSize::*)() const) static_cast<Standard_Real (IGESGraph_NominalSize::*)() const>(&IGESGraph_NominalSize::NominalSizeValue),
R"#(returns the value of <me>)#"
)
.def("NominalSizeName",
(opencascade::handle<TCollection_HAsciiString> (IGESGraph_NominalSize::*)() const) static_cast<opencascade::handle<TCollection_HAsciiString> (IGESGraph_NominalSize::*)() const>(&IGESGraph_NominalSize::NominalSizeName),
R"#(returns the name of <me>)#"
)
.def("HasStandardName",
(Standard_Boolean (IGESGraph_NominalSize::*)() const) static_cast<Standard_Boolean (IGESGraph_NominalSize::*)() const>(&IGESGraph_NominalSize::HasStandardName),
R"#(returns True if an engineering Standard is defined for <me> else, returns False)#"
)
.def("StandardName",
(opencascade::handle<TCollection_HAsciiString> (IGESGraph_NominalSize::*)() const) static_cast<opencascade::handle<TCollection_HAsciiString> (IGESGraph_NominalSize::*)() const>(&IGESGraph_NominalSize::StandardName),
R"#(returns the name of the relevant engineering standard of <me>)#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESGraph_NominalSize::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESGraph_NominalSize::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> & (IGESGraph_NominalSize::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESGraph_NominalSize::*)() const>(&IGESGraph_NominalSize::DynamicType),
R"#(None)#"
)
;
// Class IGESGraph_Pick from ./opencascade/IGESGraph_Pick.hxx
klass = m.attr("IGESGraph_Pick");
// nested enums
static_cast<py::class_<IGESGraph_Pick ,opencascade::handle<IGESGraph_Pick> , IGESData_IGESEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESGraph_Pick::*)( const Standard_Integer , const Standard_Integer ) ) static_cast<void (IGESGraph_Pick::*)( const Standard_Integer , const Standard_Integer ) >(&IGESGraph_Pick::Init),
R"#(This method is used to set the fields of the class Pick - nbProps : Number of property values (NP = 1) - aPickStatus : Pick Flag)#" , py::arg("nbProps"), py::arg("aPickStatus")
)
.def("NbPropertyValues",
(Standard_Integer (IGESGraph_Pick::*)() const) static_cast<Standard_Integer (IGESGraph_Pick::*)() const>(&IGESGraph_Pick::NbPropertyValues),
R"#(returns the number of property values in <me>.)#"
)
.def("PickFlag",
(Standard_Integer (IGESGraph_Pick::*)() const) static_cast<Standard_Integer (IGESGraph_Pick::*)() const>(&IGESGraph_Pick::PickFlag),
R"#(returns 0 if <me> is pickable(default), 1 if <me> is not pickable.)#"
)
.def("IsPickable",
(Standard_Boolean (IGESGraph_Pick::*)() const) static_cast<Standard_Boolean (IGESGraph_Pick::*)() const>(&IGESGraph_Pick::IsPickable),
R"#(returns True if thePick is 0.)#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESGraph_Pick::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESGraph_Pick::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> & (IGESGraph_Pick::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESGraph_Pick::*)() const>(&IGESGraph_Pick::DynamicType),
R"#(None)#"
)
;
// Class IGESGraph_Protocol from ./opencascade/IGESGraph_Protocol.hxx
klass = m.attr("IGESGraph_Protocol");
// nested enums
static_cast<py::class_<IGESGraph_Protocol ,opencascade::handle<IGESGraph_Protocol> , IGESData_Protocol >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("NbResources",
(Standard_Integer (IGESGraph_Protocol::*)() const) static_cast<Standard_Integer (IGESGraph_Protocol::*)() const>(&IGESGraph_Protocol::NbResources),
R"#(Gives the count of Resource Protocol. Here, one (Protocol from IGESBasic))#"
)
.def("Resource",
(opencascade::handle<Interface_Protocol> (IGESGraph_Protocol::*)( const Standard_Integer ) const) static_cast<opencascade::handle<Interface_Protocol> (IGESGraph_Protocol::*)( const Standard_Integer ) const>(&IGESGraph_Protocol::Resource),
R"#(Returns a Resource, given a rank.)#" , py::arg("num")
)
.def("TypeNumber",
(Standard_Integer (IGESGraph_Protocol::*)( const opencascade::handle<Standard_Type> & ) const) static_cast<Standard_Integer (IGESGraph_Protocol::*)( const opencascade::handle<Standard_Type> & ) const>(&IGESGraph_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 * (*)() >(&IGESGraph_Protocol::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESGraph_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> & (IGESGraph_Protocol::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESGraph_Protocol::*)() const>(&IGESGraph_Protocol::DynamicType),
R"#(None)#"
)
;
// Class IGESGraph_ReadWriteModule from ./opencascade/IGESGraph_ReadWriteModule.hxx
klass = m.attr("IGESGraph_ReadWriteModule");
// nested enums
static_cast<py::class_<IGESGraph_ReadWriteModule ,opencascade::handle<IGESGraph_ReadWriteModule> , IGESData_ReadWriteModule >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("CaseIGES",
(Standard_Integer (IGESGraph_ReadWriteModule::*)( const Standard_Integer , const Standard_Integer ) const) static_cast<Standard_Integer (IGESGraph_ReadWriteModule::*)( const Standard_Integer , const Standard_Integer ) const>(&IGESGraph_ReadWriteModule::CaseIGES),
R"#(Defines Case Numbers for Entities of IGESGraph)#" , py::arg("typenum"), py::arg("formnum")
)
.def("ReadOwnParams",
(void (IGESGraph_ReadWriteModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESGraph_ReadWriteModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESGraph_ReadWriteModule::ReadOwnParams),
R"#(Reads own parameters from file for an Entity of IGESGraph)#" , py::arg("CN"), py::arg("ent"), py::arg("IR"), py::arg("PR")
)
.def("WriteOwnParams",
(void (IGESGraph_ReadWriteModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , IGESData_IGESWriter & ) const) static_cast<void (IGESGraph_ReadWriteModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , IGESData_IGESWriter & ) const>(&IGESGraph_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 * (*)() >(&IGESGraph_ReadWriteModule::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESGraph_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> & (IGESGraph_ReadWriteModule::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESGraph_ReadWriteModule::*)() const>(&IGESGraph_ReadWriteModule::DynamicType),
R"#(None)#"
)
;
// Class IGESGraph_SpecificModule from ./opencascade/IGESGraph_SpecificModule.hxx
klass = m.attr("IGESGraph_SpecificModule");
// nested enums
static_cast<py::class_<IGESGraph_SpecificModule ,opencascade::handle<IGESGraph_SpecificModule> , IGESData_SpecificModule >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("OwnDump",
(void (IGESGraph_SpecificModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESGraph_SpecificModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESGraph_SpecificModule::OwnDump),
R"#(Specific Dump (own parameters) for IGESGraph)#" , py::arg("CN"), py::arg("ent"), py::arg("dumper"), py::arg("S"), py::arg("own")
)
.def("OwnCorrect",
(Standard_Boolean (IGESGraph_SpecificModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & ) const) static_cast<Standard_Boolean (IGESGraph_SpecificModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & ) const>(&IGESGraph_SpecificModule::OwnCorrect),
R"#(Performs non-ambiguous Corrections on Entities which support them (DrawingSize,DrawingUnits,HighLight,IntercharacterSpacing, LineFontPredefined,NominalSize,Pick,UniformRectGrid))#" , 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 * (*)() >(&IGESGraph_SpecificModule::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESGraph_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> & (IGESGraph_SpecificModule::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESGraph_SpecificModule::*)() const>(&IGESGraph_SpecificModule::DynamicType),
R"#(None)#"
)
;
// Class IGESGraph_TextDisplayTemplate from ./opencascade/IGESGraph_TextDisplayTemplate.hxx
klass = m.attr("IGESGraph_TextDisplayTemplate");
// nested enums
static_cast<py::class_<IGESGraph_TextDisplayTemplate ,opencascade::handle<IGESGraph_TextDisplayTemplate> , IGESData_IGESEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESGraph_TextDisplayTemplate::*)( const Standard_Real , const Standard_Real , const Standard_Integer , const opencascade::handle<IGESGraph_TextFontDef> & , const Standard_Real , const Standard_Real , const Standard_Integer , const Standard_Integer , const gp_XYZ & ) ) static_cast<void (IGESGraph_TextDisplayTemplate::*)( const Standard_Real , const Standard_Real , const Standard_Integer , const opencascade::handle<IGESGraph_TextFontDef> & , const Standard_Real , const Standard_Real , const Standard_Integer , const Standard_Integer , const gp_XYZ & ) >(&IGESGraph_TextDisplayTemplate::Init),
R"#(This method is used to set the fields of the class TextDisplayTemplate - aWidth : Character box width - aHeight : Character box height - afontCode : Font code - aFontEntity : Text Font Definition Entity - aSlantAngle : Slant angle - aRotationAngle : Rotation angle - aMirrorFlag : Mirror Flag - aRotationFlag : Rotate internal text flag - aCorner : Lower left corner coordinates(Form No. 0), Increments from coordinates (Form No. 1))#" , py::arg("aWidth"), py::arg("aHeight"), py::arg("aFontCode"), py::arg("aFontEntity"), py::arg("aSlantAngle"), py::arg("aRotationAngle"), py::arg("aMirrorFlag"), py::arg("aRotationFlag"), py::arg("aCorner")
)
.def("SetIncremental",
(void (IGESGraph_TextDisplayTemplate::*)( const Standard_Boolean ) ) static_cast<void (IGESGraph_TextDisplayTemplate::*)( const Standard_Boolean ) >(&IGESGraph_TextDisplayTemplate::SetIncremental),
R"#(Sets <me> to be Incremental (Form 1) if <mode> is True, or Basolute (Form 0) else)#" , py::arg("mode")
)
.def("IsIncremental",
(Standard_Boolean (IGESGraph_TextDisplayTemplate::*)() const) static_cast<Standard_Boolean (IGESGraph_TextDisplayTemplate::*)() const>(&IGESGraph_TextDisplayTemplate::IsIncremental),
R"#(returns True if entity is Incremental (Form 1). False if entity is Absolute (Form 0).)#"
)
.def("BoxWidth",
(Standard_Real (IGESGraph_TextDisplayTemplate::*)() const) static_cast<Standard_Real (IGESGraph_TextDisplayTemplate::*)() const>(&IGESGraph_TextDisplayTemplate::BoxWidth),
R"#(returns Character Box Width.)#"
)
.def("BoxHeight",
(Standard_Real (IGESGraph_TextDisplayTemplate::*)() const) static_cast<Standard_Real (IGESGraph_TextDisplayTemplate::*)() const>(&IGESGraph_TextDisplayTemplate::BoxHeight),
R"#(returns Character Box Height.)#"
)
.def("IsFontEntity",
(Standard_Boolean (IGESGraph_TextDisplayTemplate::*)() const) static_cast<Standard_Boolean (IGESGraph_TextDisplayTemplate::*)() const>(&IGESGraph_TextDisplayTemplate::IsFontEntity),
R"#(returns False if theFontEntity is Null, True otherwise.)#"
)
.def("FontCode",
(Standard_Integer (IGESGraph_TextDisplayTemplate::*)() const) static_cast<Standard_Integer (IGESGraph_TextDisplayTemplate::*)() const>(&IGESGraph_TextDisplayTemplate::FontCode),
R"#(returns the font code.)#"
)
.def("FontEntity",
(opencascade::handle<IGESGraph_TextFontDef> (IGESGraph_TextDisplayTemplate::*)() const) static_cast<opencascade::handle<IGESGraph_TextFontDef> (IGESGraph_TextDisplayTemplate::*)() const>(&IGESGraph_TextDisplayTemplate::FontEntity),
R"#(returns Text Font Definition Entity used to define the font.)#"
)
.def("SlantAngle",
(Standard_Real (IGESGraph_TextDisplayTemplate::*)() const) static_cast<Standard_Real (IGESGraph_TextDisplayTemplate::*)() const>(&IGESGraph_TextDisplayTemplate::SlantAngle),
R"#(returns slant angle of character in radians.)#"
)
.def("RotationAngle",
(Standard_Real (IGESGraph_TextDisplayTemplate::*)() const) static_cast<Standard_Real (IGESGraph_TextDisplayTemplate::*)() const>(&IGESGraph_TextDisplayTemplate::RotationAngle),
R"#(returns Rotation angle of text block in radians.)#"
)
.def("MirrorFlag",
(Standard_Integer (IGESGraph_TextDisplayTemplate::*)() const) static_cast<Standard_Integer (IGESGraph_TextDisplayTemplate::*)() const>(&IGESGraph_TextDisplayTemplate::MirrorFlag),
R"#(returns Mirror flag Mirror flag : 0 = no mirroring. 1 = mirror axis perpendicular to text base line. 2 = mirror axis is text base line.)#"
)
.def("RotateFlag",
(Standard_Integer (IGESGraph_TextDisplayTemplate::*)() const) static_cast<Standard_Integer (IGESGraph_TextDisplayTemplate::*)() const>(&IGESGraph_TextDisplayTemplate::RotateFlag),
R"#(returns Rotate internal text flag. Rotate internal text flag : 0 = text horizontal. 1 = text vertical.)#"
)
.def("StartingCorner",
(gp_Pnt (IGESGraph_TextDisplayTemplate::*)() const) static_cast<gp_Pnt (IGESGraph_TextDisplayTemplate::*)() const>(&IGESGraph_TextDisplayTemplate::StartingCorner),
R"#(If IsIncremental() returns False, gets coordinates of lower left corner of first character box. If IsIncremental() returns True, gets increments from X, Y, Z coordinates found in parent entity.)#"
)
.def("TransformedStartingCorner",
(gp_Pnt (IGESGraph_TextDisplayTemplate::*)() const) static_cast<gp_Pnt (IGESGraph_TextDisplayTemplate::*)() const>(&IGESGraph_TextDisplayTemplate::TransformedStartingCorner),
R"#(If IsIncremental() returns False, gets coordinates of lower left corner of first character box. If IsIncremental() returns True, gets increments from X, Y, Z coordinates found in parent entity.)#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESGraph_TextDisplayTemplate::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESGraph_TextDisplayTemplate::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> & (IGESGraph_TextDisplayTemplate::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESGraph_TextDisplayTemplate::*)() const>(&IGESGraph_TextDisplayTemplate::DynamicType),
R"#(None)#"
)
;
// Class IGESGraph_TextFontDef from ./opencascade/IGESGraph_TextFontDef.hxx
klass = m.attr("IGESGraph_TextFontDef");
// nested enums
static_cast<py::class_<IGESGraph_TextFontDef ,opencascade::handle<IGESGraph_TextFontDef> , IGESData_IGESEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESGraph_TextFontDef::*)( const Standard_Integer , const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<IGESGraph_TextFontDef> & , const Standard_Integer , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<IGESBasic_HArray1OfHArray1OfInteger> & , const opencascade::handle<IGESBasic_HArray1OfHArray1OfInteger> & , const opencascade::handle<IGESBasic_HArray1OfHArray1OfInteger> & ) ) static_cast<void (IGESGraph_TextFontDef::*)( const Standard_Integer , const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<IGESGraph_TextFontDef> & , const Standard_Integer , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<IGESBasic_HArray1OfHArray1OfInteger> & , const opencascade::handle<IGESBasic_HArray1OfHArray1OfInteger> & , const opencascade::handle<IGESBasic_HArray1OfHArray1OfInteger> & ) >(&IGESGraph_TextFontDef::Init),
R"#(This method is used to set the fields of the class TextFontDef - aFontCode : Font Code - aFontName : Font Name - aSupersededFont : Number of superseded font - aSupersededEntity : Text Definition Entity - aScale : No. of grid units = 1 text height unit - allASCIICodes : ASCII codes for characters - allNextCharX & Y : Grid locations of the next character's origin (Integer vals) - allPenMotions : No. of pen motions for the characters - allPenFlags : Pen up/down flags, 0 = Down (default), 1 = Up - allMovePenToX & Y : Grid locations the pen will move to This method initializes the fields of the class TextFontDef. An exception is raised if the lengths of allASCIICodes, allNextChars, allPenMotions, allPenFlags and allMovePenTo are not same.)#" , py::arg("aFontCode"), py::arg("aFontName"), py::arg("aSupersededFont"), py::arg("aSupersededEntity"), py::arg("aScale"), py::arg("allASCIICodes"), py::arg("allNextCharX"), py::arg("allNextCharY"), py::arg("allPenMotions"), py::arg("allPenFlags"), py::arg("allMovePenToX"), py::arg("allMovePenToY")
)
.def("FontCode",
(Standard_Integer (IGESGraph_TextFontDef::*)() const) static_cast<Standard_Integer (IGESGraph_TextFontDef::*)() const>(&IGESGraph_TextFontDef::FontCode),
R"#(returns the font code.)#"
)
.def("FontName",
(opencascade::handle<TCollection_HAsciiString> (IGESGraph_TextFontDef::*)() const) static_cast<opencascade::handle<TCollection_HAsciiString> (IGESGraph_TextFontDef::*)() const>(&IGESGraph_TextFontDef::FontName),
R"#(returns the font name.)#"
)
.def("IsSupersededFontEntity",
(Standard_Boolean (IGESGraph_TextFontDef::*)() const) static_cast<Standard_Boolean (IGESGraph_TextFontDef::*)() const>(&IGESGraph_TextFontDef::IsSupersededFontEntity),
R"#(True if this definition supersedes another TextFontDefinition Entity, False if it supersedes value.)#"
)
.def("SupersededFontCode",
(Standard_Integer (IGESGraph_TextFontDef::*)() const) static_cast<Standard_Integer (IGESGraph_TextFontDef::*)() const>(&IGESGraph_TextFontDef::SupersededFontCode),
R"#(returns the font number which this entity modifies.)#"
)
.def("SupersededFontEntity",
(opencascade::handle<IGESGraph_TextFontDef> (IGESGraph_TextFontDef::*)() const) static_cast<opencascade::handle<IGESGraph_TextFontDef> (IGESGraph_TextFontDef::*)() const>(&IGESGraph_TextFontDef::SupersededFontEntity),
R"#(returns the font entity which this entity modifies.)#"
)
.def("Scale",
(Standard_Integer (IGESGraph_TextFontDef::*)() const) static_cast<Standard_Integer (IGESGraph_TextFontDef::*)() const>(&IGESGraph_TextFontDef::Scale),
R"#(returns the number of grid units which equal one text height unit.)#"
)
.def("NbCharacters",
(Standard_Integer (IGESGraph_TextFontDef::*)() const) static_cast<Standard_Integer (IGESGraph_TextFontDef::*)() const>(&IGESGraph_TextFontDef::NbCharacters),
R"#(returns the number of characters in this definition.)#"
)
.def("ASCIICode",
(Standard_Integer (IGESGraph_TextFontDef::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IGESGraph_TextFontDef::*)( const Standard_Integer ) const>(&IGESGraph_TextFontDef::ASCIICode),
R"#(returns the ASCII code of Chnum'th character. Exception OutOfRange is raised if Chnum <= 0 or Chnum > NbCharacters)#" , py::arg("Chnum")
)
.def("NbPenMotions",
(Standard_Integer (IGESGraph_TextFontDef::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IGESGraph_TextFontDef::*)( const Standard_Integer ) const>(&IGESGraph_TextFontDef::NbPenMotions),
R"#(returns number of pen motions for Chnum'th character. Exception OutOfRange is raised if Chnum <= 0 or Chnum > NbCharacters)#" , py::arg("Chnum")
)
.def("IsPenUp",
(Standard_Boolean (IGESGraph_TextFontDef::*)( const Standard_Integer , const Standard_Integer ) const) static_cast<Standard_Boolean (IGESGraph_TextFontDef::*)( const Standard_Integer , const Standard_Integer ) const>(&IGESGraph_TextFontDef::IsPenUp),
R"#(returns pen status(True if 1, False if 0) of Motionnum'th motion of Chnum'th character. Exception raised if Chnum <= 0 or Chnum > NbCharacters or Motionnum <= 0 or Motionnum > NbPenMotions)#" , py::arg("Chnum"), py::arg("Motionnum")
)
// methods using call by reference i.s.o. return
.def("NextCharOrigin",
[]( IGESGraph_TextFontDef &self , const Standard_Integer Chnum ){
Standard_Integer NX;
Standard_Integer NY;
self.NextCharOrigin(Chnum,NX,NY);
return std::make_tuple(NX,NY); },
R"#(returns grid location of origin of character next to Chnum'th char. Exception OutOfRange is raised if Chnum <= 0 or Chnum > NbCharacters)#" , py::arg("Chnum")
)
.def("NextPenPosition",
[]( IGESGraph_TextFontDef &self , const Standard_Integer Chnum,const Standard_Integer Motionnum ){
Standard_Integer IX;
Standard_Integer IY;
self.NextPenPosition(Chnum,Motionnum,IX,IY);
return std::make_tuple(IX,IY); },
R"#(None)#" , py::arg("Chnum"), py::arg("Motionnum")
)
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESGraph_TextFontDef::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESGraph_TextFontDef::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> & (IGESGraph_TextFontDef::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESGraph_TextFontDef::*)() const>(&IGESGraph_TextFontDef::DynamicType),
R"#(None)#"
)
;
// Class IGESGraph_ToolColor from ./opencascade/IGESGraph_ToolColor.hxx
klass = m.attr("IGESGraph_ToolColor");
// nested enums
static_cast<py::class_<IGESGraph_ToolColor , shared_ptr<IGESGraph_ToolColor> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESGraph_ToolColor::*)( const opencascade::handle<IGESGraph_Color> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESGraph_ToolColor::*)( const opencascade::handle<IGESGraph_Color> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESGraph_ToolColor::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 (IGESGraph_ToolColor::*)( const opencascade::handle<IGESGraph_Color> & , IGESData_IGESWriter & ) const) static_cast<void (IGESGraph_ToolColor::*)( const opencascade::handle<IGESGraph_Color> & , IGESData_IGESWriter & ) const>(&IGESGraph_ToolColor::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESGraph_ToolColor::*)( const opencascade::handle<IGESGraph_Color> & , Interface_EntityIterator & ) const) static_cast<void (IGESGraph_ToolColor::*)( const opencascade::handle<IGESGraph_Color> & , Interface_EntityIterator & ) const>(&IGESGraph_ToolColor::OwnShared),
R"#(Lists the Entities shared by a Color <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("DirChecker",
(IGESData_DirChecker (IGESGraph_ToolColor::*)( const opencascade::handle<IGESGraph_Color> & ) const) static_cast<IGESData_DirChecker (IGESGraph_ToolColor::*)( const opencascade::handle<IGESGraph_Color> & ) const>(&IGESGraph_ToolColor::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESGraph_ToolColor::*)( const opencascade::handle<IGESGraph_Color> & , const opencascade::handle<IGESGraph_Color> & , Interface_CopyTool & ) const) static_cast<void (IGESGraph_ToolColor::*)( const opencascade::handle<IGESGraph_Color> & , const opencascade::handle<IGESGraph_Color> & , Interface_CopyTool & ) const>(&IGESGraph_ToolColor::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESGraph_ToolColor::*)( const opencascade::handle<IGESGraph_Color> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESGraph_ToolColor::*)( const opencascade::handle<IGESGraph_Color> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESGraph_ToolColor::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",
[]( IGESGraph_ToolColor &self , const opencascade::handle<IGESGraph_Color> & 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 IGESGraph_ToolDefinitionLevel from ./opencascade/IGESGraph_ToolDefinitionLevel.hxx
klass = m.attr("IGESGraph_ToolDefinitionLevel");
// nested enums
static_cast<py::class_<IGESGraph_ToolDefinitionLevel , shared_ptr<IGESGraph_ToolDefinitionLevel> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESGraph_ToolDefinitionLevel::*)( const opencascade::handle<IGESGraph_DefinitionLevel> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESGraph_ToolDefinitionLevel::*)( const opencascade::handle<IGESGraph_DefinitionLevel> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESGraph_ToolDefinitionLevel::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 (IGESGraph_ToolDefinitionLevel::*)( const opencascade::handle<IGESGraph_DefinitionLevel> & , IGESData_IGESWriter & ) const) static_cast<void (IGESGraph_ToolDefinitionLevel::*)( const opencascade::handle<IGESGraph_DefinitionLevel> & , IGESData_IGESWriter & ) const>(&IGESGraph_ToolDefinitionLevel::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESGraph_ToolDefinitionLevel::*)( const opencascade::handle<IGESGraph_DefinitionLevel> & , Interface_EntityIterator & ) const) static_cast<void (IGESGraph_ToolDefinitionLevel::*)( const opencascade::handle<IGESGraph_DefinitionLevel> & , Interface_EntityIterator & ) const>(&IGESGraph_ToolDefinitionLevel::OwnShared),
R"#(Lists the Entities shared by a DefinitionLevel <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("DirChecker",
(IGESData_DirChecker (IGESGraph_ToolDefinitionLevel::*)( const opencascade::handle<IGESGraph_DefinitionLevel> & ) const) static_cast<IGESData_DirChecker (IGESGraph_ToolDefinitionLevel::*)( const opencascade::handle<IGESGraph_DefinitionLevel> & ) const>(&IGESGraph_ToolDefinitionLevel::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESGraph_ToolDefinitionLevel::*)( const opencascade::handle<IGESGraph_DefinitionLevel> & , const opencascade::handle<IGESGraph_DefinitionLevel> & , Interface_CopyTool & ) const) static_cast<void (IGESGraph_ToolDefinitionLevel::*)( const opencascade::handle<IGESGraph_DefinitionLevel> & , const opencascade::handle<IGESGraph_DefinitionLevel> & , Interface_CopyTool & ) const>(&IGESGraph_ToolDefinitionLevel::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESGraph_ToolDefinitionLevel::*)( const opencascade::handle<IGESGraph_DefinitionLevel> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESGraph_ToolDefinitionLevel::*)( const opencascade::handle<IGESGraph_DefinitionLevel> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESGraph_ToolDefinitionLevel::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",
[]( IGESGraph_ToolDefinitionLevel &self , const opencascade::handle<IGESGraph_DefinitionLevel> & 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 IGESGraph_ToolDrawingSize from ./opencascade/IGESGraph_ToolDrawingSize.hxx
klass = m.attr("IGESGraph_ToolDrawingSize");
// nested enums
static_cast<py::class_<IGESGraph_ToolDrawingSize , shared_ptr<IGESGraph_ToolDrawingSize> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESGraph_ToolDrawingSize::*)( const opencascade::handle<IGESGraph_DrawingSize> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESGraph_ToolDrawingSize::*)( const opencascade::handle<IGESGraph_DrawingSize> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESGraph_ToolDrawingSize::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 (IGESGraph_ToolDrawingSize::*)( const opencascade::handle<IGESGraph_DrawingSize> & , IGESData_IGESWriter & ) const) static_cast<void (IGESGraph_ToolDrawingSize::*)( const opencascade::handle<IGESGraph_DrawingSize> & , IGESData_IGESWriter & ) const>(&IGESGraph_ToolDrawingSize::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESGraph_ToolDrawingSize::*)( const opencascade::handle<IGESGraph_DrawingSize> & , Interface_EntityIterator & ) const) static_cast<void (IGESGraph_ToolDrawingSize::*)( const opencascade::handle<IGESGraph_DrawingSize> & , Interface_EntityIterator & ) const>(&IGESGraph_ToolDrawingSize::OwnShared),
R"#(Lists the Entities shared by a DrawingSize <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("OwnCorrect",
(Standard_Boolean (IGESGraph_ToolDrawingSize::*)( const opencascade::handle<IGESGraph_DrawingSize> & ) const) static_cast<Standard_Boolean (IGESGraph_ToolDrawingSize::*)( const opencascade::handle<IGESGraph_DrawingSize> & ) const>(&IGESGraph_ToolDrawingSize::OwnCorrect),
R"#(Sets automatic unambiguous Correction on a DrawingSize (NbPropertyValues forced to 2))#" , py::arg("ent")
)
.def("DirChecker",
(IGESData_DirChecker (IGESGraph_ToolDrawingSize::*)( const opencascade::handle<IGESGraph_DrawingSize> & ) const) static_cast<IGESData_DirChecker (IGESGraph_ToolDrawingSize::*)( const opencascade::handle<IGESGraph_DrawingSize> & ) const>(&IGESGraph_ToolDrawingSize::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESGraph_ToolDrawingSize::*)( const opencascade::handle<IGESGraph_DrawingSize> & , const opencascade::handle<IGESGraph_DrawingSize> & , Interface_CopyTool & ) const) static_cast<void (IGESGraph_ToolDrawingSize::*)( const opencascade::handle<IGESGraph_DrawingSize> & , const opencascade::handle<IGESGraph_DrawingSize> & , Interface_CopyTool & ) const>(&IGESGraph_ToolDrawingSize::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESGraph_ToolDrawingSize::*)( const opencascade::handle<IGESGraph_DrawingSize> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESGraph_ToolDrawingSize::*)( const opencascade::handle<IGESGraph_DrawingSize> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESGraph_ToolDrawingSize::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",
[]( IGESGraph_ToolDrawingSize &self , const opencascade::handle<IGESGraph_DrawingSize> & 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 IGESGraph_ToolDrawingUnits from ./opencascade/IGESGraph_ToolDrawingUnits.hxx
klass = m.attr("IGESGraph_ToolDrawingUnits");
// nested enums
static_cast<py::class_<IGESGraph_ToolDrawingUnits , shared_ptr<IGESGraph_ToolDrawingUnits> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESGraph_ToolDrawingUnits::*)( const opencascade::handle<IGESGraph_DrawingUnits> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESGraph_ToolDrawingUnits::*)( const opencascade::handle<IGESGraph_DrawingUnits> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESGraph_ToolDrawingUnits::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 (IGESGraph_ToolDrawingUnits::*)( const opencascade::handle<IGESGraph_DrawingUnits> & , IGESData_IGESWriter & ) const) static_cast<void (IGESGraph_ToolDrawingUnits::*)( const opencascade::handle<IGESGraph_DrawingUnits> & , IGESData_IGESWriter & ) const>(&IGESGraph_ToolDrawingUnits::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESGraph_ToolDrawingUnits::*)( const opencascade::handle<IGESGraph_DrawingUnits> & , Interface_EntityIterator & ) const) static_cast<void (IGESGraph_ToolDrawingUnits::*)( const opencascade::handle<IGESGraph_DrawingUnits> & , Interface_EntityIterator & ) const>(&IGESGraph_ToolDrawingUnits::OwnShared),
R"#(Lists the Entities shared by a DrawingUnits <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("OwnCorrect",
(Standard_Boolean (IGESGraph_ToolDrawingUnits::*)( const opencascade::handle<IGESGraph_DrawingUnits> & ) const) static_cast<Standard_Boolean (IGESGraph_ToolDrawingUnits::*)( const opencascade::handle<IGESGraph_DrawingUnits> & ) const>(&IGESGraph_ToolDrawingUnits::OwnCorrect),
R"#(Sets automatic unambiguous Correction on a DrawingUnits (NbPropertyValues forced to 2))#" , py::arg("ent")
)
.def("DirChecker",
(IGESData_DirChecker (IGESGraph_ToolDrawingUnits::*)( const opencascade::handle<IGESGraph_DrawingUnits> & ) const) static_cast<IGESData_DirChecker (IGESGraph_ToolDrawingUnits::*)( const opencascade::handle<IGESGraph_DrawingUnits> & ) const>(&IGESGraph_ToolDrawingUnits::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESGraph_ToolDrawingUnits::*)( const opencascade::handle<IGESGraph_DrawingUnits> & , const opencascade::handle<IGESGraph_DrawingUnits> & , Interface_CopyTool & ) const) static_cast<void (IGESGraph_ToolDrawingUnits::*)( const opencascade::handle<IGESGraph_DrawingUnits> & , const opencascade::handle<IGESGraph_DrawingUnits> & , Interface_CopyTool & ) const>(&IGESGraph_ToolDrawingUnits::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESGraph_ToolDrawingUnits::*)( const opencascade::handle<IGESGraph_DrawingUnits> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESGraph_ToolDrawingUnits::*)( const opencascade::handle<IGESGraph_DrawingUnits> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESGraph_ToolDrawingUnits::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",
[]( IGESGraph_ToolDrawingUnits &self , const opencascade::handle<IGESGraph_DrawingUnits> & 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 IGESGraph_ToolHighLight from ./opencascade/IGESGraph_ToolHighLight.hxx
klass = m.attr("IGESGraph_ToolHighLight");
// nested enums
static_cast<py::class_<IGESGraph_ToolHighLight , shared_ptr<IGESGraph_ToolHighLight> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESGraph_ToolHighLight::*)( const opencascade::handle<IGESGraph_HighLight> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESGraph_ToolHighLight::*)( const opencascade::handle<IGESGraph_HighLight> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESGraph_ToolHighLight::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 (IGESGraph_ToolHighLight::*)( const opencascade::handle<IGESGraph_HighLight> & , IGESData_IGESWriter & ) const) static_cast<void (IGESGraph_ToolHighLight::*)( const opencascade::handle<IGESGraph_HighLight> & , IGESData_IGESWriter & ) const>(&IGESGraph_ToolHighLight::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESGraph_ToolHighLight::*)( const opencascade::handle<IGESGraph_HighLight> & , Interface_EntityIterator & ) const) static_cast<void (IGESGraph_ToolHighLight::*)( const opencascade::handle<IGESGraph_HighLight> & , Interface_EntityIterator & ) const>(&IGESGraph_ToolHighLight::OwnShared),
R"#(Lists the Entities shared by a HighLight <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("OwnCorrect",
(Standard_Boolean (IGESGraph_ToolHighLight::*)( const opencascade::handle<IGESGraph_HighLight> & ) const) static_cast<Standard_Boolean (IGESGraph_ToolHighLight::*)( const opencascade::handle<IGESGraph_HighLight> & ) const>(&IGESGraph_ToolHighLight::OwnCorrect),
R"#(Sets automatic unambiguous Correction on a HighLight (NbPropertyValues forced to 1))#" , py::arg("ent")
)
.def("DirChecker",
(IGESData_DirChecker (IGESGraph_ToolHighLight::*)( const opencascade::handle<IGESGraph_HighLight> & ) const) static_cast<IGESData_DirChecker (IGESGraph_ToolHighLight::*)( const opencascade::handle<IGESGraph_HighLight> & ) const>(&IGESGraph_ToolHighLight::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESGraph_ToolHighLight::*)( const opencascade::handle<IGESGraph_HighLight> & , const opencascade::handle<IGESGraph_HighLight> & , Interface_CopyTool & ) const) static_cast<void (IGESGraph_ToolHighLight::*)( const opencascade::handle<IGESGraph_HighLight> & , const opencascade::handle<IGESGraph_HighLight> & , Interface_CopyTool & ) const>(&IGESGraph_ToolHighLight::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESGraph_ToolHighLight::*)( const opencascade::handle<IGESGraph_HighLight> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESGraph_ToolHighLight::*)( const opencascade::handle<IGESGraph_HighLight> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESGraph_ToolHighLight::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",
[]( IGESGraph_ToolHighLight &self , const opencascade::handle<IGESGraph_HighLight> & 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 IGESGraph_ToolIntercharacterSpacing from ./opencascade/IGESGraph_ToolIntercharacterSpacing.hxx
klass = m.attr("IGESGraph_ToolIntercharacterSpacing");
// nested enums
static_cast<py::class_<IGESGraph_ToolIntercharacterSpacing , shared_ptr<IGESGraph_ToolIntercharacterSpacing> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESGraph_ToolIntercharacterSpacing::*)( const opencascade::handle<IGESGraph_IntercharacterSpacing> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESGraph_ToolIntercharacterSpacing::*)( const opencascade::handle<IGESGraph_IntercharacterSpacing> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESGraph_ToolIntercharacterSpacing::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 (IGESGraph_ToolIntercharacterSpacing::*)( const opencascade::handle<IGESGraph_IntercharacterSpacing> & , IGESData_IGESWriter & ) const) static_cast<void (IGESGraph_ToolIntercharacterSpacing::*)( const opencascade::handle<IGESGraph_IntercharacterSpacing> & , IGESData_IGESWriter & ) const>(&IGESGraph_ToolIntercharacterSpacing::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESGraph_ToolIntercharacterSpacing::*)( const opencascade::handle<IGESGraph_IntercharacterSpacing> & , Interface_EntityIterator & ) const) static_cast<void (IGESGraph_ToolIntercharacterSpacing::*)( const opencascade::handle<IGESGraph_IntercharacterSpacing> & , Interface_EntityIterator & ) const>(&IGESGraph_ToolIntercharacterSpacing::OwnShared),
R"#(Lists the Entities shared by a IntercharacterSpacing <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("OwnCorrect",
(Standard_Boolean (IGESGraph_ToolIntercharacterSpacing::*)( const opencascade::handle<IGESGraph_IntercharacterSpacing> & ) const) static_cast<Standard_Boolean (IGESGraph_ToolIntercharacterSpacing::*)( const opencascade::handle<IGESGraph_IntercharacterSpacing> & ) const>(&IGESGraph_ToolIntercharacterSpacing::OwnCorrect),
R"#(Sets automatic unambiguous Correction on a IntercharacterSpacing (NbPropertyValues forced to 1))#" , py::arg("ent")
)
.def("DirChecker",
(IGESData_DirChecker (IGESGraph_ToolIntercharacterSpacing::*)( const opencascade::handle<IGESGraph_IntercharacterSpacing> & ) const) static_cast<IGESData_DirChecker (IGESGraph_ToolIntercharacterSpacing::*)( const opencascade::handle<IGESGraph_IntercharacterSpacing> & ) const>(&IGESGraph_ToolIntercharacterSpacing::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESGraph_ToolIntercharacterSpacing::*)( const opencascade::handle<IGESGraph_IntercharacterSpacing> & , const opencascade::handle<IGESGraph_IntercharacterSpacing> & , Interface_CopyTool & ) const) static_cast<void (IGESGraph_ToolIntercharacterSpacing::*)( const opencascade::handle<IGESGraph_IntercharacterSpacing> & , const opencascade::handle<IGESGraph_IntercharacterSpacing> & , Interface_CopyTool & ) const>(&IGESGraph_ToolIntercharacterSpacing::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESGraph_ToolIntercharacterSpacing::*)( const opencascade::handle<IGESGraph_IntercharacterSpacing> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESGraph_ToolIntercharacterSpacing::*)( const opencascade::handle<IGESGraph_IntercharacterSpacing> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESGraph_ToolIntercharacterSpacing::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",
[]( IGESGraph_ToolIntercharacterSpacing &self , const opencascade::handle<IGESGraph_IntercharacterSpacing> & 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 IGESGraph_ToolLineFontDefPattern from ./opencascade/IGESGraph_ToolLineFontDefPattern.hxx
klass = m.attr("IGESGraph_ToolLineFontDefPattern");
// nested enums
static_cast<py::class_<IGESGraph_ToolLineFontDefPattern , shared_ptr<IGESGraph_ToolLineFontDefPattern> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESGraph_ToolLineFontDefPattern::*)( const opencascade::handle<IGESGraph_LineFontDefPattern> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESGraph_ToolLineFontDefPattern::*)( const opencascade::handle<IGESGraph_LineFontDefPattern> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESGraph_ToolLineFontDefPattern::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 (IGESGraph_ToolLineFontDefPattern::*)( const opencascade::handle<IGESGraph_LineFontDefPattern> & , IGESData_IGESWriter & ) const) static_cast<void (IGESGraph_ToolLineFontDefPattern::*)( const opencascade::handle<IGESGraph_LineFontDefPattern> & , IGESData_IGESWriter & ) const>(&IGESGraph_ToolLineFontDefPattern::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESGraph_ToolLineFontDefPattern::*)( const opencascade::handle<IGESGraph_LineFontDefPattern> & , Interface_EntityIterator & ) const) static_cast<void (IGESGraph_ToolLineFontDefPattern::*)( const opencascade::handle<IGESGraph_LineFontDefPattern> & , Interface_EntityIterator & ) const>(&IGESGraph_ToolLineFontDefPattern::OwnShared),
R"#(Lists the Entities shared by a LineFontDefPattern <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("DirChecker",
(IGESData_DirChecker (IGESGraph_ToolLineFontDefPattern::*)( const opencascade::handle<IGESGraph_LineFontDefPattern> & ) const) static_cast<IGESData_DirChecker (IGESGraph_ToolLineFontDefPattern::*)( const opencascade::handle<IGESGraph_LineFontDefPattern> & ) const>(&IGESGraph_ToolLineFontDefPattern::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESGraph_ToolLineFontDefPattern::*)( const opencascade::handle<IGESGraph_LineFontDefPattern> & , const opencascade::handle<IGESGraph_LineFontDefPattern> & , Interface_CopyTool & ) const) static_cast<void (IGESGraph_ToolLineFontDefPattern::*)( const opencascade::handle<IGESGraph_LineFontDefPattern> & , const opencascade::handle<IGESGraph_LineFontDefPattern> & , Interface_CopyTool & ) const>(&IGESGraph_ToolLineFontDefPattern::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESGraph_ToolLineFontDefPattern::*)( const opencascade::handle<IGESGraph_LineFontDefPattern> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESGraph_ToolLineFontDefPattern::*)( const opencascade::handle<IGESGraph_LineFontDefPattern> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESGraph_ToolLineFontDefPattern::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",
[]( IGESGraph_ToolLineFontDefPattern &self , const opencascade::handle<IGESGraph_LineFontDefPattern> & 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 IGESGraph_ToolLineFontDefTemplate from ./opencascade/IGESGraph_ToolLineFontDefTemplate.hxx
klass = m.attr("IGESGraph_ToolLineFontDefTemplate");
// nested enums
static_cast<py::class_<IGESGraph_ToolLineFontDefTemplate , shared_ptr<IGESGraph_ToolLineFontDefTemplate> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESGraph_ToolLineFontDefTemplate::*)( const opencascade::handle<IGESGraph_LineFontDefTemplate> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESGraph_ToolLineFontDefTemplate::*)( const opencascade::handle<IGESGraph_LineFontDefTemplate> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESGraph_ToolLineFontDefTemplate::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 (IGESGraph_ToolLineFontDefTemplate::*)( const opencascade::handle<IGESGraph_LineFontDefTemplate> & , IGESData_IGESWriter & ) const) static_cast<void (IGESGraph_ToolLineFontDefTemplate::*)( const opencascade::handle<IGESGraph_LineFontDefTemplate> & , IGESData_IGESWriter & ) const>(&IGESGraph_ToolLineFontDefTemplate::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESGraph_ToolLineFontDefTemplate::*)( const opencascade::handle<IGESGraph_LineFontDefTemplate> & , Interface_EntityIterator & ) const) static_cast<void (IGESGraph_ToolLineFontDefTemplate::*)( const opencascade::handle<IGESGraph_LineFontDefTemplate> & , Interface_EntityIterator & ) const>(&IGESGraph_ToolLineFontDefTemplate::OwnShared),
R"#(Lists the Entities shared by a LineFontDefTemplate <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("DirChecker",
(IGESData_DirChecker (IGESGraph_ToolLineFontDefTemplate::*)( const opencascade::handle<IGESGraph_LineFontDefTemplate> & ) const) static_cast<IGESData_DirChecker (IGESGraph_ToolLineFontDefTemplate::*)( const opencascade::handle<IGESGraph_LineFontDefTemplate> & ) const>(&IGESGraph_ToolLineFontDefTemplate::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESGraph_ToolLineFontDefTemplate::*)( const opencascade::handle<IGESGraph_LineFontDefTemplate> & , const opencascade::handle<IGESGraph_LineFontDefTemplate> & , Interface_CopyTool & ) const) static_cast<void (IGESGraph_ToolLineFontDefTemplate::*)( const opencascade::handle<IGESGraph_LineFontDefTemplate> & , const opencascade::handle<IGESGraph_LineFontDefTemplate> & , Interface_CopyTool & ) const>(&IGESGraph_ToolLineFontDefTemplate::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESGraph_ToolLineFontDefTemplate::*)( const opencascade::handle<IGESGraph_LineFontDefTemplate> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESGraph_ToolLineFontDefTemplate::*)( const opencascade::handle<IGESGraph_LineFontDefTemplate> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESGraph_ToolLineFontDefTemplate::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",
[]( IGESGraph_ToolLineFontDefTemplate &self , const opencascade::handle<IGESGraph_LineFontDefTemplate> & 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 IGESGraph_ToolLineFontPredefined from ./opencascade/IGESGraph_ToolLineFontPredefined.hxx
klass = m.attr("IGESGraph_ToolLineFontPredefined");
// nested enums
static_cast<py::class_<IGESGraph_ToolLineFontPredefined , shared_ptr<IGESGraph_ToolLineFontPredefined> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESGraph_ToolLineFontPredefined::*)( const opencascade::handle<IGESGraph_LineFontPredefined> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESGraph_ToolLineFontPredefined::*)( const opencascade::handle<IGESGraph_LineFontPredefined> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESGraph_ToolLineFontPredefined::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 (IGESGraph_ToolLineFontPredefined::*)( const opencascade::handle<IGESGraph_LineFontPredefined> & , IGESData_IGESWriter & ) const) static_cast<void (IGESGraph_ToolLineFontPredefined::*)( const opencascade::handle<IGESGraph_LineFontPredefined> & , IGESData_IGESWriter & ) const>(&IGESGraph_ToolLineFontPredefined::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESGraph_ToolLineFontPredefined::*)( const opencascade::handle<IGESGraph_LineFontPredefined> & , Interface_EntityIterator & ) const) static_cast<void (IGESGraph_ToolLineFontPredefined::*)( const opencascade::handle<IGESGraph_LineFontPredefined> & , Interface_EntityIterator & ) const>(&IGESGraph_ToolLineFontPredefined::OwnShared),
R"#(Lists the Entities shared by a LineFontPredefined <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("OwnCorrect",
(Standard_Boolean (IGESGraph_ToolLineFontPredefined::*)( const opencascade::handle<IGESGraph_LineFontPredefined> & ) const) static_cast<Standard_Boolean (IGESGraph_ToolLineFontPredefined::*)( const opencascade::handle<IGESGraph_LineFontPredefined> & ) const>(&IGESGraph_ToolLineFontPredefined::OwnCorrect),
R"#(Sets automatic unambiguous Correction on a LineFontPredefined (NbPropertyValues forced to 1))#" , py::arg("ent")
)
.def("DirChecker",
(IGESData_DirChecker (IGESGraph_ToolLineFontPredefined::*)( const opencascade::handle<IGESGraph_LineFontPredefined> & ) const) static_cast<IGESData_DirChecker (IGESGraph_ToolLineFontPredefined::*)( const opencascade::handle<IGESGraph_LineFontPredefined> & ) const>(&IGESGraph_ToolLineFontPredefined::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESGraph_ToolLineFontPredefined::*)( const opencascade::handle<IGESGraph_LineFontPredefined> & , const opencascade::handle<IGESGraph_LineFontPredefined> & , Interface_CopyTool & ) const) static_cast<void (IGESGraph_ToolLineFontPredefined::*)( const opencascade::handle<IGESGraph_LineFontPredefined> & , const opencascade::handle<IGESGraph_LineFontPredefined> & , Interface_CopyTool & ) const>(&IGESGraph_ToolLineFontPredefined::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESGraph_ToolLineFontPredefined::*)( const opencascade::handle<IGESGraph_LineFontPredefined> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESGraph_ToolLineFontPredefined::*)( const opencascade::handle<IGESGraph_LineFontPredefined> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESGraph_ToolLineFontPredefined::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",
[]( IGESGraph_ToolLineFontPredefined &self , const opencascade::handle<IGESGraph_LineFontPredefined> & 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 IGESGraph_ToolNominalSize from ./opencascade/IGESGraph_ToolNominalSize.hxx
klass = m.attr("IGESGraph_ToolNominalSize");
// nested enums
static_cast<py::class_<IGESGraph_ToolNominalSize , shared_ptr<IGESGraph_ToolNominalSize> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESGraph_ToolNominalSize::*)( const opencascade::handle<IGESGraph_NominalSize> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESGraph_ToolNominalSize::*)( const opencascade::handle<IGESGraph_NominalSize> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESGraph_ToolNominalSize::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 (IGESGraph_ToolNominalSize::*)( const opencascade::handle<IGESGraph_NominalSize> & , IGESData_IGESWriter & ) const) static_cast<void (IGESGraph_ToolNominalSize::*)( const opencascade::handle<IGESGraph_NominalSize> & , IGESData_IGESWriter & ) const>(&IGESGraph_ToolNominalSize::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESGraph_ToolNominalSize::*)( const opencascade::handle<IGESGraph_NominalSize> & , Interface_EntityIterator & ) const) static_cast<void (IGESGraph_ToolNominalSize::*)( const opencascade::handle<IGESGraph_NominalSize> & , Interface_EntityIterator & ) const>(&IGESGraph_ToolNominalSize::OwnShared),
R"#(Lists the Entities shared by a NominalSize <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("OwnCorrect",
(Standard_Boolean (IGESGraph_ToolNominalSize::*)( const opencascade::handle<IGESGraph_NominalSize> & ) const) static_cast<Standard_Boolean (IGESGraph_ToolNominalSize::*)( const opencascade::handle<IGESGraph_NominalSize> & ) const>(&IGESGraph_ToolNominalSize::OwnCorrect),
R"#(Sets automatic unambiguous Correction on a NominalSize (NbPropertyValues forced to 2 or 3 according HasStandardName))#" , py::arg("ent")
)
.def("DirChecker",
(IGESData_DirChecker (IGESGraph_ToolNominalSize::*)( const opencascade::handle<IGESGraph_NominalSize> & ) const) static_cast<IGESData_DirChecker (IGESGraph_ToolNominalSize::*)( const opencascade::handle<IGESGraph_NominalSize> & ) const>(&IGESGraph_ToolNominalSize::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESGraph_ToolNominalSize::*)( const opencascade::handle<IGESGraph_NominalSize> & , const opencascade::handle<IGESGraph_NominalSize> & , Interface_CopyTool & ) const) static_cast<void (IGESGraph_ToolNominalSize::*)( const opencascade::handle<IGESGraph_NominalSize> & , const opencascade::handle<IGESGraph_NominalSize> & , Interface_CopyTool & ) const>(&IGESGraph_ToolNominalSize::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESGraph_ToolNominalSize::*)( const opencascade::handle<IGESGraph_NominalSize> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESGraph_ToolNominalSize::*)( const opencascade::handle<IGESGraph_NominalSize> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESGraph_ToolNominalSize::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",
[]( IGESGraph_ToolNominalSize &self , const opencascade::handle<IGESGraph_NominalSize> & 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 IGESGraph_ToolPick from ./opencascade/IGESGraph_ToolPick.hxx
klass = m.attr("IGESGraph_ToolPick");
// nested enums
static_cast<py::class_<IGESGraph_ToolPick , shared_ptr<IGESGraph_ToolPick> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESGraph_ToolPick::*)( const opencascade::handle<IGESGraph_Pick> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESGraph_ToolPick::*)( const opencascade::handle<IGESGraph_Pick> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESGraph_ToolPick::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 (IGESGraph_ToolPick::*)( const opencascade::handle<IGESGraph_Pick> & , IGESData_IGESWriter & ) const) static_cast<void (IGESGraph_ToolPick::*)( const opencascade::handle<IGESGraph_Pick> & , IGESData_IGESWriter & ) const>(&IGESGraph_ToolPick::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESGraph_ToolPick::*)( const opencascade::handle<IGESGraph_Pick> & , Interface_EntityIterator & ) const) static_cast<void (IGESGraph_ToolPick::*)( const opencascade::handle<IGESGraph_Pick> & , Interface_EntityIterator & ) const>(&IGESGraph_ToolPick::OwnShared),
R"#(Lists the Entities shared by a Pick <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("OwnCorrect",
(Standard_Boolean (IGESGraph_ToolPick::*)( const opencascade::handle<IGESGraph_Pick> & ) const) static_cast<Standard_Boolean (IGESGraph_ToolPick::*)( const opencascade::handle<IGESGraph_Pick> & ) const>(&IGESGraph_ToolPick::OwnCorrect),
R"#(Sets automatic unambiguous Correction on a Pick (NbPropertyValues forced to 1))#" , py::arg("ent")
)
.def("DirChecker",
(IGESData_DirChecker (IGESGraph_ToolPick::*)( const opencascade::handle<IGESGraph_Pick> & ) const) static_cast<IGESData_DirChecker (IGESGraph_ToolPick::*)( const opencascade::handle<IGESGraph_Pick> & ) const>(&IGESGraph_ToolPick::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESGraph_ToolPick::*)( const opencascade::handle<IGESGraph_Pick> & , const opencascade::handle<IGESGraph_Pick> & , Interface_CopyTool & ) const) static_cast<void (IGESGraph_ToolPick::*)( const opencascade::handle<IGESGraph_Pick> & , const opencascade::handle<IGESGraph_Pick> & , Interface_CopyTool & ) const>(&IGESGraph_ToolPick::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESGraph_ToolPick::*)( const opencascade::handle<IGESGraph_Pick> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESGraph_ToolPick::*)( const opencascade::handle<IGESGraph_Pick> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESGraph_ToolPick::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",
[]( IGESGraph_ToolPick &self , const opencascade::handle<IGESGraph_Pick> & 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 IGESGraph_ToolTextDisplayTemplate from ./opencascade/IGESGraph_ToolTextDisplayTemplate.hxx
klass = m.attr("IGESGraph_ToolTextDisplayTemplate");
// nested enums
static_cast<py::class_<IGESGraph_ToolTextDisplayTemplate , shared_ptr<IGESGraph_ToolTextDisplayTemplate> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESGraph_ToolTextDisplayTemplate::*)( const opencascade::handle<IGESGraph_TextDisplayTemplate> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESGraph_ToolTextDisplayTemplate::*)( const opencascade::handle<IGESGraph_TextDisplayTemplate> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESGraph_ToolTextDisplayTemplate::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 (IGESGraph_ToolTextDisplayTemplate::*)( const opencascade::handle<IGESGraph_TextDisplayTemplate> & , IGESData_IGESWriter & ) const) static_cast<void (IGESGraph_ToolTextDisplayTemplate::*)( const opencascade::handle<IGESGraph_TextDisplayTemplate> & , IGESData_IGESWriter & ) const>(&IGESGraph_ToolTextDisplayTemplate::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESGraph_ToolTextDisplayTemplate::*)( const opencascade::handle<IGESGraph_TextDisplayTemplate> & , Interface_EntityIterator & ) const) static_cast<void (IGESGraph_ToolTextDisplayTemplate::*)( const opencascade::handle<IGESGraph_TextDisplayTemplate> & , Interface_EntityIterator & ) const>(&IGESGraph_ToolTextDisplayTemplate::OwnShared),
R"#(Lists the Entities shared by a TextDisplayTemplate <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("DirChecker",
(IGESData_DirChecker (IGESGraph_ToolTextDisplayTemplate::*)( const opencascade::handle<IGESGraph_TextDisplayTemplate> & ) const) static_cast<IGESData_DirChecker (IGESGraph_ToolTextDisplayTemplate::*)( const opencascade::handle<IGESGraph_TextDisplayTemplate> & ) const>(&IGESGraph_ToolTextDisplayTemplate::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESGraph_ToolTextDisplayTemplate::*)( const opencascade::handle<IGESGraph_TextDisplayTemplate> & , const opencascade::handle<IGESGraph_TextDisplayTemplate> & , Interface_CopyTool & ) const) static_cast<void (IGESGraph_ToolTextDisplayTemplate::*)( const opencascade::handle<IGESGraph_TextDisplayTemplate> & , const opencascade::handle<IGESGraph_TextDisplayTemplate> & , Interface_CopyTool & ) const>(&IGESGraph_ToolTextDisplayTemplate::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESGraph_ToolTextDisplayTemplate::*)( const opencascade::handle<IGESGraph_TextDisplayTemplate> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESGraph_ToolTextDisplayTemplate::*)( const opencascade::handle<IGESGraph_TextDisplayTemplate> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESGraph_ToolTextDisplayTemplate::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",
[]( IGESGraph_ToolTextDisplayTemplate &self , const opencascade::handle<IGESGraph_TextDisplayTemplate> & 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 IGESGraph_ToolTextFontDef from ./opencascade/IGESGraph_ToolTextFontDef.hxx
klass = m.attr("IGESGraph_ToolTextFontDef");
// nested enums
static_cast<py::class_<IGESGraph_ToolTextFontDef , shared_ptr<IGESGraph_ToolTextFontDef> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESGraph_ToolTextFontDef::*)( const opencascade::handle<IGESGraph_TextFontDef> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESGraph_ToolTextFontDef::*)( const opencascade::handle<IGESGraph_TextFontDef> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESGraph_ToolTextFontDef::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 (IGESGraph_ToolTextFontDef::*)( const opencascade::handle<IGESGraph_TextFontDef> & , IGESData_IGESWriter & ) const) static_cast<void (IGESGraph_ToolTextFontDef::*)( const opencascade::handle<IGESGraph_TextFontDef> & , IGESData_IGESWriter & ) const>(&IGESGraph_ToolTextFontDef::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESGraph_ToolTextFontDef::*)( const opencascade::handle<IGESGraph_TextFontDef> & , Interface_EntityIterator & ) const) static_cast<void (IGESGraph_ToolTextFontDef::*)( const opencascade::handle<IGESGraph_TextFontDef> & , Interface_EntityIterator & ) const>(&IGESGraph_ToolTextFontDef::OwnShared),
R"#(Lists the Entities shared by a TextFontDef <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("DirChecker",
(IGESData_DirChecker (IGESGraph_ToolTextFontDef::*)( const opencascade::handle<IGESGraph_TextFontDef> & ) const) static_cast<IGESData_DirChecker (IGESGraph_ToolTextFontDef::*)( const opencascade::handle<IGESGraph_TextFontDef> & ) const>(&IGESGraph_ToolTextFontDef::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESGraph_ToolTextFontDef::*)( const opencascade::handle<IGESGraph_TextFontDef> & , const opencascade::handle<IGESGraph_TextFontDef> & , Interface_CopyTool & ) const) static_cast<void (IGESGraph_ToolTextFontDef::*)( const opencascade::handle<IGESGraph_TextFontDef> & , const opencascade::handle<IGESGraph_TextFontDef> & , Interface_CopyTool & ) const>(&IGESGraph_ToolTextFontDef::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESGraph_ToolTextFontDef::*)( const opencascade::handle<IGESGraph_TextFontDef> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESGraph_ToolTextFontDef::*)( const opencascade::handle<IGESGraph_TextFontDef> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESGraph_ToolTextFontDef::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",
[]( IGESGraph_ToolTextFontDef &self , const opencascade::handle<IGESGraph_TextFontDef> & 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 IGESGraph_ToolUniformRectGrid from ./opencascade/IGESGraph_ToolUniformRectGrid.hxx
klass = m.attr("IGESGraph_ToolUniformRectGrid");
// nested enums
static_cast<py::class_<IGESGraph_ToolUniformRectGrid , shared_ptr<IGESGraph_ToolUniformRectGrid> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESGraph_ToolUniformRectGrid::*)( const opencascade::handle<IGESGraph_UniformRectGrid> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESGraph_ToolUniformRectGrid::*)( const opencascade::handle<IGESGraph_UniformRectGrid> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESGraph_ToolUniformRectGrid::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 (IGESGraph_ToolUniformRectGrid::*)( const opencascade::handle<IGESGraph_UniformRectGrid> & , IGESData_IGESWriter & ) const) static_cast<void (IGESGraph_ToolUniformRectGrid::*)( const opencascade::handle<IGESGraph_UniformRectGrid> & , IGESData_IGESWriter & ) const>(&IGESGraph_ToolUniformRectGrid::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESGraph_ToolUniformRectGrid::*)( const opencascade::handle<IGESGraph_UniformRectGrid> & , Interface_EntityIterator & ) const) static_cast<void (IGESGraph_ToolUniformRectGrid::*)( const opencascade::handle<IGESGraph_UniformRectGrid> & , Interface_EntityIterator & ) const>(&IGESGraph_ToolUniformRectGrid::OwnShared),
R"#(Lists the Entities shared by a UniformRectGrid <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("OwnCorrect",
(Standard_Boolean (IGESGraph_ToolUniformRectGrid::*)( const opencascade::handle<IGESGraph_UniformRectGrid> & ) const) static_cast<Standard_Boolean (IGESGraph_ToolUniformRectGrid::*)( const opencascade::handle<IGESGraph_UniformRectGrid> & ) const>(&IGESGraph_ToolUniformRectGrid::OwnCorrect),
R"#(Sets automatic unambiguous Correction on a UniformRectGrid (NbPropertyValues forced to 9))#" , py::arg("ent")
)
.def("DirChecker",
(IGESData_DirChecker (IGESGraph_ToolUniformRectGrid::*)( const opencascade::handle<IGESGraph_UniformRectGrid> & ) const) static_cast<IGESData_DirChecker (IGESGraph_ToolUniformRectGrid::*)( const opencascade::handle<IGESGraph_UniformRectGrid> & ) const>(&IGESGraph_ToolUniformRectGrid::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESGraph_ToolUniformRectGrid::*)( const opencascade::handle<IGESGraph_UniformRectGrid> & , const opencascade::handle<IGESGraph_UniformRectGrid> & , Interface_CopyTool & ) const) static_cast<void (IGESGraph_ToolUniformRectGrid::*)( const opencascade::handle<IGESGraph_UniformRectGrid> & , const opencascade::handle<IGESGraph_UniformRectGrid> & , Interface_CopyTool & ) const>(&IGESGraph_ToolUniformRectGrid::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESGraph_ToolUniformRectGrid::*)( const opencascade::handle<IGESGraph_UniformRectGrid> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESGraph_ToolUniformRectGrid::*)( const opencascade::handle<IGESGraph_UniformRectGrid> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESGraph_ToolUniformRectGrid::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",
[]( IGESGraph_ToolUniformRectGrid &self , const opencascade::handle<IGESGraph_UniformRectGrid> & 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 IGESGraph_UniformRectGrid from ./opencascade/IGESGraph_UniformRectGrid.hxx
klass = m.attr("IGESGraph_UniformRectGrid");
// nested enums
static_cast<py::class_<IGESGraph_UniformRectGrid ,opencascade::handle<IGESGraph_UniformRectGrid> , IGESData_IGESEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESGraph_UniformRectGrid::*)( const Standard_Integer , const Standard_Integer , const Standard_Integer , const Standard_Integer , const gp_XY & , const gp_XY & , const Standard_Integer , const Standard_Integer ) ) static_cast<void (IGESGraph_UniformRectGrid::*)( const Standard_Integer , const Standard_Integer , const Standard_Integer , const Standard_Integer , const gp_XY & , const gp_XY & , const Standard_Integer , const Standard_Integer ) >(&IGESGraph_UniformRectGrid::Init),
R"#(This method is used to set the fields of the class UniformRectGrid - nbProps : Number of property values (NP = 9) - finite : Finite/Infinite grid flag - line : Line/Point grid flag - weighted : Weighted/Unweighted grid flag - aGridPoint : Point on the grid - aGridSpacing : Grid spacing - pointsX : No. of points/lines in X Direction - pointsY : No. of points/lines in Y Direction)#" , py::arg("nbProps"), py::arg("finite"), py::arg("line"), py::arg("weighted"), py::arg("aGridPoint"), py::arg("aGridSpacing"), py::arg("pointsX"), py::arg("pointsY")
)
.def("NbPropertyValues",
(Standard_Integer (IGESGraph_UniformRectGrid::*)() const) static_cast<Standard_Integer (IGESGraph_UniformRectGrid::*)() const>(&IGESGraph_UniformRectGrid::NbPropertyValues),
R"#(returns the number of property values in <me>.)#"
)
.def("IsFinite",
(Standard_Boolean (IGESGraph_UniformRectGrid::*)() const) static_cast<Standard_Boolean (IGESGraph_UniformRectGrid::*)() const>(&IGESGraph_UniformRectGrid::IsFinite),
R"#(returns False if <me> is an infinite grid, True if <me> is a finite grid.)#"
)
.def("IsLine",
(Standard_Boolean (IGESGraph_UniformRectGrid::*)() const) static_cast<Standard_Boolean (IGESGraph_UniformRectGrid::*)() const>(&IGESGraph_UniformRectGrid::IsLine),
R"#(returns False if <me> is a Point grid, True if <me> is a Line grid.)#"
)
.def("IsWeighted",
(Standard_Boolean (IGESGraph_UniformRectGrid::*)() const) static_cast<Standard_Boolean (IGESGraph_UniformRectGrid::*)() const>(&IGESGraph_UniformRectGrid::IsWeighted),
R"#(returns False if <me> is a Weighted grid, True if <me> is not a Weighted grid.)#"
)
.def("GridPoint",
(gp_Pnt2d (IGESGraph_UniformRectGrid::*)() const) static_cast<gp_Pnt2d (IGESGraph_UniformRectGrid::*)() const>(&IGESGraph_UniformRectGrid::GridPoint),
R"#(returns coordinates of lower left corner, if <me> is a finite grid, coordinates of an arbitrary point, if <me> is an infinite grid.)#"
)
.def("GridSpacing",
(gp_Vec2d (IGESGraph_UniformRectGrid::*)() const) static_cast<gp_Vec2d (IGESGraph_UniformRectGrid::*)() const>(&IGESGraph_UniformRectGrid::GridSpacing),
R"#(returns the grid-spacing in drawing coordinates.)#"
)
.def("NbPointsX",
(Standard_Integer (IGESGraph_UniformRectGrid::*)() const) static_cast<Standard_Integer (IGESGraph_UniformRectGrid::*)() const>(&IGESGraph_UniformRectGrid::NbPointsX),
R"#(returns the no. of points/lines in X direction (only applicable if IsFinite() = 1, i.e: a finite grid).)#"
)
.def("NbPointsY",
(Standard_Integer (IGESGraph_UniformRectGrid::*)() const) static_cast<Standard_Integer (IGESGraph_UniformRectGrid::*)() const>(&IGESGraph_UniformRectGrid::NbPointsY),
R"#(returns the no. of points/lines in Y direction (only applicable if IsFinite() = 1, i.e: a finite grid).)#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESGraph_UniformRectGrid::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESGraph_UniformRectGrid::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> & (IGESGraph_UniformRectGrid::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESGraph_UniformRectGrid::*)() const>(&IGESGraph_UniformRectGrid::DynamicType),
R"#(None)#"
)
;
// functions
// ./opencascade/IGESGraph.hxx
// ./opencascade/IGESGraph_Array1OfColor.hxx
// ./opencascade/IGESGraph_Array1OfTextDisplayTemplate.hxx
// ./opencascade/IGESGraph_Array1OfTextFontDef.hxx
// ./opencascade/IGESGraph_Color.hxx
// ./opencascade/IGESGraph_DefinitionLevel.hxx
// ./opencascade/IGESGraph_DrawingSize.hxx
// ./opencascade/IGESGraph_DrawingUnits.hxx
// ./opencascade/IGESGraph_GeneralModule.hxx
// ./opencascade/IGESGraph_HArray1OfColor.hxx
// ./opencascade/IGESGraph_HArray1OfTextDisplayTemplate.hxx
// ./opencascade/IGESGraph_HArray1OfTextFontDef.hxx
// ./opencascade/IGESGraph_HighLight.hxx
// ./opencascade/IGESGraph_IntercharacterSpacing.hxx
// ./opencascade/IGESGraph_LineFontDefPattern.hxx
// ./opencascade/IGESGraph_LineFontDefTemplate.hxx
// ./opencascade/IGESGraph_LineFontPredefined.hxx
// ./opencascade/IGESGraph_NominalSize.hxx
// ./opencascade/IGESGraph_Pick.hxx
// ./opencascade/IGESGraph_Protocol.hxx
// ./opencascade/IGESGraph_ReadWriteModule.hxx
// ./opencascade/IGESGraph_SpecificModule.hxx
// ./opencascade/IGESGraph_TextDisplayTemplate.hxx
// ./opencascade/IGESGraph_TextFontDef.hxx
// ./opencascade/IGESGraph_ToolColor.hxx
// ./opencascade/IGESGraph_ToolDefinitionLevel.hxx
// ./opencascade/IGESGraph_ToolDrawingSize.hxx
// ./opencascade/IGESGraph_ToolDrawingUnits.hxx
// ./opencascade/IGESGraph_ToolHighLight.hxx
// ./opencascade/IGESGraph_ToolIntercharacterSpacing.hxx
// ./opencascade/IGESGraph_ToolLineFontDefPattern.hxx
// ./opencascade/IGESGraph_ToolLineFontDefTemplate.hxx
// ./opencascade/IGESGraph_ToolLineFontPredefined.hxx
// ./opencascade/IGESGraph_ToolNominalSize.hxx
// ./opencascade/IGESGraph_ToolPick.hxx
// ./opencascade/IGESGraph_ToolTextDisplayTemplate.hxx
// ./opencascade/IGESGraph_ToolTextFontDef.hxx
// ./opencascade/IGESGraph_ToolUniformRectGrid.hxx
// ./opencascade/IGESGraph_UniformRectGrid.hxx
// Additional functions
// operators
// register typdefs
register_template_NCollection_Array1<opencascade::handle<IGESGraph_Color>>(m,"IGESGraph_Array1OfColor");
register_template_NCollection_Array1<opencascade::handle<IGESGraph_TextDisplayTemplate>>(m,"IGESGraph_Array1OfTextDisplayTemplate");
register_template_NCollection_Array1<opencascade::handle<IGESGraph_TextFontDef>>(m,"IGESGraph_Array1OfTextFontDef");
// exceptions
// user-defined post-inclusion per module in the body
};
// user-defined post-inclusion per module
// user-defined post
|