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
|
// 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 <TopoDS_Edge.hxx>
#include <gp_Pnt.hxx>
#include <Geom_Curve.hxx>
#include <BRepAdaptor_Curve.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 <IntTools_Context.hxx>
#include <Bnd_Box.hxx>
#include <IntTools_CurveRangeLocalizeData.hxx>
#include <IntTools_SurfaceRangeLocalizeData.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 <IntTools_FClass2d.hxx>
#include <GeomAPI_ProjectPointOnSurf.hxx>
#include <GeomAPI_ProjectPointOnCurve.hxx>
#include <TopoDS_Edge.hxx>
#include <IntTools_SurfaceRangeLocalizeData.hxx>
#include <BRepClass3d_SolidClassifier.hxx>
#include <TopoDS_Solid.hxx>
#include <Geom2dHatch_Hatcher.hxx>
#include <TopoDS_Vertex.hxx>
#include <IntTools_Curve.hxx>
#include <Bnd_Box.hxx>
#include <Bnd_OBB.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Geom_Curve.hxx>
#include <Geom2d_Curve.hxx>
#include <gp_Pnt.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IntTools_Range.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 <IntTools_Context.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IntTools_Context.hxx>
#include <Adaptor3d_TopolTool.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IntTools_Range.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IntTools_Context.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 <IntTools_Range.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <TopoDS_Vertex.hxx>
#include <TopoDS_Wire.hxx>
#include <TopoDS_Face.hxx>
#include <gp_Pnt2d.hxx>
#include <TopoDS_Edge.hxx>
#include <IntTools_CommonPrt.hxx>
#include <gp_Pnt.hxx>
#include <gp_Dir.hxx>
#include <Geom_Curve.hxx>
#include <Bnd_Box.hxx>
#include <IntTools_Range.hxx>
#include <gp_Lin.hxx>
#include <gp_Pln.hxx>
#include <Geom2d_Curve.hxx>
#include <Geom_Surface.hxx>
#include <TopoDS_Face.hxx>
#include <GeomInt_LineConstructor.hxx>
#include <IntTools_Context.hxx>
// module includes
#include <IntTools.hxx>
#include <IntTools_Array1OfRange.hxx>
#include <IntTools_Array1OfRoots.hxx>
#include <IntTools_BaseRangeSample.hxx>
#include <IntTools_BeanFaceIntersector.hxx>
#include <IntTools_CArray1OfReal.hxx>
#include <IntTools_CommonPrt.hxx>
#include <IntTools_Context.hxx>
#include <IntTools_Curve.hxx>
#include <IntTools_CurveRangeLocalizeData.hxx>
#include <IntTools_CurveRangeSample.hxx>
#include <IntTools_DataMapIteratorOfDataMapOfSurfaceSampleBox.hxx>
#include <IntTools_DataMapOfCurveSampleBox.hxx>
#include <IntTools_DataMapOfSurfaceSampleBox.hxx>
#include <IntTools_EdgeEdge.hxx>
#include <IntTools_EdgeFace.hxx>
#include <IntTools_FaceFace.hxx>
#include <IntTools_FClass2d.hxx>
#include <IntTools_ListIteratorOfListOfBox.hxx>
#include <IntTools_ListIteratorOfListOfCurveRangeSample.hxx>
#include <IntTools_ListIteratorOfListOfSurfaceRangeSample.hxx>
#include <IntTools_ListOfBox.hxx>
#include <IntTools_ListOfCurveRangeSample.hxx>
#include <IntTools_ListOfSurfaceRangeSample.hxx>
#include <IntTools_MapIteratorOfMapOfCurveSample.hxx>
#include <IntTools_MapIteratorOfMapOfSurfaceSample.hxx>
#include <IntTools_MapOfCurveSample.hxx>
#include <IntTools_MapOfSurfaceSample.hxx>
#include <IntTools_MarkedRangeSet.hxx>
#include <IntTools_PntOn2Faces.hxx>
#include <IntTools_PntOnFace.hxx>
#include <IntTools_Range.hxx>
#include <IntTools_Root.hxx>
#include <IntTools_SequenceOfCommonPrts.hxx>
#include <IntTools_SequenceOfCurves.hxx>
#include <IntTools_SequenceOfPntOn2Faces.hxx>
#include <IntTools_SequenceOfRanges.hxx>
#include <IntTools_SequenceOfRoots.hxx>
#include <IntTools_ShrunkRange.hxx>
#include <IntTools_SurfaceRangeLocalizeData.hxx>
#include <IntTools_SurfaceRangeSample.hxx>
#include <IntTools_Tools.hxx>
#include <IntTools_TopolTool.hxx>
#include <IntTools_WLineTool.hxx>
// template related includes
// ./opencascade/IntTools_Array1OfRange.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/IntTools_Array1OfRoots.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/IntTools_DataMapOfCurveSampleBox.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/IntTools_DataMapOfCurveSampleBox.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/IntTools_DataMapOfSurfaceSampleBox.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/IntTools_DataMapOfSurfaceSampleBox.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/IntTools_ListOfBox.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/IntTools_ListOfBox.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/IntTools_ListOfCurveRangeSample.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/IntTools_ListOfCurveRangeSample.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/IntTools_ListOfSurfaceRangeSample.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/IntTools_ListOfSurfaceRangeSample.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/IntTools_MapOfCurveSample.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/IntTools_MapOfCurveSample.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/IntTools_MapOfSurfaceSample.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/IntTools_MapOfSurfaceSample.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/IntTools_SequenceOfCommonPrts.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/IntTools_SequenceOfCurves.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/IntTools_SequenceOfPntOn2Faces.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/IntTools_SequenceOfRanges.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/IntTools_SequenceOfRoots.hxx
#include "NCollection_tmpl.hxx"
// user-defined pre
#include "OCP_specific.inc"
// user-defined inclusion per module
// Module definiiton
void register_IntTools(py::module &main_module) {
py::module m = static_cast<py::module>(main_module.attr("IntTools"));
py::object klass;
//Python trampoline classes
// classes
// Class IntTools from ./opencascade/IntTools.hxx
klass = m.attr("IntTools");
// default constructor
register_default_constructor<IntTools , shared_ptr<IntTools>>(m,"IntTools");
// nested enums
static_cast<py::class_<IntTools , shared_ptr<IntTools> >>(klass)
// constructors
// custom constructors
// methods
// methods using call by reference i.s.o. return
// static methods
.def_static("Length_s",
(Standard_Real (*)( const TopoDS_Edge & ) ) static_cast<Standard_Real (*)( const TopoDS_Edge & ) >(&IntTools::Length),
R"#(returns the length of the edge;)#" , py::arg("E")
)
.def_static("RemoveIdenticalRoots_s",
(void (*)( IntTools_SequenceOfRoots & , const Standard_Real ) ) static_cast<void (*)( IntTools_SequenceOfRoots & , const Standard_Real ) >(&IntTools::RemoveIdenticalRoots),
R"#(Remove from the sequence aSeq the Roots that have values ti and tj such as |ti-tj] < anEpsT.)#" , py::arg("aSeq"), py::arg("anEpsT")
)
.def_static("SortRoots_s",
(void (*)( IntTools_SequenceOfRoots & , const Standard_Real ) ) static_cast<void (*)( IntTools_SequenceOfRoots & , const Standard_Real ) >(&IntTools::SortRoots),
R"#(Sort the sequence aSeq of the Roots to arrange the Roots in increasing order.)#" , py::arg("aSeq"), py::arg("anEpsT")
)
.def_static("FindRootStates_s",
(void (*)( IntTools_SequenceOfRoots & , const Standard_Real ) ) static_cast<void (*)( IntTools_SequenceOfRoots & , const Standard_Real ) >(&IntTools::FindRootStates),
R"#(Find the states (before and after) for each Root from the sequence aSeq)#" , py::arg("aSeq"), py::arg("anEpsNull")
)
.def_static("Parameter_s",
(Standard_Integer (*)( const gp_Pnt & , const handle<Geom_Curve> & , Standard_Real & ) ) static_cast<Standard_Integer (*)( const gp_Pnt & , const handle<Geom_Curve> & , Standard_Real & ) >(&IntTools::Parameter),
R"#()#" , py::arg("P"), py::arg("Curve"), py::arg("aParm")
)
.def_static("GetRadius_s",
(Standard_Integer (*)( const BRepAdaptor_Curve & , const Standard_Real , const Standard_Real , Standard_Real & ) ) static_cast<Standard_Integer (*)( const BRepAdaptor_Curve & , const Standard_Real , const Standard_Real , Standard_Real & ) >(&IntTools::GetRadius),
R"#()#" , py::arg("C"), py::arg("t1"), py::arg("t3"), py::arg("R")
)
.def_static("PrepareArgs_s",
(Standard_Integer (*)( BRepAdaptor_Curve & , const Standard_Real , const Standard_Real , const Standard_Integer , const Standard_Real , TColStd_Array1OfReal & ) ) static_cast<Standard_Integer (*)( BRepAdaptor_Curve & , const Standard_Real , const Standard_Real , const Standard_Integer , const Standard_Real , TColStd_Array1OfReal & ) >(&IntTools::PrepareArgs),
R"#()#" , py::arg("C"), py::arg("tMax"), py::arg("tMin"), py::arg("Discret"), py::arg("Deflect"), py::arg("anArgs")
)
// 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 IntTools_BaseRangeSample from ./opencascade/IntTools_BaseRangeSample.hxx
klass = m.attr("IntTools_BaseRangeSample");
// nested enums
static_cast<py::class_<IntTools_BaseRangeSample , shared_ptr<IntTools_BaseRangeSample> >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const Standard_Integer >() , py::arg("theDepth") )
// custom constructors
// methods
.def("SetDepth",
(void (IntTools_BaseRangeSample::*)( const Standard_Integer ) ) static_cast<void (IntTools_BaseRangeSample::*)( const Standard_Integer ) >(&IntTools_BaseRangeSample::SetDepth),
R"#()#" , py::arg("theDepth")
)
.def("GetDepth",
(Standard_Integer (IntTools_BaseRangeSample::*)() const) static_cast<Standard_Integer (IntTools_BaseRangeSample::*)() const>(&IntTools_BaseRangeSample::GetDepth),
R"#()#"
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class IntTools_BeanFaceIntersector from ./opencascade/IntTools_BeanFaceIntersector.hxx
klass = m.attr("IntTools_BeanFaceIntersector");
// nested enums
static_cast<py::class_<IntTools_BeanFaceIntersector , shared_ptr<IntTools_BeanFaceIntersector> >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const TopoDS_Edge &, const TopoDS_Face & >() , py::arg("theEdge"), py::arg("theFace") )
.def(py::init< const BRepAdaptor_Curve &, const BRepAdaptor_Surface &, const Standard_Real, const Standard_Real >() , py::arg("theCurve"), py::arg("theSurface"), py::arg("theBeanTolerance"), py::arg("theFaceTolerance") )
.def(py::init< const BRepAdaptor_Curve &, const BRepAdaptor_Surface &, const Standard_Real, const Standard_Real, const Standard_Real, const Standard_Real, const Standard_Real, const Standard_Real, const Standard_Real, const Standard_Real >() , py::arg("theCurve"), py::arg("theSurface"), py::arg("theFirstParOnCurve"), py::arg("theLastParOnCurve"), py::arg("theUMinParameter"), py::arg("theUMaxParameter"), py::arg("theVMinParameter"), py::arg("theVMaxParameter"), py::arg("theBeanTolerance"), py::arg("theFaceTolerance") )
// custom constructors
// methods
.def("Init",
(void (IntTools_BeanFaceIntersector::*)( const TopoDS_Edge & , const TopoDS_Face & ) ) static_cast<void (IntTools_BeanFaceIntersector::*)( const TopoDS_Edge & , const TopoDS_Face & ) >(&IntTools_BeanFaceIntersector::Init),
R"#(Initializes the algorithm)#" , py::arg("theEdge"), py::arg("theFace")
)
.def("Init",
(void (IntTools_BeanFaceIntersector::*)( const BRepAdaptor_Curve & , const BRepAdaptor_Surface & , const Standard_Real , const Standard_Real ) ) static_cast<void (IntTools_BeanFaceIntersector::*)( const BRepAdaptor_Curve & , const BRepAdaptor_Surface & , const Standard_Real , const Standard_Real ) >(&IntTools_BeanFaceIntersector::Init),
R"#(Initializes the algorithm)#" , py::arg("theCurve"), py::arg("theSurface"), py::arg("theBeanTolerance"), py::arg("theFaceTolerance")
)
.def("Init",
(void (IntTools_BeanFaceIntersector::*)( const BRepAdaptor_Curve & , const BRepAdaptor_Surface & , const Standard_Real , const Standard_Real , const Standard_Real , const Standard_Real , const Standard_Real , const Standard_Real , const Standard_Real , const Standard_Real ) ) static_cast<void (IntTools_BeanFaceIntersector::*)( const BRepAdaptor_Curve & , const BRepAdaptor_Surface & , const Standard_Real , const Standard_Real , const Standard_Real , const Standard_Real , const Standard_Real , const Standard_Real , const Standard_Real , const Standard_Real ) >(&IntTools_BeanFaceIntersector::Init),
R"#(Initializes the algorithm theUMinParameter, ... are used for optimization purposes)#" , py::arg("theCurve"), py::arg("theSurface"), py::arg("theFirstParOnCurve"), py::arg("theLastParOnCurve"), py::arg("theUMinParameter"), py::arg("theUMaxParameter"), py::arg("theVMinParameter"), py::arg("theVMaxParameter"), py::arg("theBeanTolerance"), py::arg("theFaceTolerance")
)
.def("SetContext",
(void (IntTools_BeanFaceIntersector::*)( const handle<IntTools_Context> & ) ) static_cast<void (IntTools_BeanFaceIntersector::*)( const handle<IntTools_Context> & ) >(&IntTools_BeanFaceIntersector::SetContext),
R"#(Sets the intersection context)#" , py::arg("theContext")
)
.def("SetBeanParameters",
(void (IntTools_BeanFaceIntersector::*)( const Standard_Real , const Standard_Real ) ) static_cast<void (IntTools_BeanFaceIntersector::*)( const Standard_Real , const Standard_Real ) >(&IntTools_BeanFaceIntersector::SetBeanParameters),
R"#(Set restrictions for curve)#" , py::arg("theFirstParOnCurve"), py::arg("theLastParOnCurve")
)
.def("SetSurfaceParameters",
(void (IntTools_BeanFaceIntersector::*)( const Standard_Real , const Standard_Real , const Standard_Real , const Standard_Real ) ) static_cast<void (IntTools_BeanFaceIntersector::*)( const Standard_Real , const Standard_Real , const Standard_Real , const Standard_Real ) >(&IntTools_BeanFaceIntersector::SetSurfaceParameters),
R"#(Set restrictions for surface)#" , py::arg("theUMinParameter"), py::arg("theUMaxParameter"), py::arg("theVMinParameter"), py::arg("theVMaxParameter")
)
.def("Perform",
(void (IntTools_BeanFaceIntersector::*)() ) static_cast<void (IntTools_BeanFaceIntersector::*)() >(&IntTools_BeanFaceIntersector::Perform),
R"#(Launches the algorithm)#"
)
.def("IsDone",
(Standard_Boolean (IntTools_BeanFaceIntersector::*)() const) static_cast<Standard_Boolean (IntTools_BeanFaceIntersector::*)() const>(&IntTools_BeanFaceIntersector::IsDone),
R"#(Returns Done/NotDone state of the algorithm.)#"
)
.def("Result",
(void (IntTools_BeanFaceIntersector::*)( IntTools_SequenceOfRanges & ) const) static_cast<void (IntTools_BeanFaceIntersector::*)( IntTools_SequenceOfRanges & ) const>(&IntTools_BeanFaceIntersector::Result),
R"#()#" , py::arg("theResults")
)
.def("MinimalSquareDistance",
(Standard_Real (IntTools_BeanFaceIntersector::*)() const) static_cast<Standard_Real (IntTools_BeanFaceIntersector::*)() const>(&IntTools_BeanFaceIntersector::MinimalSquareDistance),
R"#(Returns the minimal distance found between edge and face)#"
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("Context",
( const handle<IntTools_Context> & (IntTools_BeanFaceIntersector::*)() const) static_cast< const handle<IntTools_Context> & (IntTools_BeanFaceIntersector::*)() const>(&IntTools_BeanFaceIntersector::Context),
R"#(Gets the intersection context)#"
)
.def("Result",
( const IntTools_SequenceOfRanges & (IntTools_BeanFaceIntersector::*)() const) static_cast< const IntTools_SequenceOfRanges & (IntTools_BeanFaceIntersector::*)() const>(&IntTools_BeanFaceIntersector::Result),
R"#()#"
)
;
// Class IntTools_CommonPrt from ./opencascade/IntTools_CommonPrt.hxx
klass = m.attr("IntTools_CommonPrt");
// nested enums
static_cast<py::class_<IntTools_CommonPrt , shared_ptr<IntTools_CommonPrt> >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const IntTools_CommonPrt & >() , py::arg("aCPrt") )
// custom constructors
// methods
.def("Assign",
(IntTools_CommonPrt & (IntTools_CommonPrt::*)( const IntTools_CommonPrt & ) ) static_cast<IntTools_CommonPrt & (IntTools_CommonPrt::*)( const IntTools_CommonPrt & ) >(&IntTools_CommonPrt::Assign),
R"#()#" , py::arg("Other")
)
.def("SetEdge1",
(void (IntTools_CommonPrt::*)( const TopoDS_Edge & ) ) static_cast<void (IntTools_CommonPrt::*)( const TopoDS_Edge & ) >(&IntTools_CommonPrt::SetEdge1),
R"#(Sets the first edge.)#" , py::arg("anE")
)
.def("SetEdge2",
(void (IntTools_CommonPrt::*)( const TopoDS_Edge & ) ) static_cast<void (IntTools_CommonPrt::*)( const TopoDS_Edge & ) >(&IntTools_CommonPrt::SetEdge2),
R"#(Sets the second edge.)#" , py::arg("anE")
)
.def("SetType",
(void (IntTools_CommonPrt::*)( const TopAbs_ShapeEnum ) ) static_cast<void (IntTools_CommonPrt::*)( const TopAbs_ShapeEnum ) >(&IntTools_CommonPrt::SetType),
R"#(Sets the type of the common part Vertex or Edge)#" , py::arg("aType")
)
.def("SetRange1",
(void (IntTools_CommonPrt::*)( const IntTools_Range & ) ) static_cast<void (IntTools_CommonPrt::*)( const IntTools_Range & ) >(&IntTools_CommonPrt::SetRange1),
R"#(Sets the range of first edge.)#" , py::arg("aR")
)
.def("SetRange1",
(void (IntTools_CommonPrt::*)( const Standard_Real , const Standard_Real ) ) static_cast<void (IntTools_CommonPrt::*)( const Standard_Real , const Standard_Real ) >(&IntTools_CommonPrt::SetRange1),
R"#(Sets the range of first edge.)#" , py::arg("tf"), py::arg("tl")
)
.def("AppendRange2",
(void (IntTools_CommonPrt::*)( const IntTools_Range & ) ) static_cast<void (IntTools_CommonPrt::*)( const IntTools_Range & ) >(&IntTools_CommonPrt::AppendRange2),
R"#(Appends the range of second edge.)#" , py::arg("aR")
)
.def("AppendRange2",
(void (IntTools_CommonPrt::*)( const Standard_Real , const Standard_Real ) ) static_cast<void (IntTools_CommonPrt::*)( const Standard_Real , const Standard_Real ) >(&IntTools_CommonPrt::AppendRange2),
R"#(Appends the range of second edge.)#" , py::arg("tf"), py::arg("tl")
)
.def("SetVertexParameter1",
(void (IntTools_CommonPrt::*)( const Standard_Real ) ) static_cast<void (IntTools_CommonPrt::*)( const Standard_Real ) >(&IntTools_CommonPrt::SetVertexParameter1),
R"#(Sets a parameter of first vertex)#" , py::arg("tV")
)
.def("SetVertexParameter2",
(void (IntTools_CommonPrt::*)( const Standard_Real ) ) static_cast<void (IntTools_CommonPrt::*)( const Standard_Real ) >(&IntTools_CommonPrt::SetVertexParameter2),
R"#(Sets a parameter of second vertex)#" , py::arg("tV")
)
.def("Type",
(TopAbs_ShapeEnum (IntTools_CommonPrt::*)() const) static_cast<TopAbs_ShapeEnum (IntTools_CommonPrt::*)() const>(&IntTools_CommonPrt::Type),
R"#(Returns the type of the common part)#"
)
.def("VertexParameter1",
(Standard_Real (IntTools_CommonPrt::*)() const) static_cast<Standard_Real (IntTools_CommonPrt::*)() const>(&IntTools_CommonPrt::VertexParameter1),
R"#(Returns parameter of first vertex)#"
)
.def("VertexParameter2",
(Standard_Real (IntTools_CommonPrt::*)() const) static_cast<Standard_Real (IntTools_CommonPrt::*)() const>(&IntTools_CommonPrt::VertexParameter2),
R"#(Returns parameter of second vertex)#"
)
.def("Copy",
(void (IntTools_CommonPrt::*)( IntTools_CommonPrt & ) const) static_cast<void (IntTools_CommonPrt::*)( IntTools_CommonPrt & ) const>(&IntTools_CommonPrt::Copy),
R"#(Copies me to anOther)#" , py::arg("anOther")
)
.def("AllNullFlag",
(Standard_Boolean (IntTools_CommonPrt::*)() const) static_cast<Standard_Boolean (IntTools_CommonPrt::*)() const>(&IntTools_CommonPrt::AllNullFlag),
R"#(Modifier)#"
)
.def("SetAllNullFlag",
(void (IntTools_CommonPrt::*)( const Standard_Boolean ) ) static_cast<void (IntTools_CommonPrt::*)( const Standard_Boolean ) >(&IntTools_CommonPrt::SetAllNullFlag),
R"#(Selector)#" , py::arg("aFlag")
)
.def("SetBoundingPoints",
(void (IntTools_CommonPrt::*)( const gp_Pnt & , const gp_Pnt & ) ) static_cast<void (IntTools_CommonPrt::*)( const gp_Pnt & , const gp_Pnt & ) >(&IntTools_CommonPrt::SetBoundingPoints),
R"#(Modifier)#" , py::arg("aP1"), py::arg("aP2")
)
.def("BoundingPoints",
(void (IntTools_CommonPrt::*)( gp_Pnt & , gp_Pnt & ) const) static_cast<void (IntTools_CommonPrt::*)( gp_Pnt & , gp_Pnt & ) const>(&IntTools_CommonPrt::BoundingPoints),
R"#(Selector)#" , py::arg("aP1"), py::arg("aP2")
)
// methods using call by reference i.s.o. return
.def("Range1",
[]( IntTools_CommonPrt &self ){
Standard_Real tf;
Standard_Real tl;
self.Range1(tf,tl);
return std::make_tuple(tf,tl); },
R"#(Returns the range of first edge.)#"
)
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("Edge1",
( const TopoDS_Edge & (IntTools_CommonPrt::*)() const) static_cast< const TopoDS_Edge & (IntTools_CommonPrt::*)() const>(&IntTools_CommonPrt::Edge1),
R"#(Returns the first edge.)#"
)
.def("Edge2",
( const TopoDS_Edge & (IntTools_CommonPrt::*)() const) static_cast< const TopoDS_Edge & (IntTools_CommonPrt::*)() const>(&IntTools_CommonPrt::Edge2),
R"#(Returns the second edge)#"
)
.def("Range1",
( const IntTools_Range & (IntTools_CommonPrt::*)() const) static_cast< const IntTools_Range & (IntTools_CommonPrt::*)() const>(&IntTools_CommonPrt::Range1),
R"#(Returns the range of first edge)#"
)
.def("Ranges2",
( const IntTools_SequenceOfRanges & (IntTools_CommonPrt::*)() const) static_cast< const IntTools_SequenceOfRanges & (IntTools_CommonPrt::*)() const>(&IntTools_CommonPrt::Ranges2),
R"#(Returns the ranges of second edge.)#"
)
.def("ChangeRanges2",
(IntTools_SequenceOfRanges & (IntTools_CommonPrt::*)() ) static_cast<IntTools_SequenceOfRanges & (IntTools_CommonPrt::*)() >(&IntTools_CommonPrt::ChangeRanges2),
R"#(Returns the ranges of second edge.)#"
, py::return_value_policy::reference_internal
)
;
// Class IntTools_Context from ./opencascade/IntTools_Context.hxx
klass = m.attr("IntTools_Context");
// nested enums
static_cast<py::class_<IntTools_Context ,opencascade::handle<IntTools_Context> , Standard_Transient >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const handle<NCollection_BaseAllocator> & >() , py::arg("theAllocator") )
// custom constructors
// methods
.def("FClass2d",
(IntTools_FClass2d & (IntTools_Context::*)( const TopoDS_Face & ) ) static_cast<IntTools_FClass2d & (IntTools_Context::*)( const TopoDS_Face & ) >(&IntTools_Context::FClass2d),
R"#(Returns a reference to point classifier for given face)#" , py::arg("aF")
)
.def("ProjPS",
(GeomAPI_ProjectPointOnSurf & (IntTools_Context::*)( const TopoDS_Face & ) ) static_cast<GeomAPI_ProjectPointOnSurf & (IntTools_Context::*)( const TopoDS_Face & ) >(&IntTools_Context::ProjPS),
R"#(Returns a reference to point projector for given face)#" , py::arg("aF")
)
.def("ProjPC",
(GeomAPI_ProjectPointOnCurve & (IntTools_Context::*)( const TopoDS_Edge & ) ) static_cast<GeomAPI_ProjectPointOnCurve & (IntTools_Context::*)( const TopoDS_Edge & ) >(&IntTools_Context::ProjPC),
R"#(Returns a reference to point projector for given edge)#" , py::arg("aE")
)
.def("ProjPT",
(GeomAPI_ProjectPointOnCurve & (IntTools_Context::*)( const handle<Geom_Curve> & ) ) static_cast<GeomAPI_ProjectPointOnCurve & (IntTools_Context::*)( const handle<Geom_Curve> & ) >(&IntTools_Context::ProjPT),
R"#(Returns a reference to point projector for given curve)#" , py::arg("aC")
)
.def("SurfaceData",
(IntTools_SurfaceRangeLocalizeData & (IntTools_Context::*)( const TopoDS_Face & ) ) static_cast<IntTools_SurfaceRangeLocalizeData & (IntTools_Context::*)( const TopoDS_Face & ) >(&IntTools_Context::SurfaceData),
R"#(Returns a reference to surface localization data for given face)#" , py::arg("aF")
)
.def("SolidClassifier",
(BRepClass3d_SolidClassifier & (IntTools_Context::*)( const TopoDS_Solid & ) ) static_cast<BRepClass3d_SolidClassifier & (IntTools_Context::*)( const TopoDS_Solid & ) >(&IntTools_Context::SolidClassifier),
R"#(Returns a reference to solid classifier for given solid)#" , py::arg("aSolid")
)
.def("Hatcher",
(Geom2dHatch_Hatcher & (IntTools_Context::*)( const TopoDS_Face & ) ) static_cast<Geom2dHatch_Hatcher & (IntTools_Context::*)( const TopoDS_Face & ) >(&IntTools_Context::Hatcher),
R"#(Returns a reference to 2D hatcher for given face)#" , py::arg("aF")
)
.def("SurfaceAdaptor",
(BRepAdaptor_Surface & (IntTools_Context::*)( const TopoDS_Face & ) ) static_cast<BRepAdaptor_Surface & (IntTools_Context::*)( const TopoDS_Face & ) >(&IntTools_Context::SurfaceAdaptor),
R"#(Returns a reference to surface adaptor for given face)#" , py::arg("theFace")
)
.def("OBB",
(Bnd_OBB & (IntTools_Context::*)( const TopoDS_Shape & , const Standard_Real ) ) static_cast<Bnd_OBB & (IntTools_Context::*)( const TopoDS_Shape & , const Standard_Real ) >(&IntTools_Context::OBB),
R"#(Builds and stores an Oriented Bounding Box for the shape. Returns a reference to OBB.)#" , py::arg("theShape"), py::arg("theFuzzyValue")=static_cast< const Standard_Real>(Precision :: Confusion ( ))
)
.def("ComputePE",
(Standard_Integer (IntTools_Context::*)( const gp_Pnt & , const Standard_Real , const TopoDS_Edge & , Standard_Real & , Standard_Real & ) ) static_cast<Standard_Integer (IntTools_Context::*)( const gp_Pnt & , const Standard_Real , const TopoDS_Edge & , Standard_Real & , Standard_Real & ) >(&IntTools_Context::ComputePE),
R"#(Computes parameter of the Point theP on the edge aE. Returns zero if the distance between point and edge is less than sum of tolerance value of edge and theTopP, otherwise and for following conditions returns negative value 1. the edge is degenerated (-1) 2. the edge does not contain 3d curve and pcurves (-2) 3. projection algorithm failed (-3))#" , py::arg("theP"), py::arg("theTolP"), py::arg("theE"), py::arg("theT"), py::arg("theDist")
)
.def("ComputeVE",
(Standard_Integer (IntTools_Context::*)( const TopoDS_Vertex & , const TopoDS_Edge & , Standard_Real & , Standard_Real & , const Standard_Real ) ) static_cast<Standard_Integer (IntTools_Context::*)( const TopoDS_Vertex & , const TopoDS_Edge & , Standard_Real & , Standard_Real & , const Standard_Real ) >(&IntTools_Context::ComputeVE),
R"#(Computes parameter of the vertex aV on the edge aE and correct tolerance value for the vertex on the edge. Returns zero if the distance between vertex and edge is less than sum of tolerances and the fuzzy value, otherwise and for following conditions returns negative value: 1. the edge is degenerated (-1) 2. the edge does not contain 3d curve and pcurves (-2) 3. projection algorithm failed (-3))#" , py::arg("theV"), py::arg("theE"), py::arg("theT"), py::arg("theTol"), py::arg("theFuzz")=static_cast< const Standard_Real>(Precision :: Confusion ( ))
)
.def("ComputeVF",
(Standard_Integer (IntTools_Context::*)( const TopoDS_Vertex & , const TopoDS_Face & , Standard_Real & , Standard_Real & , Standard_Real & , const Standard_Real ) ) static_cast<Standard_Integer (IntTools_Context::*)( const TopoDS_Vertex & , const TopoDS_Face & , Standard_Real & , Standard_Real & , Standard_Real & , const Standard_Real ) >(&IntTools_Context::ComputeVF),
R"#(Computes UV parameters of the vertex aV on face aF and correct tolerance value for the vertex on the face. Returns zero if the distance between vertex and face is less than or equal the sum of tolerances and the fuzzy value and the projection point lays inside boundaries of the face. For following conditions returns negative value 1. projection algorithm failed (-1) 2. distance is more than sum of tolerances (-2) 3. projection point out or on the boundaries of face (-3))#" , py::arg("theVertex"), py::arg("theFace"), py::arg("theU"), py::arg("theV"), py::arg("theTol"), py::arg("theFuzz")=static_cast< const Standard_Real>(Precision :: Confusion ( ))
)
.def("StatePointFace",
(TopAbs_State (IntTools_Context::*)( const TopoDS_Face & , const gp_Pnt2d & ) ) static_cast<TopAbs_State (IntTools_Context::*)( const TopoDS_Face & , const gp_Pnt2d & ) >(&IntTools_Context::StatePointFace),
R"#(Returns the state of the point aP2D relative to face aF)#" , py::arg("aF"), py::arg("aP2D")
)
.def("IsPointInFace",
(Standard_Boolean (IntTools_Context::*)( const TopoDS_Face & , const gp_Pnt2d & ) ) static_cast<Standard_Boolean (IntTools_Context::*)( const TopoDS_Face & , const gp_Pnt2d & ) >(&IntTools_Context::IsPointInFace),
R"#(Returns true if the point aP2D is inside the boundaries of the face aF, otherwise returns false)#" , py::arg("aF"), py::arg("aP2D")
)
.def("IsPointInFace",
(Standard_Boolean (IntTools_Context::*)( const gp_Pnt & , const TopoDS_Face & , const Standard_Real ) ) static_cast<Standard_Boolean (IntTools_Context::*)( const gp_Pnt & , const TopoDS_Face & , const Standard_Real ) >(&IntTools_Context::IsPointInFace),
R"#(Returns true if the point aP2D is inside the boundaries of the face aF, otherwise returns false)#" , py::arg("aP3D"), py::arg("aF"), py::arg("aTol")
)
.def("IsPointInOnFace",
(Standard_Boolean (IntTools_Context::*)( const TopoDS_Face & , const gp_Pnt2d & ) ) static_cast<Standard_Boolean (IntTools_Context::*)( const TopoDS_Face & , const gp_Pnt2d & ) >(&IntTools_Context::IsPointInOnFace),
R"#(Returns true if the point aP2D is inside or on the boundaries of aF)#" , py::arg("aF"), py::arg("aP2D")
)
.def("IsValidPointForFace",
(Standard_Boolean (IntTools_Context::*)( const gp_Pnt & , const TopoDS_Face & , const Standard_Real ) ) static_cast<Standard_Boolean (IntTools_Context::*)( const gp_Pnt & , const TopoDS_Face & , const Standard_Real ) >(&IntTools_Context::IsValidPointForFace),
R"#(Returns true if the distance between point aP3D and face aF is less or equal to tolerance aTol and projection point is inside or on the boundaries of the face aF)#" , py::arg("aP3D"), py::arg("aF"), py::arg("aTol")
)
.def("IsValidPointForFaces",
(Standard_Boolean (IntTools_Context::*)( const gp_Pnt & , const TopoDS_Face & , const TopoDS_Face & , const Standard_Real ) ) static_cast<Standard_Boolean (IntTools_Context::*)( const gp_Pnt & , const TopoDS_Face & , const TopoDS_Face & , const Standard_Real ) >(&IntTools_Context::IsValidPointForFaces),
R"#(Returns true if IsValidPointForFace returns true for both face aF1 and aF2)#" , py::arg("aP3D"), py::arg("aF1"), py::arg("aF2"), py::arg("aTol")
)
.def("IsValidBlockForFace",
(Standard_Boolean (IntTools_Context::*)( const Standard_Real , const Standard_Real , const IntTools_Curve & , const TopoDS_Face & , const Standard_Real ) ) static_cast<Standard_Boolean (IntTools_Context::*)( const Standard_Real , const Standard_Real , const IntTools_Curve & , const TopoDS_Face & , const Standard_Real ) >(&IntTools_Context::IsValidBlockForFace),
R"#(Returns true if IsValidPointForFace returns true for some 3d point that lay on the curve aIC bounded by parameters aT1 and aT2)#" , py::arg("aT1"), py::arg("aT2"), py::arg("aIC"), py::arg("aF"), py::arg("aTol")
)
.def("IsValidBlockForFaces",
(Standard_Boolean (IntTools_Context::*)( const Standard_Real , const Standard_Real , const IntTools_Curve & , const TopoDS_Face & , const TopoDS_Face & , const Standard_Real ) ) static_cast<Standard_Boolean (IntTools_Context::*)( const Standard_Real , const Standard_Real , const IntTools_Curve & , const TopoDS_Face & , const TopoDS_Face & , const Standard_Real ) >(&IntTools_Context::IsValidBlockForFaces),
R"#(Returns true if IsValidBlockForFace returns true for both faces aF1 and aF2)#" , py::arg("aT1"), py::arg("aT2"), py::arg("aIC"), py::arg("aF1"), py::arg("aF2"), py::arg("aTol")
)
.def("IsVertexOnLine",
(Standard_Boolean (IntTools_Context::*)( const TopoDS_Vertex & , const IntTools_Curve & , const Standard_Real , Standard_Real & ) ) static_cast<Standard_Boolean (IntTools_Context::*)( const TopoDS_Vertex & , const IntTools_Curve & , const Standard_Real , Standard_Real & ) >(&IntTools_Context::IsVertexOnLine),
R"#(Computes parameter of the vertex aV on the curve aIC. Returns true if the distance between vertex and curve is less than sum of tolerance of aV and aTolC, otherwise or if projection algorithm failed returns false (in this case aT isn't significant))#" , py::arg("aV"), py::arg("aIC"), py::arg("aTolC"), py::arg("aT")
)
.def("IsVertexOnLine",
(Standard_Boolean (IntTools_Context::*)( const TopoDS_Vertex & , const Standard_Real , const IntTools_Curve & , const Standard_Real , Standard_Real & ) ) static_cast<Standard_Boolean (IntTools_Context::*)( const TopoDS_Vertex & , const Standard_Real , const IntTools_Curve & , const Standard_Real , Standard_Real & ) >(&IntTools_Context::IsVertexOnLine),
R"#(Computes parameter of the vertex aV on the curve aIC. Returns true if the distance between vertex and curve is less than sum of tolerance of aV and aTolC, otherwise or if projection algorithm failed returns false (in this case aT isn't significant))#" , py::arg("aV"), py::arg("aTolV"), py::arg("aIC"), py::arg("aTolC"), py::arg("aT")
)
.def("ProjectPointOnEdge",
(Standard_Boolean (IntTools_Context::*)( const gp_Pnt & , const TopoDS_Edge & , Standard_Real & ) ) static_cast<Standard_Boolean (IntTools_Context::*)( const gp_Pnt & , const TopoDS_Edge & , Standard_Real & ) >(&IntTools_Context::ProjectPointOnEdge),
R"#(Computes parameter of the point aP on the edge aE. Returns false if projection algorithm failed other wiese returns true.)#" , py::arg("aP"), py::arg("aE"), py::arg("aT")
)
.def("BndBox",
(Bnd_Box & (IntTools_Context::*)( const TopoDS_Shape & ) ) static_cast<Bnd_Box & (IntTools_Context::*)( const TopoDS_Shape & ) >(&IntTools_Context::BndBox),
R"#()#" , py::arg("theS")
)
.def("IsInfiniteFace",
(Standard_Boolean (IntTools_Context::*)( const TopoDS_Face & ) ) static_cast<Standard_Boolean (IntTools_Context::*)( const TopoDS_Face & ) >(&IntTools_Context::IsInfiniteFace),
R"#(Returns true if the solid <theFace> has infinite bounds)#" , py::arg("theFace")
)
.def("SetPOnSProjectionTolerance",
(void (IntTools_Context::*)( const Standard_Real ) ) static_cast<void (IntTools_Context::*)( const Standard_Real ) >(&IntTools_Context::SetPOnSProjectionTolerance),
R"#(Sets tolerance to be used for projection of point on surface. Clears map of already cached projectors in order to maintain correct value for all projectors)#" , py::arg("theValue")
)
// methods using call by reference i.s.o. return
.def("UVBounds",
[]( IntTools_Context &self , const TopoDS_Face & theFace ){
Standard_Real UMin;
Standard_Real UMax;
Standard_Real VMin;
Standard_Real VMax;
self.UVBounds(theFace,UMin,UMax,VMin,VMax);
return std::make_tuple(UMin,UMax,VMin,VMax); },
R"#(Computes the boundaries of the face using surface adaptor)#" , py::arg("theFace")
)
// static methods
.def_static("get_type_name_s",
( const char * (*)() ) static_cast< const char * (*)() >(&IntTools_Context::get_type_name),
R"#()#"
)
.def_static("get_type_descriptor_s",
( const handle<Standard_Type> & (*)() ) static_cast< const handle<Standard_Type> & (*)() >(&IntTools_Context::get_type_descriptor),
R"#()#"
)
// 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 handle<Standard_Type> & (IntTools_Context::*)() const) static_cast< const handle<Standard_Type> & (IntTools_Context::*)() const>(&IntTools_Context::DynamicType),
R"#()#"
)
;
// Class IntTools_Curve from ./opencascade/IntTools_Curve.hxx
klass = m.attr("IntTools_Curve");
// nested enums
static_cast<py::class_<IntTools_Curve , shared_ptr<IntTools_Curve> >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const handle<Geom_Curve> &, const handle<Geom2d_Curve> &, const handle<Geom2d_Curve> &, const Standard_Real, const Standard_Real >() , py::arg("the3dCurve3d"), py::arg("the2dCurve1"), py::arg("the2dCurve2"), py::arg("theTolerance")=static_cast< const Standard_Real>(0.0), py::arg("theTangentialTolerance")=static_cast< const Standard_Real>(0.0) )
// custom constructors
// methods
.def("SetCurves",
(void (IntTools_Curve::*)( const handle<Geom_Curve> & , const handle<Geom2d_Curve> & , const handle<Geom2d_Curve> & ) ) static_cast<void (IntTools_Curve::*)( const handle<Geom_Curve> & , const handle<Geom2d_Curve> & , const handle<Geom2d_Curve> & ) >(&IntTools_Curve::SetCurves),
R"#(Sets the curves)#" , py::arg("the3dCurve"), py::arg("the2dCurve1"), py::arg("the2dCurve2")
)
.def("SetCurve",
(void (IntTools_Curve::*)( const handle<Geom_Curve> & ) ) static_cast<void (IntTools_Curve::*)( const handle<Geom_Curve> & ) >(&IntTools_Curve::SetCurve),
R"#(Sets the 3d curve)#" , py::arg("the3dCurve")
)
.def("SetFirstCurve2d",
(void (IntTools_Curve::*)( const handle<Geom2d_Curve> & ) ) static_cast<void (IntTools_Curve::*)( const handle<Geom2d_Curve> & ) >(&IntTools_Curve::SetFirstCurve2d),
R"#(Sets the first 2d curve)#" , py::arg("the2dCurve1")
)
.def("SetSecondCurve2d",
(void (IntTools_Curve::*)( const handle<Geom2d_Curve> & ) ) static_cast<void (IntTools_Curve::*)( const handle<Geom2d_Curve> & ) >(&IntTools_Curve::SetSecondCurve2d),
R"#(Sets the second 2d curve)#" , py::arg("the2dCurve2")
)
.def("SetTolerance",
(void (IntTools_Curve::*)( const Standard_Real ) ) static_cast<void (IntTools_Curve::*)( const Standard_Real ) >(&IntTools_Curve::SetTolerance),
R"#(Sets the tolerance for the curve)#" , py::arg("theTolerance")
)
.def("SetTangentialTolerance",
(void (IntTools_Curve::*)( const Standard_Real ) ) static_cast<void (IntTools_Curve::*)( const Standard_Real ) >(&IntTools_Curve::SetTangentialTolerance),
R"#(Sets the tangential tolerance)#" , py::arg("theTangentialTolerance")
)
.def("Tolerance",
(Standard_Real (IntTools_Curve::*)() const) static_cast<Standard_Real (IntTools_Curve::*)() const>(&IntTools_Curve::Tolerance),
R"#(Returns the tolerance)#"
)
.def("TangentialTolerance",
(Standard_Real (IntTools_Curve::*)() const) static_cast<Standard_Real (IntTools_Curve::*)() const>(&IntTools_Curve::TangentialTolerance),
R"#(Returns the tangential tolerance)#"
)
.def("HasBounds",
(Standard_Boolean (IntTools_Curve::*)() const) static_cast<Standard_Boolean (IntTools_Curve::*)() const>(&IntTools_Curve::HasBounds),
R"#(Returns TRUE if 3d curve is BoundedCurve)#"
)
.def("Bounds",
(Standard_Boolean (IntTools_Curve::*)( Standard_Real & , Standard_Real & , gp_Pnt & , gp_Pnt & ) const) static_cast<Standard_Boolean (IntTools_Curve::*)( Standard_Real & , Standard_Real & , gp_Pnt & , gp_Pnt & ) const>(&IntTools_Curve::Bounds),
R"#(If the 3d curve is bounded curve the method will return TRUE and modify the output parameters with boundary parameters of the curve and corresponded 3d points. If the curve does not have bounds, the method will return false and the output parameters will stay untouched.)#" , py::arg("theFirst"), py::arg("theLast"), py::arg("theFirstPnt"), py::arg("theLastPnt")
)
.def("D0",
(Standard_Boolean (IntTools_Curve::*)( const Standard_Real & , gp_Pnt & ) const) static_cast<Standard_Boolean (IntTools_Curve::*)( const Standard_Real & , gp_Pnt & ) const>(&IntTools_Curve::D0),
R"#(Computes 3d point corresponded to the given parameter if this parameter is inside the boundaries of the curve. Returns TRUE in this case. Otherwise, the point will not be computed and the method will return FALSE.)#" , py::arg("thePar"), py::arg("thePnt")
)
.def("Type",
(GeomAbs_CurveType (IntTools_Curve::*)() const) static_cast<GeomAbs_CurveType (IntTools_Curve::*)() const>(&IntTools_Curve::Type),
R"#(Returns the type of the 3d curve)#"
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("Curve",
( const handle<Geom_Curve> & (IntTools_Curve::*)() const) static_cast< const handle<Geom_Curve> & (IntTools_Curve::*)() const>(&IntTools_Curve::Curve),
R"#(Returns 3d curve)#"
)
.def("FirstCurve2d",
( const handle<Geom2d_Curve> & (IntTools_Curve::*)() const) static_cast< const handle<Geom2d_Curve> & (IntTools_Curve::*)() const>(&IntTools_Curve::FirstCurve2d),
R"#(Returns first 2d curve)#"
)
.def("SecondCurve2d",
( const handle<Geom2d_Curve> & (IntTools_Curve::*)() const) static_cast< const handle<Geom2d_Curve> & (IntTools_Curve::*)() const>(&IntTools_Curve::SecondCurve2d),
R"#(Returns second 2d curve)#"
)
;
// Class IntTools_CurveRangeLocalizeData from ./opencascade/IntTools_CurveRangeLocalizeData.hxx
klass = m.attr("IntTools_CurveRangeLocalizeData");
// nested enums
static_cast<py::class_<IntTools_CurveRangeLocalizeData , shared_ptr<IntTools_CurveRangeLocalizeData> >>(klass)
// constructors
.def(py::init< const Standard_Integer, const Standard_Real >() , py::arg("theNbSample"), py::arg("theMinRange") )
// custom constructors
// methods
.def("GetNbSample",
(Standard_Integer (IntTools_CurveRangeLocalizeData::*)() const) static_cast<Standard_Integer (IntTools_CurveRangeLocalizeData::*)() const>(&IntTools_CurveRangeLocalizeData::GetNbSample),
R"#()#"
)
.def("GetMinRange",
(Standard_Real (IntTools_CurveRangeLocalizeData::*)() const) static_cast<Standard_Real (IntTools_CurveRangeLocalizeData::*)() const>(&IntTools_CurveRangeLocalizeData::GetMinRange),
R"#()#"
)
.def("AddOutRange",
(void (IntTools_CurveRangeLocalizeData::*)( const IntTools_CurveRangeSample & ) ) static_cast<void (IntTools_CurveRangeLocalizeData::*)( const IntTools_CurveRangeSample & ) >(&IntTools_CurveRangeLocalizeData::AddOutRange),
R"#()#" , py::arg("theRange")
)
.def("AddBox",
(void (IntTools_CurveRangeLocalizeData::*)( const IntTools_CurveRangeSample & , const Bnd_Box & ) ) static_cast<void (IntTools_CurveRangeLocalizeData::*)( const IntTools_CurveRangeSample & , const Bnd_Box & ) >(&IntTools_CurveRangeLocalizeData::AddBox),
R"#()#" , py::arg("theRange"), py::arg("theBox")
)
.def("FindBox",
(Standard_Boolean (IntTools_CurveRangeLocalizeData::*)( const IntTools_CurveRangeSample & , Bnd_Box & ) const) static_cast<Standard_Boolean (IntTools_CurveRangeLocalizeData::*)( const IntTools_CurveRangeSample & , Bnd_Box & ) const>(&IntTools_CurveRangeLocalizeData::FindBox),
R"#()#" , py::arg("theRange"), py::arg("theBox")
)
.def("IsRangeOut",
(Standard_Boolean (IntTools_CurveRangeLocalizeData::*)( const IntTools_CurveRangeSample & ) const) static_cast<Standard_Boolean (IntTools_CurveRangeLocalizeData::*)( const IntTools_CurveRangeSample & ) const>(&IntTools_CurveRangeLocalizeData::IsRangeOut),
R"#()#" , py::arg("theRange")
)
.def("ListRangeOut",
(void (IntTools_CurveRangeLocalizeData::*)( IntTools_ListOfCurveRangeSample & ) const) static_cast<void (IntTools_CurveRangeLocalizeData::*)( IntTools_ListOfCurveRangeSample & ) const>(&IntTools_CurveRangeLocalizeData::ListRangeOut),
R"#()#" , py::arg("theList")
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class IntTools_EdgeEdge from ./opencascade/IntTools_EdgeEdge.hxx
klass = m.attr("IntTools_EdgeEdge");
// nested enums
static_cast<py::class_<IntTools_EdgeEdge , shared_ptr<IntTools_EdgeEdge> >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const TopoDS_Edge &, const TopoDS_Edge & >() , py::arg("theEdge1"), py::arg("theEdge2") )
.def(py::init< const TopoDS_Edge &, const Standard_Real, const Standard_Real, const TopoDS_Edge &, const Standard_Real, const Standard_Real >() , py::arg("theEdge1"), py::arg("aT11"), py::arg("aT12"), py::arg("theEdge2"), py::arg("aT21"), py::arg("aT22") )
// custom constructors
// methods
.def("SetEdge1",
(void (IntTools_EdgeEdge::*)( const TopoDS_Edge & ) ) static_cast<void (IntTools_EdgeEdge::*)( const TopoDS_Edge & ) >(&IntTools_EdgeEdge::SetEdge1),
R"#(Sets the first edge)#" , py::arg("theEdge")
)
.def("SetEdge1",
(void (IntTools_EdgeEdge::*)( const TopoDS_Edge & , const Standard_Real , const Standard_Real ) ) static_cast<void (IntTools_EdgeEdge::*)( const TopoDS_Edge & , const Standard_Real , const Standard_Real ) >(&IntTools_EdgeEdge::SetEdge1),
R"#(Sets the first edge and its range)#" , py::arg("theEdge"), py::arg("aT1"), py::arg("aT2")
)
.def("SetRange1",
(void (IntTools_EdgeEdge::*)( const IntTools_Range & ) ) static_cast<void (IntTools_EdgeEdge::*)( const IntTools_Range & ) >(&IntTools_EdgeEdge::SetRange1),
R"#(Sets the range for the first edge)#" , py::arg("theRange1")
)
.def("SetRange1",
(void (IntTools_EdgeEdge::*)( const Standard_Real , const Standard_Real ) ) static_cast<void (IntTools_EdgeEdge::*)( const Standard_Real , const Standard_Real ) >(&IntTools_EdgeEdge::SetRange1),
R"#(Sets the range for the first edge)#" , py::arg("aT1"), py::arg("aT2")
)
.def("SetEdge2",
(void (IntTools_EdgeEdge::*)( const TopoDS_Edge & ) ) static_cast<void (IntTools_EdgeEdge::*)( const TopoDS_Edge & ) >(&IntTools_EdgeEdge::SetEdge2),
R"#(Sets the second edge)#" , py::arg("theEdge")
)
.def("SetEdge2",
(void (IntTools_EdgeEdge::*)( const TopoDS_Edge & , const Standard_Real , const Standard_Real ) ) static_cast<void (IntTools_EdgeEdge::*)( const TopoDS_Edge & , const Standard_Real , const Standard_Real ) >(&IntTools_EdgeEdge::SetEdge2),
R"#(Sets the first edge and its range)#" , py::arg("theEdge"), py::arg("aT1"), py::arg("aT2")
)
.def("SetRange2",
(void (IntTools_EdgeEdge::*)( const IntTools_Range & ) ) static_cast<void (IntTools_EdgeEdge::*)( const IntTools_Range & ) >(&IntTools_EdgeEdge::SetRange2),
R"#(Sets the range for the second edge)#" , py::arg("theRange")
)
.def("SetRange2",
(void (IntTools_EdgeEdge::*)( const Standard_Real , const Standard_Real ) ) static_cast<void (IntTools_EdgeEdge::*)( const Standard_Real , const Standard_Real ) >(&IntTools_EdgeEdge::SetRange2),
R"#(Sets the range for the second edge)#" , py::arg("aT1"), py::arg("aT2")
)
.def("SetFuzzyValue",
(void (IntTools_EdgeEdge::*)( const Standard_Real ) ) static_cast<void (IntTools_EdgeEdge::*)( const Standard_Real ) >(&IntTools_EdgeEdge::SetFuzzyValue),
R"#(Sets the Fuzzy value)#" , py::arg("theFuzz")
)
.def("Perform",
(void (IntTools_EdgeEdge::*)() ) static_cast<void (IntTools_EdgeEdge::*)() >(&IntTools_EdgeEdge::Perform),
R"#(Performs the intersection between edges)#"
)
.def("IsDone",
(Standard_Boolean (IntTools_EdgeEdge::*)() const) static_cast<Standard_Boolean (IntTools_EdgeEdge::*)() const>(&IntTools_EdgeEdge::IsDone),
R"#(Returns TRUE if common part(s) is(are) found)#"
)
.def("FuzzyValue",
(Standard_Real (IntTools_EdgeEdge::*)() const) static_cast<Standard_Real (IntTools_EdgeEdge::*)() const>(&IntTools_EdgeEdge::FuzzyValue),
R"#(Returns Fuzzy value)#"
)
.def("UseQuickCoincidenceCheck",
(void (IntTools_EdgeEdge::*)( const Standard_Boolean ) ) static_cast<void (IntTools_EdgeEdge::*)( const Standard_Boolean ) >(&IntTools_EdgeEdge::UseQuickCoincidenceCheck),
R"#(Sets the flag myQuickCoincidenceCheck)#" , py::arg("bFlag")
)
.def("IsCoincidenceCheckedQuickly",
(Standard_Boolean (IntTools_EdgeEdge::*)() ) static_cast<Standard_Boolean (IntTools_EdgeEdge::*)() >(&IntTools_EdgeEdge::IsCoincidenceCheckedQuickly),
R"#(Returns the flag myQuickCoincidenceCheck)#"
)
.def("SetEdge1",
(void (IntTools_EdgeEdge::*)( const TopoDS_Edge & ) ) static_cast<void (IntTools_EdgeEdge::*)( const TopoDS_Edge & ) >(&IntTools_EdgeEdge::SetEdge1),
R"#(Sets the first edge)#" , py::arg("theEdge")
)
.def("SetRange1",
(void (IntTools_EdgeEdge::*)( const IntTools_Range & ) ) static_cast<void (IntTools_EdgeEdge::*)( const IntTools_Range & ) >(&IntTools_EdgeEdge::SetRange1),
R"#(Sets the range for the first edge)#" , py::arg("theRange")
)
.def("SetRange1",
(void (IntTools_EdgeEdge::*)( const Standard_Real , const Standard_Real ) ) static_cast<void (IntTools_EdgeEdge::*)( const Standard_Real , const Standard_Real ) >(&IntTools_EdgeEdge::SetRange1),
R"#(Sets the range for the first edge)#" , py::arg("aT1"), py::arg("aT2")
)
.def("SetEdge1",
(void (IntTools_EdgeEdge::*)( const TopoDS_Edge & , const Standard_Real , const Standard_Real ) ) static_cast<void (IntTools_EdgeEdge::*)( const TopoDS_Edge & , const Standard_Real , const Standard_Real ) >(&IntTools_EdgeEdge::SetEdge1),
R"#(Sets the first edge and its range)#" , py::arg("theEdge"), py::arg("aT1"), py::arg("aT2")
)
.def("SetEdge2",
(void (IntTools_EdgeEdge::*)( const TopoDS_Edge & ) ) static_cast<void (IntTools_EdgeEdge::*)( const TopoDS_Edge & ) >(&IntTools_EdgeEdge::SetEdge2),
R"#(Sets the second edge)#" , py::arg("theEdge")
)
.def("SetRange2",
(void (IntTools_EdgeEdge::*)( const IntTools_Range & ) ) static_cast<void (IntTools_EdgeEdge::*)( const IntTools_Range & ) >(&IntTools_EdgeEdge::SetRange2),
R"#(Sets the range for the second edge)#" , py::arg("theRange")
)
.def("SetRange2",
(void (IntTools_EdgeEdge::*)( const Standard_Real , const Standard_Real ) ) static_cast<void (IntTools_EdgeEdge::*)( const Standard_Real , const Standard_Real ) >(&IntTools_EdgeEdge::SetRange2),
R"#(Sets the range for the second edge)#" , py::arg("aT1"), py::arg("aT2")
)
.def("SetEdge2",
(void (IntTools_EdgeEdge::*)( const TopoDS_Edge & , const Standard_Real , const Standard_Real ) ) static_cast<void (IntTools_EdgeEdge::*)( const TopoDS_Edge & , const Standard_Real , const Standard_Real ) >(&IntTools_EdgeEdge::SetEdge2),
R"#(Sets the first edge and its range)#" , py::arg("theEdge"), py::arg("aT1"), py::arg("aT2")
)
.def("SetFuzzyValue",
(void (IntTools_EdgeEdge::*)( const Standard_Real ) ) static_cast<void (IntTools_EdgeEdge::*)( const Standard_Real ) >(&IntTools_EdgeEdge::SetFuzzyValue),
R"#(Sets the Fuzzy value)#" , py::arg("theFuzz")
)
.def("FuzzyValue",
(Standard_Real (IntTools_EdgeEdge::*)() const) static_cast<Standard_Real (IntTools_EdgeEdge::*)() const>(&IntTools_EdgeEdge::FuzzyValue),
R"#(Returns Fuzzy value)#"
)
.def("IsDone",
(Standard_Boolean (IntTools_EdgeEdge::*)() const) static_cast<Standard_Boolean (IntTools_EdgeEdge::*)() const>(&IntTools_EdgeEdge::IsDone),
R"#(Returns TRUE if common part(s) is(are) found)#"
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("CommonParts",
( const IntTools_SequenceOfCommonPrts & (IntTools_EdgeEdge::*)() const) static_cast< const IntTools_SequenceOfCommonPrts & (IntTools_EdgeEdge::*)() const>(&IntTools_EdgeEdge::CommonParts),
R"#(Returns common parts)#"
)
.def("CommonParts",
( const IntTools_SequenceOfCommonPrts & (IntTools_EdgeEdge::*)() const) static_cast< const IntTools_SequenceOfCommonPrts & (IntTools_EdgeEdge::*)() const>(&IntTools_EdgeEdge::CommonParts),
R"#(Returns common parts)#"
)
;
// Class IntTools_EdgeFace from ./opencascade/IntTools_EdgeFace.hxx
klass = m.attr("IntTools_EdgeFace");
// nested enums
static_cast<py::class_<IntTools_EdgeFace , shared_ptr<IntTools_EdgeFace> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("SetEdge",
(void (IntTools_EdgeFace::*)( const TopoDS_Edge & ) ) static_cast<void (IntTools_EdgeFace::*)( const TopoDS_Edge & ) >(&IntTools_EdgeFace::SetEdge),
R"#(Sets the edge for intersection)#" , py::arg("theEdge")
)
.def("SetFace",
(void (IntTools_EdgeFace::*)( const TopoDS_Face & ) ) static_cast<void (IntTools_EdgeFace::*)( const TopoDS_Face & ) >(&IntTools_EdgeFace::SetFace),
R"#(Sets the face for intersection)#" , py::arg("theFace")
)
.def("SetRange",
(void (IntTools_EdgeFace::*)( const IntTools_Range & ) ) static_cast<void (IntTools_EdgeFace::*)( const IntTools_Range & ) >(&IntTools_EdgeFace::SetRange),
R"#(Sets the boundaries for the edge. The algorithm processes edge inside these boundaries.)#" , py::arg("theRange")
)
.def("SetRange",
(void (IntTools_EdgeFace::*)( const Standard_Real , const Standard_Real ) ) static_cast<void (IntTools_EdgeFace::*)( const Standard_Real , const Standard_Real ) >(&IntTools_EdgeFace::SetRange),
R"#(Sets the boundaries for the edge. The algorithm processes edge inside these boundaries.)#" , py::arg("theFirst"), py::arg("theLast")
)
.def("SetContext",
(void (IntTools_EdgeFace::*)( const handle<IntTools_Context> & ) ) static_cast<void (IntTools_EdgeFace::*)( const handle<IntTools_Context> & ) >(&IntTools_EdgeFace::SetContext),
R"#(Sets the intersection context)#" , py::arg("theContext")
)
.def("SetFuzzyValue",
(void (IntTools_EdgeFace::*)( const Standard_Real ) ) static_cast<void (IntTools_EdgeFace::*)( const Standard_Real ) >(&IntTools_EdgeFace::SetFuzzyValue),
R"#(Sets the Fuzzy value)#" , py::arg("theFuzz")
)
.def("FuzzyValue",
(Standard_Real (IntTools_EdgeFace::*)() const) static_cast<Standard_Real (IntTools_EdgeFace::*)() const>(&IntTools_EdgeFace::FuzzyValue),
R"#(Returns the Fuzzy value)#"
)
.def("UseQuickCoincidenceCheck",
(void (IntTools_EdgeFace::*)( const Standard_Boolean ) ) static_cast<void (IntTools_EdgeFace::*)( const Standard_Boolean ) >(&IntTools_EdgeFace::UseQuickCoincidenceCheck),
R"#(Sets the flag for quick coincidence check. It is safe to use the quick check for coincidence only if both of the following conditions are met: - The vertices of edge are lying on the face; - The edge does not intersect the boundaries of the face on the given range.)#" , py::arg("theFlag")
)
.def("IsCoincidenceCheckedQuickly",
(Standard_Boolean (IntTools_EdgeFace::*)() ) static_cast<Standard_Boolean (IntTools_EdgeFace::*)() >(&IntTools_EdgeFace::IsCoincidenceCheckedQuickly),
R"#(Returns the flag myQuickCoincidenceCheck)#"
)
.def("Perform",
(void (IntTools_EdgeFace::*)() ) static_cast<void (IntTools_EdgeFace::*)() >(&IntTools_EdgeFace::Perform),
R"#(Launches the process)#"
)
.def("IsDone",
(Standard_Boolean (IntTools_EdgeFace::*)() const) static_cast<Standard_Boolean (IntTools_EdgeFace::*)() const>(&IntTools_EdgeFace::IsDone),
R"#(Returns TRUE if computation was successful. Otherwise returns FALSE.)#"
)
.def("ErrorStatus",
(Standard_Integer (IntTools_EdgeFace::*)() const) static_cast<Standard_Integer (IntTools_EdgeFace::*)() const>(&IntTools_EdgeFace::ErrorStatus),
R"#(Returns the code of completion: 0 - means successful completion; 1 - the process was not started; 2,3 - invalid source data for the algorithm; 4 - projection failed.)#"
)
.def("MinimalDistance",
(Standard_Real (IntTools_EdgeFace::*)() const) static_cast<Standard_Real (IntTools_EdgeFace::*)() const>(&IntTools_EdgeFace::MinimalDistance),
R"#(Returns the minimal distance found between edge and face)#"
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("Edge",
( const TopoDS_Edge & (IntTools_EdgeFace::*)() const) static_cast< const TopoDS_Edge & (IntTools_EdgeFace::*)() const>(&IntTools_EdgeFace::Edge),
R"#(Returns the edge)#"
)
.def("Face",
( const TopoDS_Face & (IntTools_EdgeFace::*)() const) static_cast< const TopoDS_Face & (IntTools_EdgeFace::*)() const>(&IntTools_EdgeFace::Face),
R"#(Returns the face)#"
)
.def("Range",
( const IntTools_Range & (IntTools_EdgeFace::*)() const) static_cast< const IntTools_Range & (IntTools_EdgeFace::*)() const>(&IntTools_EdgeFace::Range),
R"#(Returns intersection range of the edge)#"
)
.def("Context",
( const handle<IntTools_Context> & (IntTools_EdgeFace::*)() const) static_cast< const handle<IntTools_Context> & (IntTools_EdgeFace::*)() const>(&IntTools_EdgeFace::Context),
R"#(Returns the intersection context)#"
)
.def("CommonParts",
( const IntTools_SequenceOfCommonPrts & (IntTools_EdgeFace::*)() const) static_cast< const IntTools_SequenceOfCommonPrts & (IntTools_EdgeFace::*)() const>(&IntTools_EdgeFace::CommonParts),
R"#(Returns resulting common parts)#"
)
;
// Class IntTools_FClass2d from ./opencascade/IntTools_FClass2d.hxx
klass = m.attr("IntTools_FClass2d");
// nested enums
static_cast<py::class_<IntTools_FClass2d , shared_ptr<IntTools_FClass2d> >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const TopoDS_Face &, const Standard_Real >() , py::arg("F"), py::arg("Tol") )
// custom constructors
// methods
.def("Init",
(void (IntTools_FClass2d::*)( const TopoDS_Face & , const Standard_Real ) ) static_cast<void (IntTools_FClass2d::*)( const TopoDS_Face & , const Standard_Real ) >(&IntTools_FClass2d::Init),
R"#(Initializes algorithm by the face F and tolerance Tol)#" , py::arg("F"), py::arg("Tol")
)
.def("PerformInfinitePoint",
(TopAbs_State (IntTools_FClass2d::*)() const) static_cast<TopAbs_State (IntTools_FClass2d::*)() const>(&IntTools_FClass2d::PerformInfinitePoint),
R"#(Returns state of infinite 2d point relatively to (0, 0))#"
)
.def("Perform",
(TopAbs_State (IntTools_FClass2d::*)( const gp_Pnt2d & , const Standard_Boolean ) const) static_cast<TopAbs_State (IntTools_FClass2d::*)( const gp_Pnt2d & , const Standard_Boolean ) const>(&IntTools_FClass2d::Perform),
R"#(Returns state of the 2d point Puv. If RecadreOnPeriodic is true (default value), for the periodic surface 2d point, adjusted to period, is classified.)#" , py::arg("Puv"), py::arg("RecadreOnPeriodic")=static_cast< const Standard_Boolean>(Standard_True)
)
.def("TestOnRestriction",
(TopAbs_State (IntTools_FClass2d::*)( const gp_Pnt2d & , const Standard_Real , const Standard_Boolean ) const) static_cast<TopAbs_State (IntTools_FClass2d::*)( const gp_Pnt2d & , const Standard_Real , const Standard_Boolean ) const>(&IntTools_FClass2d::TestOnRestriction),
R"#(Test a point with +- an offset (Tol) and returns On if some points are OUT an some are IN (Caution: Internal use . see the code for more details))#" , py::arg("Puv"), py::arg("Tol"), py::arg("RecadreOnPeriodic")=static_cast< const Standard_Boolean>(Standard_True)
)
.def("IsHole",
(Standard_Boolean (IntTools_FClass2d::*)() const) static_cast<Standard_Boolean (IntTools_FClass2d::*)() const>(&IntTools_FClass2d::IsHole),
R"#()#"
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class IntTools_FaceFace from ./opencascade/IntTools_FaceFace.hxx
klass = m.attr("IntTools_FaceFace");
// nested enums
static_cast<py::class_<IntTools_FaceFace , shared_ptr<IntTools_FaceFace> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("SetParameters",
(void (IntTools_FaceFace::*)( const Standard_Boolean , const Standard_Boolean , const Standard_Boolean , const Standard_Real ) ) static_cast<void (IntTools_FaceFace::*)( const Standard_Boolean , const Standard_Boolean , const Standard_Boolean , const Standard_Real ) >(&IntTools_FaceFace::SetParameters),
R"#(Modifier)#" , py::arg("ApproxCurves"), py::arg("ComputeCurveOnS1"), py::arg("ComputeCurveOnS2"), py::arg("ApproximationTolerance")
)
.def("Perform",
(void (IntTools_FaceFace::*)( const TopoDS_Face & , const TopoDS_Face & , const Standard_Boolean ) ) static_cast<void (IntTools_FaceFace::*)( const TopoDS_Face & , const TopoDS_Face & , const Standard_Boolean ) >(&IntTools_FaceFace::Perform),
R"#(Intersects underliing surfaces of F1 and F2 Use sum of tolerance of F1 and F2 as intersection criteria)#" , py::arg("F1"), py::arg("F2"), py::arg("theToRunParallel")=static_cast< const Standard_Boolean>(Standard_False)
)
.def("IsDone",
(Standard_Boolean (IntTools_FaceFace::*)() const) static_cast<Standard_Boolean (IntTools_FaceFace::*)() const>(&IntTools_FaceFace::IsDone),
R"#(Returns True if the intersection was successful)#"
)
.def("TangentFaces",
(Standard_Boolean (IntTools_FaceFace::*)() const) static_cast<Standard_Boolean (IntTools_FaceFace::*)() const>(&IntTools_FaceFace::TangentFaces),
R"#(Returns True if faces are tangent)#"
)
.def("PrepareLines3D",
(void (IntTools_FaceFace::*)( const Standard_Boolean ) ) static_cast<void (IntTools_FaceFace::*)( const Standard_Boolean ) >(&IntTools_FaceFace::PrepareLines3D),
R"#(Provides post-processing the result lines.)#" , py::arg("bToSplit")=static_cast< const Standard_Boolean>(Standard_True)
)
.def("SetList",
(void (IntTools_FaceFace::*)( IntSurf_ListOfPntOn2S & ) ) static_cast<void (IntTools_FaceFace::*)( IntSurf_ListOfPntOn2S & ) >(&IntTools_FaceFace::SetList),
R"#()#" , py::arg("ListOfPnts")
)
.def("SetContext",
(void (IntTools_FaceFace::*)( const handle<IntTools_Context> & ) ) static_cast<void (IntTools_FaceFace::*)( const handle<IntTools_Context> & ) >(&IntTools_FaceFace::SetContext),
R"#(Sets the intersection context)#" , py::arg("aContext")
)
.def("SetFuzzyValue",
(void (IntTools_FaceFace::*)( const Standard_Real ) ) static_cast<void (IntTools_FaceFace::*)( const Standard_Real ) >(&IntTools_FaceFace::SetFuzzyValue),
R"#(Sets the Fuzzy value)#" , py::arg("theFuzz")
)
.def("FuzzyValue",
(Standard_Real (IntTools_FaceFace::*)() const) static_cast<Standard_Real (IntTools_FaceFace::*)() const>(&IntTools_FaceFace::FuzzyValue),
R"#(Returns Fuzzy value)#"
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("Lines",
( const IntTools_SequenceOfCurves & (IntTools_FaceFace::*)() const) static_cast< const IntTools_SequenceOfCurves & (IntTools_FaceFace::*)() const>(&IntTools_FaceFace::Lines),
R"#(Returns sequence of 3d curves as result of intersection)#"
)
.def("Points",
( const IntTools_SequenceOfPntOn2Faces & (IntTools_FaceFace::*)() const) static_cast< const IntTools_SequenceOfPntOn2Faces & (IntTools_FaceFace::*)() const>(&IntTools_FaceFace::Points),
R"#(Returns sequence of 3d curves as result of intersection)#"
)
.def("Face1",
( const TopoDS_Face & (IntTools_FaceFace::*)() const) static_cast< const TopoDS_Face & (IntTools_FaceFace::*)() const>(&IntTools_FaceFace::Face1),
R"#(Returns first of processed faces)#"
)
.def("Face2",
( const TopoDS_Face & (IntTools_FaceFace::*)() const) static_cast< const TopoDS_Face & (IntTools_FaceFace::*)() const>(&IntTools_FaceFace::Face2),
R"#(Returns second of processed faces)#"
)
.def("Context",
( const handle<IntTools_Context> & (IntTools_FaceFace::*)() const) static_cast< const handle<IntTools_Context> & (IntTools_FaceFace::*)() const>(&IntTools_FaceFace::Context),
R"#(Gets the intersection context)#"
)
;
// Class IntTools_MarkedRangeSet from ./opencascade/IntTools_MarkedRangeSet.hxx
klass = m.attr("IntTools_MarkedRangeSet");
// nested enums
static_cast<py::class_<IntTools_MarkedRangeSet , shared_ptr<IntTools_MarkedRangeSet> >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const Standard_Real, const Standard_Real, const Standard_Integer >() , py::arg("theFirstBoundary"), py::arg("theLastBoundary"), py::arg("theInitFlag") )
.def(py::init< const TColStd_Array1OfReal &, const Standard_Integer >() , py::arg("theSortedArray"), py::arg("theInitFlag") )
// custom constructors
// methods
.def("SetBoundaries",
(void (IntTools_MarkedRangeSet::*)( const Standard_Real , const Standard_Real , const Standard_Integer ) ) static_cast<void (IntTools_MarkedRangeSet::*)( const Standard_Real , const Standard_Real , const Standard_Integer ) >(&IntTools_MarkedRangeSet::SetBoundaries),
R"#(build set of ranges which consists of one range with boundary values theFirstBoundary and theLastBoundary)#" , py::arg("theFirstBoundary"), py::arg("theLastBoundary"), py::arg("theInitFlag")
)
.def("SetRanges",
(void (IntTools_MarkedRangeSet::*)( const TColStd_Array1OfReal & , const Standard_Integer ) ) static_cast<void (IntTools_MarkedRangeSet::*)( const TColStd_Array1OfReal & , const Standard_Integer ) >(&IntTools_MarkedRangeSet::SetRanges),
R"#(Build set of ranges based on the array of progressive sorted values)#" , py::arg("theSortedArray"), py::arg("theInitFlag")
)
.def("InsertRange",
(Standard_Boolean (IntTools_MarkedRangeSet::*)( const Standard_Real , const Standard_Real , const Standard_Integer ) ) static_cast<Standard_Boolean (IntTools_MarkedRangeSet::*)( const Standard_Real , const Standard_Real , const Standard_Integer ) >(&IntTools_MarkedRangeSet::InsertRange),
R"#(Inserts a new range marked with flag theFlag It replace the existing ranges or parts of ranges and their flags. Returns True if the range is inside the initial boundaries, otherwise or in case of some error returns False)#" , py::arg("theFirstBoundary"), py::arg("theLastBoundary"), py::arg("theFlag")
)
.def("InsertRange",
(Standard_Boolean (IntTools_MarkedRangeSet::*)( const IntTools_Range & , const Standard_Integer ) ) static_cast<Standard_Boolean (IntTools_MarkedRangeSet::*)( const IntTools_Range & , const Standard_Integer ) >(&IntTools_MarkedRangeSet::InsertRange),
R"#(Inserts a new range marked with flag theFlag It replace the existing ranges or parts of ranges and their flags. Returns True if the range is inside the initial boundaries, otherwise or in case of some error returns False)#" , py::arg("theRange"), py::arg("theFlag")
)
.def("InsertRange",
(Standard_Boolean (IntTools_MarkedRangeSet::*)( const Standard_Real , const Standard_Real , const Standard_Integer , const Standard_Integer ) ) static_cast<Standard_Boolean (IntTools_MarkedRangeSet::*)( const Standard_Real , const Standard_Real , const Standard_Integer , const Standard_Integer ) >(&IntTools_MarkedRangeSet::InsertRange),
R"#(Inserts a new range marked with flag theFlag It replace the existing ranges or parts of ranges and their flags. The index theIndex is a position where the range will be inserted. Returns True if the range is inside the initial boundaries, otherwise or in case of some error returns False)#" , py::arg("theFirstBoundary"), py::arg("theLastBoundary"), py::arg("theFlag"), py::arg("theIndex")
)
.def("InsertRange",
(Standard_Boolean (IntTools_MarkedRangeSet::*)( const IntTools_Range & , const Standard_Integer , const Standard_Integer ) ) static_cast<Standard_Boolean (IntTools_MarkedRangeSet::*)( const IntTools_Range & , const Standard_Integer , const Standard_Integer ) >(&IntTools_MarkedRangeSet::InsertRange),
R"#(Inserts a new range marked with flag theFlag It replace the existing ranges or parts of ranges and their flags. The index theIndex is a position where the range will be inserted. Returns True if the range is inside the initial boundaries, otherwise or in case of some error returns False)#" , py::arg("theRange"), py::arg("theFlag"), py::arg("theIndex")
)
.def("SetFlag",
(void (IntTools_MarkedRangeSet::*)( const Standard_Integer , const Standard_Integer ) ) static_cast<void (IntTools_MarkedRangeSet::*)( const Standard_Integer , const Standard_Integer ) >(&IntTools_MarkedRangeSet::SetFlag),
R"#(Set flag theFlag for range with index theIndex)#" , py::arg("theIndex"), py::arg("theFlag")
)
.def("Flag",
(Standard_Integer (IntTools_MarkedRangeSet::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IntTools_MarkedRangeSet::*)( const Standard_Integer ) const>(&IntTools_MarkedRangeSet::Flag),
R"#(Returns flag of the range with index theIndex)#" , py::arg("theIndex")
)
.def("GetIndex",
(Standard_Integer (IntTools_MarkedRangeSet::*)( const Standard_Real ) const) static_cast<Standard_Integer (IntTools_MarkedRangeSet::*)( const Standard_Real ) const>(&IntTools_MarkedRangeSet::GetIndex),
R"#(Returns index of range which contains theValue. If theValue do not belong any range returns 0.)#" , py::arg("theValue")
)
.def("GetIndices",
( const TColStd_SequenceOfInteger & (IntTools_MarkedRangeSet::*)( const Standard_Real ) ) static_cast< const TColStd_SequenceOfInteger & (IntTools_MarkedRangeSet::*)( const Standard_Real ) >(&IntTools_MarkedRangeSet::GetIndices),
R"#()#" , py::arg("theValue")
)
.def("GetIndex",
(Standard_Integer (IntTools_MarkedRangeSet::*)( const Standard_Real , const Standard_Boolean ) const) static_cast<Standard_Integer (IntTools_MarkedRangeSet::*)( const Standard_Real , const Standard_Boolean ) const>(&IntTools_MarkedRangeSet::GetIndex),
R"#(Returns index of range which contains theValue If theValue do not belong any range returns 0. If UseLower is Standard_True then lower boundary of the range can be equal to theValue, otherwise upper boundary of the range can be equal to theValue.)#" , py::arg("theValue"), py::arg("UseLower")
)
.def("Length",
(Standard_Integer (IntTools_MarkedRangeSet::*)() const) static_cast<Standard_Integer (IntTools_MarkedRangeSet::*)() const>(&IntTools_MarkedRangeSet::Length),
R"#(Returns number of ranges)#"
)
.def("Range",
(IntTools_Range (IntTools_MarkedRangeSet::*)( const Standard_Integer ) const) static_cast<IntTools_Range (IntTools_MarkedRangeSet::*)( const Standard_Integer ) const>(&IntTools_MarkedRangeSet::Range),
R"#(Returns the range with index theIndex. the Index can be from 1 to Length())#" , py::arg("theIndex")
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class IntTools_PntOn2Faces from ./opencascade/IntTools_PntOn2Faces.hxx
klass = m.attr("IntTools_PntOn2Faces");
// nested enums
static_cast<py::class_<IntTools_PntOn2Faces , shared_ptr<IntTools_PntOn2Faces> >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const IntTools_PntOnFace &, const IntTools_PntOnFace & >() , py::arg("aP1"), py::arg("aP2") )
// custom constructors
// methods
.def("SetP1",
(void (IntTools_PntOn2Faces::*)( const IntTools_PntOnFace & ) ) static_cast<void (IntTools_PntOn2Faces::*)( const IntTools_PntOnFace & ) >(&IntTools_PntOn2Faces::SetP1),
R"#(Modifier)#" , py::arg("aP1")
)
.def("SetP2",
(void (IntTools_PntOn2Faces::*)( const IntTools_PntOnFace & ) ) static_cast<void (IntTools_PntOn2Faces::*)( const IntTools_PntOnFace & ) >(&IntTools_PntOn2Faces::SetP2),
R"#(Modifier)#" , py::arg("aP2")
)
.def("SetValid",
(void (IntTools_PntOn2Faces::*)( const Standard_Boolean ) ) static_cast<void (IntTools_PntOn2Faces::*)( const Standard_Boolean ) >(&IntTools_PntOn2Faces::SetValid),
R"#(Modifier)#" , py::arg("bF")
)
.def("IsValid",
(Standard_Boolean (IntTools_PntOn2Faces::*)() const) static_cast<Standard_Boolean (IntTools_PntOn2Faces::*)() const>(&IntTools_PntOn2Faces::IsValid),
R"#(Selector)#"
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("P1",
( const IntTools_PntOnFace & (IntTools_PntOn2Faces::*)() const) static_cast< const IntTools_PntOnFace & (IntTools_PntOn2Faces::*)() const>(&IntTools_PntOn2Faces::P1),
R"#(Selector)#"
)
.def("P2",
( const IntTools_PntOnFace & (IntTools_PntOn2Faces::*)() const) static_cast< const IntTools_PntOnFace & (IntTools_PntOn2Faces::*)() const>(&IntTools_PntOn2Faces::P2),
R"#(Selector)#"
)
;
// Class IntTools_PntOnFace from ./opencascade/IntTools_PntOnFace.hxx
klass = m.attr("IntTools_PntOnFace");
// nested enums
static_cast<py::class_<IntTools_PntOnFace , shared_ptr<IntTools_PntOnFace> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IntTools_PntOnFace::*)( const TopoDS_Face & , const gp_Pnt & , const Standard_Real , const Standard_Real ) ) static_cast<void (IntTools_PntOnFace::*)( const TopoDS_Face & , const gp_Pnt & , const Standard_Real , const Standard_Real ) >(&IntTools_PntOnFace::Init),
R"#(Initializes me by aFace, a 3d point and it's UV parameters on face)#" , py::arg("aF"), py::arg("aP"), py::arg("U"), py::arg("V")
)
.def("SetFace",
(void (IntTools_PntOnFace::*)( const TopoDS_Face & ) ) static_cast<void (IntTools_PntOnFace::*)( const TopoDS_Face & ) >(&IntTools_PntOnFace::SetFace),
R"#(Modifier)#" , py::arg("aF")
)
.def("SetPnt",
(void (IntTools_PntOnFace::*)( const gp_Pnt & ) ) static_cast<void (IntTools_PntOnFace::*)( const gp_Pnt & ) >(&IntTools_PntOnFace::SetPnt),
R"#(Modifier)#" , py::arg("aP")
)
.def("SetParameters",
(void (IntTools_PntOnFace::*)( const Standard_Real , const Standard_Real ) ) static_cast<void (IntTools_PntOnFace::*)( const Standard_Real , const Standard_Real ) >(&IntTools_PntOnFace::SetParameters),
R"#(Modifier)#" , py::arg("U"), py::arg("V")
)
.def("SetValid",
(void (IntTools_PntOnFace::*)( const Standard_Boolean ) ) static_cast<void (IntTools_PntOnFace::*)( const Standard_Boolean ) >(&IntTools_PntOnFace::SetValid),
R"#(Modifier)#" , py::arg("bF")
)
.def("Valid",
(Standard_Boolean (IntTools_PntOnFace::*)() const) static_cast<Standard_Boolean (IntTools_PntOnFace::*)() const>(&IntTools_PntOnFace::Valid),
R"#(Selector)#"
)
// methods using call by reference i.s.o. return
.def("Parameters",
[]( IntTools_PntOnFace &self ){
Standard_Real U;
Standard_Real V;
self.Parameters(U,V);
return std::make_tuple(U,V); },
R"#(Selector)#"
)
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("Face",
( const TopoDS_Face & (IntTools_PntOnFace::*)() const) static_cast< const TopoDS_Face & (IntTools_PntOnFace::*)() const>(&IntTools_PntOnFace::Face),
R"#(Selector)#"
)
.def("Pnt",
( const gp_Pnt & (IntTools_PntOnFace::*)() const) static_cast< const gp_Pnt & (IntTools_PntOnFace::*)() const>(&IntTools_PntOnFace::Pnt),
R"#(Selector)#"
)
;
// Class IntTools_Range from ./opencascade/IntTools_Range.hxx
klass = m.attr("IntTools_Range");
// nested enums
static_cast<py::class_<IntTools_Range , shared_ptr<IntTools_Range> >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const Standard_Real, const Standard_Real >() , py::arg("aFirst"), py::arg("aLast") )
// custom constructors
// methods
.def("SetFirst",
(void (IntTools_Range::*)( const Standard_Real ) ) static_cast<void (IntTools_Range::*)( const Standard_Real ) >(&IntTools_Range::SetFirst),
R"#(Modifier)#" , py::arg("aFirst")
)
.def("SetLast",
(void (IntTools_Range::*)( const Standard_Real ) ) static_cast<void (IntTools_Range::*)( const Standard_Real ) >(&IntTools_Range::SetLast),
R"#(Modifier)#" , py::arg("aLast")
)
.def("First",
(Standard_Real (IntTools_Range::*)() const) static_cast<Standard_Real (IntTools_Range::*)() const>(&IntTools_Range::First),
R"#(Selector)#"
)
.def("Last",
(Standard_Real (IntTools_Range::*)() const) static_cast<Standard_Real (IntTools_Range::*)() const>(&IntTools_Range::Last),
R"#(Selector)#"
)
// methods using call by reference i.s.o. return
.def("Range",
[]( IntTools_Range &self ){
Standard_Real aFirst;
Standard_Real aLast;
self.Range(aFirst,aLast);
return std::make_tuple(aFirst,aLast); },
R"#(Selector)#"
)
// 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 IntTools_Root from ./opencascade/IntTools_Root.hxx
klass = m.attr("IntTools_Root");
// nested enums
static_cast<py::class_<IntTools_Root , shared_ptr<IntTools_Root> >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const Standard_Real, const Standard_Integer >() , py::arg("aRoot"), py::arg("aType") )
// custom constructors
// methods
.def("SetRoot",
(void (IntTools_Root::*)( const Standard_Real ) ) static_cast<void (IntTools_Root::*)( const Standard_Real ) >(&IntTools_Root::SetRoot),
R"#(Sets the Root's value)#" , py::arg("aRoot")
)
.def("SetType",
(void (IntTools_Root::*)( const Standard_Integer ) ) static_cast<void (IntTools_Root::*)( const Standard_Integer ) >(&IntTools_Root::SetType),
R"#(Sets the Root's Type)#" , py::arg("aType")
)
.def("SetStateBefore",
(void (IntTools_Root::*)( const TopAbs_State ) ) static_cast<void (IntTools_Root::*)( const TopAbs_State ) >(&IntTools_Root::SetStateBefore),
R"#(Set the value of the state before the root (at t=Root-dt))#" , py::arg("aState")
)
.def("SetStateAfter",
(void (IntTools_Root::*)( const TopAbs_State ) ) static_cast<void (IntTools_Root::*)( const TopAbs_State ) >(&IntTools_Root::SetStateAfter),
R"#(Set the value of the state after the root (at t=Root-dt))#" , py::arg("aState")
)
.def("SetLayerHeight",
(void (IntTools_Root::*)( const Standard_Real ) ) static_cast<void (IntTools_Root::*)( const Standard_Real ) >(&IntTools_Root::SetLayerHeight),
R"#(Not used in Edge/Edge algorithm)#" , py::arg("aHeight")
)
.def("SetInterval",
(void (IntTools_Root::*)( const Standard_Real , const Standard_Real , const Standard_Real , const Standard_Real ) ) static_cast<void (IntTools_Root::*)( const Standard_Real , const Standard_Real , const Standard_Real , const Standard_Real ) >(&IntTools_Root::SetInterval),
R"#(Sets the interval from which the Root was found [t1,t2] and the corresponding values of the function on the bounds f(t1), f(t2).)#" , py::arg("t1"), py::arg("t2"), py::arg("f1"), py::arg("f2")
)
.def("Root",
(Standard_Real (IntTools_Root::*)() const) static_cast<Standard_Real (IntTools_Root::*)() const>(&IntTools_Root::Root),
R"#(Returns the Root value)#"
)
.def("Type",
(Standard_Integer (IntTools_Root::*)() const) static_cast<Standard_Integer (IntTools_Root::*)() const>(&IntTools_Root::Type),
R"#(Returns the type of the root =0 - Simple (was found by bisection method); =2 - Smart when f1=0, f2!=0 or vice versa (was found by Fibbonacci method); =1 - Pure (pure zero for all t [t1,t2] );)#"
)
.def("StateBefore",
(TopAbs_State (IntTools_Root::*)() const) static_cast<TopAbs_State (IntTools_Root::*)() const>(&IntTools_Root::StateBefore),
R"#(Returns the state before the root)#"
)
.def("StateAfter",
(TopAbs_State (IntTools_Root::*)() const) static_cast<TopAbs_State (IntTools_Root::*)() const>(&IntTools_Root::StateAfter),
R"#(Returns the state after the root)#"
)
.def("LayerHeight",
(Standard_Real (IntTools_Root::*)() const) static_cast<Standard_Real (IntTools_Root::*)() const>(&IntTools_Root::LayerHeight),
R"#(Not used in Edge/Edge algorithm)#"
)
.def("IsValid",
(Standard_Boolean (IntTools_Root::*)() const) static_cast<Standard_Boolean (IntTools_Root::*)() const>(&IntTools_Root::IsValid),
R"#(Returns the validity flag for the root, True if myStateBefore==TopAbs_OUT && myStateAfter==TopAbs_IN or myStateBefore==TopAbs_OUT && myStateAfter==TopAbs_ON or myStateBefore==TopAbs_ON && myStateAfter==TopAbs_OUT or myStateBefore==TopAbs_IN && myStateAfter==TopAbs_OUT . For other cases it returns False.)#"
)
// methods using call by reference i.s.o. return
.def("Interval",
[]( IntTools_Root &self ){
Standard_Real t1;
Standard_Real t2;
Standard_Real f1;
Standard_Real f2;
self.Interval(t1,t2,f1,f2);
return std::make_tuple(t1,t2,f1,f2); },
R"#(Returns the values of interval from which the Root was found [t1,t2] and the corresponding values of the function on the bounds f(t1), f(t2).)#"
)
// 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 IntTools_ShrunkRange from ./opencascade/IntTools_ShrunkRange.hxx
klass = m.attr("IntTools_ShrunkRange");
// nested enums
static_cast<py::class_<IntTools_ShrunkRange , shared_ptr<IntTools_ShrunkRange> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("SetData",
(void (IntTools_ShrunkRange::*)( const TopoDS_Edge & , const Standard_Real , const Standard_Real , const TopoDS_Vertex & , const TopoDS_Vertex & ) ) static_cast<void (IntTools_ShrunkRange::*)( const TopoDS_Edge & , const Standard_Real , const Standard_Real , const TopoDS_Vertex & , const TopoDS_Vertex & ) >(&IntTools_ShrunkRange::SetData),
R"#()#" , py::arg("aE"), py::arg("aT1"), py::arg("aT2"), py::arg("aV1"), py::arg("aV2")
)
.def("SetContext",
(void (IntTools_ShrunkRange::*)( const handle<IntTools_Context> & ) ) static_cast<void (IntTools_ShrunkRange::*)( const handle<IntTools_Context> & ) >(&IntTools_ShrunkRange::SetContext),
R"#()#" , py::arg("aCtx")
)
.def("SetShrunkRange",
(void (IntTools_ShrunkRange::*)( const Standard_Real , const Standard_Real ) ) static_cast<void (IntTools_ShrunkRange::*)( const Standard_Real , const Standard_Real ) >(&IntTools_ShrunkRange::SetShrunkRange),
R"#()#" , py::arg("aT1"), py::arg("aT2")
)
.def("Perform",
(void (IntTools_ShrunkRange::*)() ) static_cast<void (IntTools_ShrunkRange::*)() >(&IntTools_ShrunkRange::Perform),
R"#()#"
)
.def("IsDone",
(Standard_Boolean (IntTools_ShrunkRange::*)() const) static_cast<Standard_Boolean (IntTools_ShrunkRange::*)() const>(&IntTools_ShrunkRange::IsDone),
R"#(Returns TRUE in case the shrunk range is computed)#"
)
.def("IsSplittable",
(Standard_Boolean (IntTools_ShrunkRange::*)() const) static_cast<Standard_Boolean (IntTools_ShrunkRange::*)() const>(&IntTools_ShrunkRange::IsSplittable),
R"#(Returns FALSE in case the shrunk range is too short and the edge cannot be split, otherwise returns TRUE)#"
)
.def("Length",
(Standard_Real (IntTools_ShrunkRange::*)() const) static_cast<Standard_Real (IntTools_ShrunkRange::*)() const>(&IntTools_ShrunkRange::Length),
R"#(Returns the length of the edge if computed.)#"
)
// methods using call by reference i.s.o. return
.def("ShrunkRange",
[]( IntTools_ShrunkRange &self ){
Standard_Real aT1;
Standard_Real aT2;
self.ShrunkRange(aT1,aT2);
return std::make_tuple(aT1,aT2); },
R"#()#"
)
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("Context",
( const handle<IntTools_Context> & (IntTools_ShrunkRange::*)() const) static_cast< const handle<IntTools_Context> & (IntTools_ShrunkRange::*)() const>(&IntTools_ShrunkRange::Context),
R"#()#"
)
.def("BndBox",
( const Bnd_Box & (IntTools_ShrunkRange::*)() const) static_cast< const Bnd_Box & (IntTools_ShrunkRange::*)() const>(&IntTools_ShrunkRange::BndBox),
R"#()#"
)
.def("Edge",
( const TopoDS_Edge & (IntTools_ShrunkRange::*)() const) static_cast< const TopoDS_Edge & (IntTools_ShrunkRange::*)() const>(&IntTools_ShrunkRange::Edge),
R"#()#"
)
;
// Class IntTools_SurfaceRangeLocalizeData from ./opencascade/IntTools_SurfaceRangeLocalizeData.hxx
klass = m.attr("IntTools_SurfaceRangeLocalizeData");
// nested enums
static_cast<py::class_<IntTools_SurfaceRangeLocalizeData , shared_ptr<IntTools_SurfaceRangeLocalizeData> >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const Standard_Integer, const Standard_Integer, const Standard_Real, const Standard_Real >() , py::arg("theNbSampleU"), py::arg("theNbSampleV"), py::arg("theMinRangeU"), py::arg("theMinRangeV") )
.def(py::init< const IntTools_SurfaceRangeLocalizeData & >() , py::arg("Other") )
// custom constructors
// methods
.def("Assign",
(IntTools_SurfaceRangeLocalizeData & (IntTools_SurfaceRangeLocalizeData::*)( const IntTools_SurfaceRangeLocalizeData & ) ) static_cast<IntTools_SurfaceRangeLocalizeData & (IntTools_SurfaceRangeLocalizeData::*)( const IntTools_SurfaceRangeLocalizeData & ) >(&IntTools_SurfaceRangeLocalizeData::Assign),
R"#()#" , py::arg("Other")
)
.def("GetNbSampleU",
(Standard_Integer (IntTools_SurfaceRangeLocalizeData::*)() const) static_cast<Standard_Integer (IntTools_SurfaceRangeLocalizeData::*)() const>(&IntTools_SurfaceRangeLocalizeData::GetNbSampleU),
R"#()#"
)
.def("GetNbSampleV",
(Standard_Integer (IntTools_SurfaceRangeLocalizeData::*)() const) static_cast<Standard_Integer (IntTools_SurfaceRangeLocalizeData::*)() const>(&IntTools_SurfaceRangeLocalizeData::GetNbSampleV),
R"#()#"
)
.def("GetMinRangeU",
(Standard_Real (IntTools_SurfaceRangeLocalizeData::*)() const) static_cast<Standard_Real (IntTools_SurfaceRangeLocalizeData::*)() const>(&IntTools_SurfaceRangeLocalizeData::GetMinRangeU),
R"#()#"
)
.def("GetMinRangeV",
(Standard_Real (IntTools_SurfaceRangeLocalizeData::*)() const) static_cast<Standard_Real (IntTools_SurfaceRangeLocalizeData::*)() const>(&IntTools_SurfaceRangeLocalizeData::GetMinRangeV),
R"#()#"
)
.def("AddOutRange",
(void (IntTools_SurfaceRangeLocalizeData::*)( const IntTools_SurfaceRangeSample & ) ) static_cast<void (IntTools_SurfaceRangeLocalizeData::*)( const IntTools_SurfaceRangeSample & ) >(&IntTools_SurfaceRangeLocalizeData::AddOutRange),
R"#()#" , py::arg("theRange")
)
.def("AddBox",
(void (IntTools_SurfaceRangeLocalizeData::*)( const IntTools_SurfaceRangeSample & , const Bnd_Box & ) ) static_cast<void (IntTools_SurfaceRangeLocalizeData::*)( const IntTools_SurfaceRangeSample & , const Bnd_Box & ) >(&IntTools_SurfaceRangeLocalizeData::AddBox),
R"#()#" , py::arg("theRange"), py::arg("theBox")
)
.def("FindBox",
(Standard_Boolean (IntTools_SurfaceRangeLocalizeData::*)( const IntTools_SurfaceRangeSample & , Bnd_Box & ) const) static_cast<Standard_Boolean (IntTools_SurfaceRangeLocalizeData::*)( const IntTools_SurfaceRangeSample & , Bnd_Box & ) const>(&IntTools_SurfaceRangeLocalizeData::FindBox),
R"#()#" , py::arg("theRange"), py::arg("theBox")
)
.def("IsRangeOut",
(Standard_Boolean (IntTools_SurfaceRangeLocalizeData::*)( const IntTools_SurfaceRangeSample & ) const) static_cast<Standard_Boolean (IntTools_SurfaceRangeLocalizeData::*)( const IntTools_SurfaceRangeSample & ) const>(&IntTools_SurfaceRangeLocalizeData::IsRangeOut),
R"#()#" , py::arg("theRange")
)
.def("ListRangeOut",
(void (IntTools_SurfaceRangeLocalizeData::*)( IntTools_ListOfSurfaceRangeSample & ) const) static_cast<void (IntTools_SurfaceRangeLocalizeData::*)( IntTools_ListOfSurfaceRangeSample & ) const>(&IntTools_SurfaceRangeLocalizeData::ListRangeOut),
R"#()#" , py::arg("theList")
)
.def("RemoveRangeOutAll",
(void (IntTools_SurfaceRangeLocalizeData::*)() ) static_cast<void (IntTools_SurfaceRangeLocalizeData::*)() >(&IntTools_SurfaceRangeLocalizeData::RemoveRangeOutAll),
R"#()#"
)
.def("SetGridDeflection",
(void (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Real ) ) static_cast<void (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Real ) >(&IntTools_SurfaceRangeLocalizeData::SetGridDeflection),
R"#(Set the grid deflection.)#" , py::arg("theDeflection")
)
.def("GetGridDeflection",
(Standard_Real (IntTools_SurfaceRangeLocalizeData::*)() const) static_cast<Standard_Real (IntTools_SurfaceRangeLocalizeData::*)() const>(&IntTools_SurfaceRangeLocalizeData::GetGridDeflection),
R"#(Query the grid deflection.)#"
)
.def("SetRangeUGrid",
(void (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer ) ) static_cast<void (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer ) >(&IntTools_SurfaceRangeLocalizeData::SetRangeUGrid),
R"#(Set the range U of the grid of points.)#" , py::arg("theNbUGrid")
)
.def("GetRangeUGrid",
(Standard_Integer (IntTools_SurfaceRangeLocalizeData::*)() const) static_cast<Standard_Integer (IntTools_SurfaceRangeLocalizeData::*)() const>(&IntTools_SurfaceRangeLocalizeData::GetRangeUGrid),
R"#(Query the range U of the grid of points.)#"
)
.def("SetUParam",
(void (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer , const Standard_Real ) ) static_cast<void (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer , const Standard_Real ) >(&IntTools_SurfaceRangeLocalizeData::SetUParam),
R"#(Set the U parameter of the grid points at that index.)#" , py::arg("theIndex"), py::arg("theUParam")
)
.def("GetUParam",
(Standard_Real (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer ) const) static_cast<Standard_Real (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer ) const>(&IntTools_SurfaceRangeLocalizeData::GetUParam),
R"#(Query the U parameter of the grid points at that index.)#" , py::arg("theIndex")
)
.def("SetRangeVGrid",
(void (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer ) ) static_cast<void (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer ) >(&IntTools_SurfaceRangeLocalizeData::SetRangeVGrid),
R"#(Set the range V of the grid of points.)#" , py::arg("theNbVGrid")
)
.def("GetRangeVGrid",
(Standard_Integer (IntTools_SurfaceRangeLocalizeData::*)() const) static_cast<Standard_Integer (IntTools_SurfaceRangeLocalizeData::*)() const>(&IntTools_SurfaceRangeLocalizeData::GetRangeVGrid),
R"#(Query the range V of the grid of points.)#"
)
.def("SetVParam",
(void (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer , const Standard_Real ) ) static_cast<void (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer , const Standard_Real ) >(&IntTools_SurfaceRangeLocalizeData::SetVParam),
R"#(Set the V parameter of the grid points at that index.)#" , py::arg("theIndex"), py::arg("theVParam")
)
.def("GetVParam",
(Standard_Real (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer ) const) static_cast<Standard_Real (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer ) const>(&IntTools_SurfaceRangeLocalizeData::GetVParam),
R"#(Query the V parameter of the grid points at that index.)#" , py::arg("theIndex")
)
.def("SetGridPoint",
(void (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer , const Standard_Integer , const gp_Pnt & ) ) static_cast<void (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer , const Standard_Integer , const gp_Pnt & ) >(&IntTools_SurfaceRangeLocalizeData::SetGridPoint),
R"#(Set the grid point.)#" , py::arg("theUIndex"), py::arg("theVIndex"), py::arg("thePoint")
)
.def("GetGridPoint",
( const gp_Pnt & (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer , const Standard_Integer ) const) static_cast< const gp_Pnt & (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer , const Standard_Integer ) const>(&IntTools_SurfaceRangeLocalizeData::GetGridPoint),
R"#(Set the grid point.)#" , py::arg("theUIndex"), py::arg("theVIndex")
)
.def("SetFrame",
(void (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Real , const Standard_Real , const Standard_Real , const Standard_Real ) ) static_cast<void (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Real , const Standard_Real , const Standard_Real , const Standard_Real ) >(&IntTools_SurfaceRangeLocalizeData::SetFrame),
R"#(Sets the frame area. Used to work with grid points.)#" , py::arg("theUMin"), py::arg("theUMax"), py::arg("theVMin"), py::arg("theVMax")
)
.def("GetNBUPointsInFrame",
(Standard_Integer (IntTools_SurfaceRangeLocalizeData::*)() const) static_cast<Standard_Integer (IntTools_SurfaceRangeLocalizeData::*)() const>(&IntTools_SurfaceRangeLocalizeData::GetNBUPointsInFrame),
R"#(Returns the number of grid points on U direction in frame.)#"
)
.def("GetNBVPointsInFrame",
(Standard_Integer (IntTools_SurfaceRangeLocalizeData::*)() const) static_cast<Standard_Integer (IntTools_SurfaceRangeLocalizeData::*)() const>(&IntTools_SurfaceRangeLocalizeData::GetNBVPointsInFrame),
R"#(Returns the number of grid points on V direction in frame.)#"
)
.def("GetPointInFrame",
( const gp_Pnt & (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer , const Standard_Integer ) const) static_cast< const gp_Pnt & (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer , const Standard_Integer ) const>(&IntTools_SurfaceRangeLocalizeData::GetPointInFrame),
R"#(Returns the grid point in frame.)#" , py::arg("theUIndex"), py::arg("theVIndex")
)
.def("GetUParamInFrame",
(Standard_Real (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer ) const) static_cast<Standard_Real (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer ) const>(&IntTools_SurfaceRangeLocalizeData::GetUParamInFrame),
R"#(Query the U parameter of the grid points at that index in frame.)#" , py::arg("theIndex")
)
.def("GetVParamInFrame",
(Standard_Real (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer ) const) static_cast<Standard_Real (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer ) const>(&IntTools_SurfaceRangeLocalizeData::GetVParamInFrame),
R"#(Query the V parameter of the grid points at that index in frame.)#" , py::arg("theIndex")
)
.def("ClearGrid",
(void (IntTools_SurfaceRangeLocalizeData::*)() ) static_cast<void (IntTools_SurfaceRangeLocalizeData::*)() >(&IntTools_SurfaceRangeLocalizeData::ClearGrid),
R"#(Clears the grid of points.)#"
)
.def("GetNbSampleU",
(Standard_Integer (IntTools_SurfaceRangeLocalizeData::*)() const) static_cast<Standard_Integer (IntTools_SurfaceRangeLocalizeData::*)() const>(&IntTools_SurfaceRangeLocalizeData::GetNbSampleU),
R"#()#"
)
.def("GetNbSampleV",
(Standard_Integer (IntTools_SurfaceRangeLocalizeData::*)() const) static_cast<Standard_Integer (IntTools_SurfaceRangeLocalizeData::*)() const>(&IntTools_SurfaceRangeLocalizeData::GetNbSampleV),
R"#()#"
)
.def("GetMinRangeU",
(Standard_Real (IntTools_SurfaceRangeLocalizeData::*)() const) static_cast<Standard_Real (IntTools_SurfaceRangeLocalizeData::*)() const>(&IntTools_SurfaceRangeLocalizeData::GetMinRangeU),
R"#()#"
)
.def("GetMinRangeV",
(Standard_Real (IntTools_SurfaceRangeLocalizeData::*)() const) static_cast<Standard_Real (IntTools_SurfaceRangeLocalizeData::*)() const>(&IntTools_SurfaceRangeLocalizeData::GetMinRangeV),
R"#()#"
)
.def("SetGridDeflection",
(void (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Real ) ) static_cast<void (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Real ) >(&IntTools_SurfaceRangeLocalizeData::SetGridDeflection),
R"#(Set the grid deflection.)#" , py::arg("theDeflection")
)
.def("GetGridDeflection",
(Standard_Real (IntTools_SurfaceRangeLocalizeData::*)() const) static_cast<Standard_Real (IntTools_SurfaceRangeLocalizeData::*)() const>(&IntTools_SurfaceRangeLocalizeData::GetGridDeflection),
R"#(Query the grid deflection.)#"
)
.def("GetRangeUGrid",
(Standard_Integer (IntTools_SurfaceRangeLocalizeData::*)() const) static_cast<Standard_Integer (IntTools_SurfaceRangeLocalizeData::*)() const>(&IntTools_SurfaceRangeLocalizeData::GetRangeUGrid),
R"#(Query the range U of the grid of points.)#"
)
.def("SetUParam",
(void (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer , const Standard_Real ) ) static_cast<void (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer , const Standard_Real ) >(&IntTools_SurfaceRangeLocalizeData::SetUParam),
R"#(Set the U parameter of the grid points at that index.)#" , py::arg("theIndex"), py::arg("theUParam")
)
.def("GetUParam",
(Standard_Real (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer ) const) static_cast<Standard_Real (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer ) const>(&IntTools_SurfaceRangeLocalizeData::GetUParam),
R"#(Query the U parameter of the grid points at that index.)#" , py::arg("theIndex")
)
.def("GetRangeVGrid",
(Standard_Integer (IntTools_SurfaceRangeLocalizeData::*)() const) static_cast<Standard_Integer (IntTools_SurfaceRangeLocalizeData::*)() const>(&IntTools_SurfaceRangeLocalizeData::GetRangeVGrid),
R"#(Query the range V of the grid of points.)#"
)
.def("SetVParam",
(void (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer , const Standard_Real ) ) static_cast<void (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer , const Standard_Real ) >(&IntTools_SurfaceRangeLocalizeData::SetVParam),
R"#(Set the V parameter of the grid points at that index.)#" , py::arg("theIndex"), py::arg("theVParam")
)
.def("GetVParam",
(Standard_Real (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer ) const) static_cast<Standard_Real (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer ) const>(&IntTools_SurfaceRangeLocalizeData::GetVParam),
R"#(Query the V parameter of the grid points at that index.)#" , py::arg("theIndex")
)
.def("SetGridPoint",
(void (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer , const Standard_Integer , const gp_Pnt & ) ) static_cast<void (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer , const Standard_Integer , const gp_Pnt & ) >(&IntTools_SurfaceRangeLocalizeData::SetGridPoint),
R"#(Set the grid point.)#" , py::arg("theUIndex"), py::arg("theVIndex"), py::arg("thePoint")
)
.def("GetGridPoint",
( const gp_Pnt & (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer , const Standard_Integer ) const) static_cast< const gp_Pnt & (IntTools_SurfaceRangeLocalizeData::*)( const Standard_Integer , const Standard_Integer ) const>(&IntTools_SurfaceRangeLocalizeData::GetGridPoint),
R"#(Set the grid point.)#" , py::arg("theUIndex"), py::arg("theVIndex")
)
.def("GetNBUPointsInFrame",
(Standard_Integer (IntTools_SurfaceRangeLocalizeData::*)() const) static_cast<Standard_Integer (IntTools_SurfaceRangeLocalizeData::*)() const>(&IntTools_SurfaceRangeLocalizeData::GetNBUPointsInFrame),
R"#(Returns the number of grid points on U direction in frame.)#"
)
.def("GetNBVPointsInFrame",
(Standard_Integer (IntTools_SurfaceRangeLocalizeData::*)() const) static_cast<Standard_Integer (IntTools_SurfaceRangeLocalizeData::*)() const>(&IntTools_SurfaceRangeLocalizeData::GetNBVPointsInFrame),
R"#(Returns the number of grid points on V direction in frame.)#"
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class IntTools_SurfaceRangeSample from ./opencascade/IntTools_SurfaceRangeSample.hxx
klass = m.attr("IntTools_SurfaceRangeSample");
// nested enums
static_cast<py::class_<IntTools_SurfaceRangeSample , shared_ptr<IntTools_SurfaceRangeSample> >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const Standard_Integer, const Standard_Integer, const Standard_Integer, const Standard_Integer >() , py::arg("theIndexU"), py::arg("theDepthU"), py::arg("theIndexV"), py::arg("theDepthV") )
.def(py::init< const IntTools_CurveRangeSample &, const IntTools_CurveRangeSample & >() , py::arg("theRangeU"), py::arg("theRangeV") )
.def(py::init< const IntTools_SurfaceRangeSample & >() , py::arg("Other") )
// custom constructors
// methods
.def("Assign",
(IntTools_SurfaceRangeSample & (IntTools_SurfaceRangeSample::*)( const IntTools_SurfaceRangeSample & ) ) static_cast<IntTools_SurfaceRangeSample & (IntTools_SurfaceRangeSample::*)( const IntTools_SurfaceRangeSample & ) >(&IntTools_SurfaceRangeSample::Assign),
R"#()#" , py::arg("Other")
)
.def("SetRanges",
(void (IntTools_SurfaceRangeSample::*)( const IntTools_CurveRangeSample & , const IntTools_CurveRangeSample & ) ) static_cast<void (IntTools_SurfaceRangeSample::*)( const IntTools_CurveRangeSample & , const IntTools_CurveRangeSample & ) >(&IntTools_SurfaceRangeSample::SetRanges),
R"#()#" , py::arg("theRangeU"), py::arg("theRangeV")
)
.def("GetRanges",
(void (IntTools_SurfaceRangeSample::*)( IntTools_CurveRangeSample & , IntTools_CurveRangeSample & ) const) static_cast<void (IntTools_SurfaceRangeSample::*)( IntTools_CurveRangeSample & , IntTools_CurveRangeSample & ) const>(&IntTools_SurfaceRangeSample::GetRanges),
R"#()#" , py::arg("theRangeU"), py::arg("theRangeV")
)
.def("SetIndexes",
(void (IntTools_SurfaceRangeSample::*)( const Standard_Integer , const Standard_Integer ) ) static_cast<void (IntTools_SurfaceRangeSample::*)( const Standard_Integer , const Standard_Integer ) >(&IntTools_SurfaceRangeSample::SetIndexes),
R"#()#" , py::arg("theIndexU"), py::arg("theIndexV")
)
.def("SetSampleRangeU",
(void (IntTools_SurfaceRangeSample::*)( const IntTools_CurveRangeSample & ) ) static_cast<void (IntTools_SurfaceRangeSample::*)( const IntTools_CurveRangeSample & ) >(&IntTools_SurfaceRangeSample::SetSampleRangeU),
R"#()#" , py::arg("theRangeSampleU")
)
.def("SetSampleRangeV",
(void (IntTools_SurfaceRangeSample::*)( const IntTools_CurveRangeSample & ) ) static_cast<void (IntTools_SurfaceRangeSample::*)( const IntTools_CurveRangeSample & ) >(&IntTools_SurfaceRangeSample::SetSampleRangeV),
R"#()#" , py::arg("theRangeSampleV")
)
.def("SetIndexU",
(void (IntTools_SurfaceRangeSample::*)( const Standard_Integer ) ) static_cast<void (IntTools_SurfaceRangeSample::*)( const Standard_Integer ) >(&IntTools_SurfaceRangeSample::SetIndexU),
R"#()#" , py::arg("theIndexU")
)
.def("GetIndexU",
(Standard_Integer (IntTools_SurfaceRangeSample::*)() const) static_cast<Standard_Integer (IntTools_SurfaceRangeSample::*)() const>(&IntTools_SurfaceRangeSample::GetIndexU),
R"#()#"
)
.def("SetIndexV",
(void (IntTools_SurfaceRangeSample::*)( const Standard_Integer ) ) static_cast<void (IntTools_SurfaceRangeSample::*)( const Standard_Integer ) >(&IntTools_SurfaceRangeSample::SetIndexV),
R"#()#" , py::arg("theIndexV")
)
.def("GetIndexV",
(Standard_Integer (IntTools_SurfaceRangeSample::*)() const) static_cast<Standard_Integer (IntTools_SurfaceRangeSample::*)() const>(&IntTools_SurfaceRangeSample::GetIndexV),
R"#()#"
)
.def("SetDepthU",
(void (IntTools_SurfaceRangeSample::*)( const Standard_Integer ) ) static_cast<void (IntTools_SurfaceRangeSample::*)( const Standard_Integer ) >(&IntTools_SurfaceRangeSample::SetDepthU),
R"#()#" , py::arg("theDepthU")
)
.def("GetDepthU",
(Standard_Integer (IntTools_SurfaceRangeSample::*)() const) static_cast<Standard_Integer (IntTools_SurfaceRangeSample::*)() const>(&IntTools_SurfaceRangeSample::GetDepthU),
R"#()#"
)
.def("SetDepthV",
(void (IntTools_SurfaceRangeSample::*)( const Standard_Integer ) ) static_cast<void (IntTools_SurfaceRangeSample::*)( const Standard_Integer ) >(&IntTools_SurfaceRangeSample::SetDepthV),
R"#()#" , py::arg("theDepthV")
)
.def("GetDepthV",
(Standard_Integer (IntTools_SurfaceRangeSample::*)() const) static_cast<Standard_Integer (IntTools_SurfaceRangeSample::*)() const>(&IntTools_SurfaceRangeSample::GetDepthV),
R"#()#"
)
.def("GetRangeU",
(IntTools_Range (IntTools_SurfaceRangeSample::*)( const Standard_Real , const Standard_Real , const Standard_Integer ) const) static_cast<IntTools_Range (IntTools_SurfaceRangeSample::*)( const Standard_Real , const Standard_Real , const Standard_Integer ) const>(&IntTools_SurfaceRangeSample::GetRangeU),
R"#()#" , py::arg("theFirstU"), py::arg("theLastU"), py::arg("theNbSampleU")
)
.def("GetRangeV",
(IntTools_Range (IntTools_SurfaceRangeSample::*)( const Standard_Real , const Standard_Real , const Standard_Integer ) const) static_cast<IntTools_Range (IntTools_SurfaceRangeSample::*)( const Standard_Real , const Standard_Real , const Standard_Integer ) const>(&IntTools_SurfaceRangeSample::GetRangeV),
R"#()#" , py::arg("theFirstV"), py::arg("theLastV"), py::arg("theNbSampleV")
)
.def("IsEqual",
(Standard_Boolean (IntTools_SurfaceRangeSample::*)( const IntTools_SurfaceRangeSample & ) const) static_cast<Standard_Boolean (IntTools_SurfaceRangeSample::*)( const IntTools_SurfaceRangeSample & ) const>(&IntTools_SurfaceRangeSample::IsEqual),
R"#()#" , py::arg("Other")
)
.def("GetRangeIndexUDeeper",
(Standard_Integer (IntTools_SurfaceRangeSample::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IntTools_SurfaceRangeSample::*)( const Standard_Integer ) const>(&IntTools_SurfaceRangeSample::GetRangeIndexUDeeper),
R"#()#" , py::arg("theNbSampleU")
)
.def("GetRangeIndexVDeeper",
(Standard_Integer (IntTools_SurfaceRangeSample::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IntTools_SurfaceRangeSample::*)( const Standard_Integer ) const>(&IntTools_SurfaceRangeSample::GetRangeIndexVDeeper),
R"#()#" , py::arg("theNbSampleV")
)
.def("SetRanges",
(void (IntTools_SurfaceRangeSample::*)( const IntTools_CurveRangeSample & , const IntTools_CurveRangeSample & ) ) static_cast<void (IntTools_SurfaceRangeSample::*)( const IntTools_CurveRangeSample & , const IntTools_CurveRangeSample & ) >(&IntTools_SurfaceRangeSample::SetRanges),
R"#()#" , py::arg("theRangeU"), py::arg("theRangeV")
)
.def("GetRanges",
(void (IntTools_SurfaceRangeSample::*)( IntTools_CurveRangeSample & , IntTools_CurveRangeSample & ) const) static_cast<void (IntTools_SurfaceRangeSample::*)( IntTools_CurveRangeSample & , IntTools_CurveRangeSample & ) const>(&IntTools_SurfaceRangeSample::GetRanges),
R"#()#" , py::arg("theRangeU"), py::arg("theRangeV")
)
.def("SetIndexes",
(void (IntTools_SurfaceRangeSample::*)( const Standard_Integer , const Standard_Integer ) ) static_cast<void (IntTools_SurfaceRangeSample::*)( const Standard_Integer , const Standard_Integer ) >(&IntTools_SurfaceRangeSample::SetIndexes),
R"#()#" , py::arg("theIndexU"), py::arg("theIndexV")
)
.def("SetSampleRangeU",
(void (IntTools_SurfaceRangeSample::*)( const IntTools_CurveRangeSample & ) ) static_cast<void (IntTools_SurfaceRangeSample::*)( const IntTools_CurveRangeSample & ) >(&IntTools_SurfaceRangeSample::SetSampleRangeU),
R"#()#" , py::arg("theRangeSampleU")
)
.def("SetSampleRangeV",
(void (IntTools_SurfaceRangeSample::*)( const IntTools_CurveRangeSample & ) ) static_cast<void (IntTools_SurfaceRangeSample::*)( const IntTools_CurveRangeSample & ) >(&IntTools_SurfaceRangeSample::SetSampleRangeV),
R"#()#" , py::arg("theRangeSampleV")
)
.def("SetIndexU",
(void (IntTools_SurfaceRangeSample::*)( const Standard_Integer ) ) static_cast<void (IntTools_SurfaceRangeSample::*)( const Standard_Integer ) >(&IntTools_SurfaceRangeSample::SetIndexU),
R"#()#" , py::arg("theIndexU")
)
.def("GetIndexU",
(Standard_Integer (IntTools_SurfaceRangeSample::*)() const) static_cast<Standard_Integer (IntTools_SurfaceRangeSample::*)() const>(&IntTools_SurfaceRangeSample::GetIndexU),
R"#()#"
)
.def("SetIndexV",
(void (IntTools_SurfaceRangeSample::*)( const Standard_Integer ) ) static_cast<void (IntTools_SurfaceRangeSample::*)( const Standard_Integer ) >(&IntTools_SurfaceRangeSample::SetIndexV),
R"#()#" , py::arg("theIndexV")
)
.def("GetIndexV",
(Standard_Integer (IntTools_SurfaceRangeSample::*)() const) static_cast<Standard_Integer (IntTools_SurfaceRangeSample::*)() const>(&IntTools_SurfaceRangeSample::GetIndexV),
R"#()#"
)
.def("SetDepthU",
(void (IntTools_SurfaceRangeSample::*)( const Standard_Integer ) ) static_cast<void (IntTools_SurfaceRangeSample::*)( const Standard_Integer ) >(&IntTools_SurfaceRangeSample::SetDepthU),
R"#()#" , py::arg("theDepthU")
)
.def("GetDepthU",
(Standard_Integer (IntTools_SurfaceRangeSample::*)() const) static_cast<Standard_Integer (IntTools_SurfaceRangeSample::*)() const>(&IntTools_SurfaceRangeSample::GetDepthU),
R"#()#"
)
.def("SetDepthV",
(void (IntTools_SurfaceRangeSample::*)( const Standard_Integer ) ) static_cast<void (IntTools_SurfaceRangeSample::*)( const Standard_Integer ) >(&IntTools_SurfaceRangeSample::SetDepthV),
R"#()#" , py::arg("theDepthV")
)
.def("GetDepthV",
(Standard_Integer (IntTools_SurfaceRangeSample::*)() const) static_cast<Standard_Integer (IntTools_SurfaceRangeSample::*)() const>(&IntTools_SurfaceRangeSample::GetDepthV),
R"#()#"
)
.def("IsEqual",
(Standard_Boolean (IntTools_SurfaceRangeSample::*)( const IntTools_SurfaceRangeSample & ) const) static_cast<Standard_Boolean (IntTools_SurfaceRangeSample::*)( const IntTools_SurfaceRangeSample & ) const>(&IntTools_SurfaceRangeSample::IsEqual),
R"#()#" , py::arg("Other")
)
.def("GetRangeIndexUDeeper",
(Standard_Integer (IntTools_SurfaceRangeSample::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IntTools_SurfaceRangeSample::*)( const Standard_Integer ) const>(&IntTools_SurfaceRangeSample::GetRangeIndexUDeeper),
R"#()#" , py::arg("theNbSampleU")
)
.def("GetRangeIndexVDeeper",
(Standard_Integer (IntTools_SurfaceRangeSample::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IntTools_SurfaceRangeSample::*)( const Standard_Integer ) const>(&IntTools_SurfaceRangeSample::GetRangeIndexVDeeper),
R"#()#" , py::arg("theNbSampleV")
)
// methods using call by reference i.s.o. return
.def("GetIndexes",
[]( IntTools_SurfaceRangeSample &self ){
Standard_Integer theIndexU;
Standard_Integer theIndexV;
self.GetIndexes(theIndexU,theIndexV);
return std::make_tuple(theIndexU,theIndexV); },
R"#()#"
)
.def("GetDepths",
[]( IntTools_SurfaceRangeSample &self ){
Standard_Integer theDepthU;
Standard_Integer theDepthV;
self.GetDepths(theDepthU,theDepthV);
return std::make_tuple(theDepthU,theDepthV); },
R"#()#"
)
.def("GetIndexes",
[]( IntTools_SurfaceRangeSample &self ){
Standard_Integer theIndexU;
Standard_Integer theIndexV;
self.GetIndexes(theIndexU,theIndexV);
return std::make_tuple(theIndexU,theIndexV); },
R"#()#"
)
.def("GetDepths",
[]( IntTools_SurfaceRangeSample &self ){
Standard_Integer theDepthU;
Standard_Integer theDepthV;
self.GetDepths(theDepthU,theDepthV);
return std::make_tuple(theDepthU,theDepthV); },
R"#()#"
)
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("GetSampleRangeU",
( const IntTools_CurveRangeSample & (IntTools_SurfaceRangeSample::*)() const) static_cast< const IntTools_CurveRangeSample & (IntTools_SurfaceRangeSample::*)() const>(&IntTools_SurfaceRangeSample::GetSampleRangeU),
R"#()#"
)
.def("GetSampleRangeV",
( const IntTools_CurveRangeSample & (IntTools_SurfaceRangeSample::*)() const) static_cast< const IntTools_CurveRangeSample & (IntTools_SurfaceRangeSample::*)() const>(&IntTools_SurfaceRangeSample::GetSampleRangeV),
R"#()#"
)
.def("GetSampleRangeU",
( const IntTools_CurveRangeSample & (IntTools_SurfaceRangeSample::*)() const) static_cast< const IntTools_CurveRangeSample & (IntTools_SurfaceRangeSample::*)() const>(&IntTools_SurfaceRangeSample::GetSampleRangeU),
R"#()#"
)
.def("GetSampleRangeV",
( const IntTools_CurveRangeSample & (IntTools_SurfaceRangeSample::*)() const) static_cast< const IntTools_CurveRangeSample & (IntTools_SurfaceRangeSample::*)() const>(&IntTools_SurfaceRangeSample::GetSampleRangeV),
R"#()#"
)
;
// Class IntTools_Tools from ./opencascade/IntTools_Tools.hxx
klass = m.attr("IntTools_Tools");
// default constructor
register_default_constructor<IntTools_Tools , shared_ptr<IntTools_Tools>>(m,"IntTools_Tools");
// nested enums
static_cast<py::class_<IntTools_Tools , shared_ptr<IntTools_Tools> >>(klass)
// constructors
// custom constructors
// methods
// methods using call by reference i.s.o. return
// static methods
.def_static("ComputeVV_s",
(Standard_Integer (*)( const TopoDS_Vertex & , const TopoDS_Vertex & ) ) static_cast<Standard_Integer (*)( const TopoDS_Vertex & , const TopoDS_Vertex & ) >(&IntTools_Tools::ComputeVV),
R"#(Computes distance between vertex V1 and vertex V2, if the distance is less than sum of vertex tolerances returns zero, otherwise returns negative value)#" , py::arg("V1"), py::arg("V2")
)
.def_static("HasInternalEdge_s",
(Standard_Boolean (*)( const TopoDS_Wire & ) ) static_cast<Standard_Boolean (*)( const TopoDS_Wire & ) >(&IntTools_Tools::HasInternalEdge),
R"#(Returns True if wire aW contains edges with INTERNAL orientation)#" , py::arg("aW")
)
.def_static("MakeFaceFromWireAndFace_s",
(void (*)( const TopoDS_Wire & , const TopoDS_Face & , TopoDS_Face & ) ) static_cast<void (*)( const TopoDS_Wire & , const TopoDS_Face & , TopoDS_Face & ) >(&IntTools_Tools::MakeFaceFromWireAndFace),
R"#(Build a face based on surface of given face aF and bounded by wire aW)#" , py::arg("aW"), py::arg("aF"), py::arg("aFNew")
)
.def_static("ClassifyPointByFace_s",
(TopAbs_State (*)( const TopoDS_Face & , const gp_Pnt2d & ) ) static_cast<TopAbs_State (*)( const TopoDS_Face & , const gp_Pnt2d & ) >(&IntTools_Tools::ClassifyPointByFace),
R"#()#" , py::arg("aF"), py::arg("P")
)
.def_static("IsVertex_s",
(Standard_Boolean (*)( const TopoDS_Edge & , const Standard_Real ) ) static_cast<Standard_Boolean (*)( const TopoDS_Edge & , const Standard_Real ) >(&IntTools_Tools::IsVertex),
R"#(Computes square distance between a point on the edge E corresponded to parameter t and vertices of edge E. Returns True if this distance is less than square tolerance of vertex, otherwise returns false.)#" , py::arg("E"), py::arg("t")
)
.def_static("IsVertex_s",
(Standard_Boolean (*)( const TopoDS_Edge & , const TopoDS_Vertex & , const Standard_Real ) ) static_cast<Standard_Boolean (*)( const TopoDS_Edge & , const TopoDS_Vertex & , const Standard_Real ) >(&IntTools_Tools::IsVertex),
R"#(Returns True if square distance between vertex V and a point on the edge E corresponded to parameter t is less than square tolerance of V)#" , py::arg("E"), py::arg("V"), py::arg("t")
)
.def_static("IsVertex_s",
(Standard_Boolean (*)( const IntTools_CommonPrt & ) ) static_cast<Standard_Boolean (*)( const IntTools_CommonPrt & ) >(&IntTools_Tools::IsVertex),
R"#(Returns True if IsVertx for middle parameter of fist range and first edge returns True and if IsVertex for middle parameter of second range and second range returns True, otherwise returns False)#" , py::arg("aCmnPrt")
)
.def_static("IsMiddlePointsEqual_s",
(Standard_Boolean (*)( const TopoDS_Edge & , const TopoDS_Edge & ) ) static_cast<Standard_Boolean (*)( const TopoDS_Edge & , const TopoDS_Edge & ) >(&IntTools_Tools::IsMiddlePointsEqual),
R"#(Gets boundary of parameters of E1 and E2. Computes 3d points on each corresponded to average parameters. Returns True if distance between computed points is less than sum of edge tolerance, otherwise returns False.)#" , py::arg("E1"), py::arg("E2")
)
.def_static("IsVertex_s",
(Standard_Boolean (*)( const gp_Pnt & , const Standard_Real , const TopoDS_Vertex & ) ) static_cast<Standard_Boolean (*)( const gp_Pnt & , const Standard_Real , const TopoDS_Vertex & ) >(&IntTools_Tools::IsVertex),
R"#(Returns True if the distance between point aP and vertex aV is less or equal to sum of aTolPV and vertex tolerance, otherwise returns False)#" , py::arg("aP"), py::arg("aTolPV"), py::arg("aV")
)
.def_static("IntermediatePoint_s",
(Standard_Real (*)( const Standard_Real , const Standard_Real ) ) static_cast<Standard_Real (*)( const Standard_Real , const Standard_Real ) >(&IntTools_Tools::IntermediatePoint),
R"#(Returns some value between aFirst and aLast)#" , py::arg("aFirst"), py::arg("aLast")
)
.def_static("SplitCurve_s",
(Standard_Integer (*)( const IntTools_Curve & , IntTools_SequenceOfCurves & ) ) static_cast<Standard_Integer (*)( const IntTools_Curve & , IntTools_SequenceOfCurves & ) >(&IntTools_Tools::SplitCurve),
R"#(Split aC by average parameter if aC is closed in 3D. Returns positive value if splitting has been done, otherwise returns zero.)#" , py::arg("aC"), py::arg("aS")
)
.def_static("RejectLines_s",
(void (*)( const IntTools_SequenceOfCurves & , IntTools_SequenceOfCurves & ) ) static_cast<void (*)( const IntTools_SequenceOfCurves & , IntTools_SequenceOfCurves & ) >(&IntTools_Tools::RejectLines),
R"#(Puts curves from aSIn to aSOut except those curves that are coincide with first curve from aSIn.)#" , py::arg("aSIn"), py::arg("aSOut")
)
.def_static("IsDirsCoinside_s",
(Standard_Boolean (*)( const gp_Dir & , const gp_Dir & ) ) static_cast<Standard_Boolean (*)( const gp_Dir & , const gp_Dir & ) >(&IntTools_Tools::IsDirsCoinside),
R"#(Returns True if D1 and D2 coincide)#" , py::arg("D1"), py::arg("D2")
)
.def_static("IsDirsCoinside_s",
(Standard_Boolean (*)( const gp_Dir & , const gp_Dir & , const Standard_Real ) ) static_cast<Standard_Boolean (*)( const gp_Dir & , const gp_Dir & , const Standard_Real ) >(&IntTools_Tools::IsDirsCoinside),
R"#(Returns True if D1 and D2 coincide with given tolerance)#" , py::arg("D1"), py::arg("D2"), py::arg("aTol")
)
.def_static("IsClosed_s",
(Standard_Boolean (*)( const handle<Geom_Curve> & ) ) static_cast<Standard_Boolean (*)( const handle<Geom_Curve> & ) >(&IntTools_Tools::IsClosed),
R"#(Returns True if aC is BoundedCurve from Geom and the distance between first point of the curve aC and last point is less than 1.e-12)#" , py::arg("aC")
)
.def_static("CurveTolerance_s",
(Standard_Real (*)( const handle<Geom_Curve> & , const Standard_Real ) ) static_cast<Standard_Real (*)( const handle<Geom_Curve> & , const Standard_Real ) >(&IntTools_Tools::CurveTolerance),
R"#(Returns adaptive tolerance for given aTolBase if aC is trimmed curve and basis curve is parabola, otherwise returns value of aTolBase)#" , py::arg("aC"), py::arg("aTolBase")
)
.def_static("CheckCurve_s",
(Standard_Boolean (*)( const IntTools_Curve & , Bnd_Box & ) ) static_cast<Standard_Boolean (*)( const IntTools_Curve & , Bnd_Box & ) >(&IntTools_Tools::CheckCurve),
R"#(Checks if the curve is not covered by the default tolerance (confusion). Builds bounding box for the curve and stores it into <theBox>.)#" , py::arg("theCurve"), py::arg("theBox")
)
.def_static("IsOnPave_s",
(Standard_Boolean (*)( const Standard_Real , const IntTools_Range & , const Standard_Real ) ) static_cast<Standard_Boolean (*)( const Standard_Real , const IntTools_Range & , const Standard_Real ) >(&IntTools_Tools::IsOnPave),
R"#()#" , py::arg("theT"), py::arg("theRange"), py::arg("theTol")
)
.def_static("IsOnPave1_s",
(Standard_Boolean (*)( const Standard_Real , const IntTools_Range & , const Standard_Real ) ) static_cast<Standard_Boolean (*)( const Standard_Real , const IntTools_Range & , const Standard_Real ) >(&IntTools_Tools::IsOnPave1),
R"#()#" , py::arg("theT"), py::arg("theRange"), py::arg("theTol")
)
.def_static("IsInRange_s",
(Standard_Boolean (*)( const IntTools_Range & , const IntTools_Range & , const Standard_Real ) ) static_cast<Standard_Boolean (*)( const IntTools_Range & , const IntTools_Range & , const Standard_Real ) >(&IntTools_Tools::IsInRange),
R"#(Checks if the range <theR> interfere with the range <theRRef>)#" , py::arg("theRRef"), py::arg("theR"), py::arg("theTol")
)
.def_static("SegPln_s",
(Standard_Integer (*)( const gp_Lin & , const Standard_Real , const Standard_Real , const Standard_Real , const gp_Pln & , const Standard_Real , gp_Pnt & , Standard_Real & , Standard_Real & , Standard_Real & , Standard_Real & ) ) static_cast<Standard_Integer (*)( const gp_Lin & , const Standard_Real , const Standard_Real , const Standard_Real , const gp_Pln & , const Standard_Real , gp_Pnt & , Standard_Real & , Standard_Real & , Standard_Real & , Standard_Real & ) >(&IntTools_Tools::SegPln),
R"#()#" , py::arg("theLin"), py::arg("theTLin1"), py::arg("theTLin2"), py::arg("theTolLin"), py::arg("thePln"), py::arg("theTolPln"), py::arg("theP"), py::arg("theT"), py::arg("theTolP"), py::arg("theTmin"), py::arg("theTmax")
)
.def_static("ComputeTolerance_s",
(Standard_Boolean (*)( const handle<Geom_Curve> & , const handle<Geom2d_Curve> & , const handle<Geom_Surface> & , const Standard_Real , const Standard_Real , Standard_Real & , Standard_Real & , const Standard_Real , const Standard_Boolean ) ) static_cast<Standard_Boolean (*)( const handle<Geom_Curve> & , const handle<Geom2d_Curve> & , const handle<Geom_Surface> & , const Standard_Real , const Standard_Real , Standard_Real & , Standard_Real & , const Standard_Real , const Standard_Boolean ) >(&IntTools_Tools::ComputeTolerance),
R"#(Computes the max distance between points taken from 3D and 2D curves by the same parameter)#" , py::arg("theCurve3D"), py::arg("theCurve2D"), py::arg("theSurf"), py::arg("theFirst"), py::arg("theLast"), py::arg("theMaxDist"), py::arg("theMaxPar"), py::arg("theTolRange")=static_cast< const Standard_Real>(Precision :: PConfusion ( )), py::arg("theToRunParallel")=static_cast< const Standard_Boolean>(Standard_False)
)
.def_static("ComputeIntRange_s",
(Standard_Real (*)( const Standard_Real , const Standard_Real , const Standard_Real ) ) static_cast<Standard_Real (*)( const Standard_Real , const Standard_Real , const Standard_Real ) >(&IntTools_Tools::ComputeIntRange),
R"#(Computes the correct Intersection range for Line/Line, Line/Plane and Plane/Plane intersections)#" , py::arg("theTol1"), py::arg("theTol2"), py::arg("theAngle")
)
// static methods using call by reference i.s.o. return
.def_static("VertexParameters_s",
[]( const IntTools_CommonPrt & theCP ){
Standard_Real theT1;
Standard_Real theT2;
IntTools_Tools::VertexParameters(theCP,theT1,theT2);
return std::make_tuple(theT1,theT2); },
R"#()#" , py::arg("theCP")
)
.def_static("VertexParameter_s",
[]( const IntTools_CommonPrt & theCP ){
Standard_Real theT;
IntTools_Tools::VertexParameter(theCP,theT);
return std::make_tuple(theT); },
R"#()#" , py::arg("theCP")
)
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class IntTools_TopolTool from ./opencascade/IntTools_TopolTool.hxx
klass = m.attr("IntTools_TopolTool");
// nested enums
static_cast<py::class_<IntTools_TopolTool ,opencascade::handle<IntTools_TopolTool> , Adaptor3d_TopolTool >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const handle<Adaptor3d_Surface> & >() , py::arg("theSurface") )
// custom constructors
// methods
.def("Initialize",
(void (IntTools_TopolTool::*)() ) static_cast<void (IntTools_TopolTool::*)() >(&IntTools_TopolTool::Initialize),
R"#(Redefined empty initializer)#"
)
.def("Initialize",
(void (IntTools_TopolTool::*)( const handle<Adaptor3d_Surface> & ) ) static_cast<void (IntTools_TopolTool::*)( const handle<Adaptor3d_Surface> & ) >(&IntTools_TopolTool::Initialize),
R"#(Initializes me by surface)#" , py::arg("theSurface")
)
.def("ComputeSamplePoints",
(void (IntTools_TopolTool::*)() ) static_cast<void (IntTools_TopolTool::*)() >(&IntTools_TopolTool::ComputeSamplePoints),
R"#()#"
)
.def("NbSamplesU",
(Standard_Integer (IntTools_TopolTool::*)() ) static_cast<Standard_Integer (IntTools_TopolTool::*)() >(&IntTools_TopolTool::NbSamplesU),
R"#(Computes the sample-points for the intersections algorithms)#"
)
.def("NbSamplesV",
(Standard_Integer (IntTools_TopolTool::*)() ) static_cast<Standard_Integer (IntTools_TopolTool::*)() >(&IntTools_TopolTool::NbSamplesV),
R"#(Computes the sample-points for the intersections algorithms)#"
)
.def("NbSamples",
(Standard_Integer (IntTools_TopolTool::*)() ) static_cast<Standard_Integer (IntTools_TopolTool::*)() >(&IntTools_TopolTool::NbSamples),
R"#(Computes the sample-points for the intersections algorithms)#"
)
.def("SamplePoint",
(void (IntTools_TopolTool::*)( const Standard_Integer , gp_Pnt2d & , gp_Pnt & ) ) static_cast<void (IntTools_TopolTool::*)( const Standard_Integer , gp_Pnt2d & , gp_Pnt & ) >(&IntTools_TopolTool::SamplePoint),
R"#(Returns a 2d point from surface myS and a corresponded 3d point for given index. The index should be from 1 to NbSamples())#" , py::arg("Index"), py::arg("P2d"), py::arg("P3d")
)
.def("SamplePnts",
(void (IntTools_TopolTool::*)( const Standard_Real , const Standard_Integer , const Standard_Integer ) ) static_cast<void (IntTools_TopolTool::*)( const Standard_Real , const Standard_Integer , const Standard_Integer ) >(&IntTools_TopolTool::SamplePnts),
R"#(compute the sample-points for the intersections algorithms by adaptive algorithm for BSpline surfaces. For other surfaces algorithm is the same as in method ComputeSamplePoints(), but only fill arrays of U and V sample parameters; theDefl is a required deflection theNUmin, theNVmin are minimal nb points for U and V.)#" , py::arg("theDefl"), py::arg("theNUmin"), py::arg("theNVmin")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
( const char * (*)() ) static_cast< const char * (*)() >(&IntTools_TopolTool::get_type_name),
R"#()#"
)
.def_static("get_type_descriptor_s",
( const handle<Standard_Type> & (*)() ) static_cast< const handle<Standard_Type> & (*)() >(&IntTools_TopolTool::get_type_descriptor),
R"#()#"
)
// 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 handle<Standard_Type> & (IntTools_TopolTool::*)() const) static_cast< const handle<Standard_Type> & (IntTools_TopolTool::*)() const>(&IntTools_TopolTool::DynamicType),
R"#()#"
)
;
// Class IntTools_WLineTool from ./opencascade/IntTools_WLineTool.hxx
klass = m.attr("IntTools_WLineTool");
// default constructor
register_default_constructor<IntTools_WLineTool , shared_ptr<IntTools_WLineTool>>(m,"IntTools_WLineTool");
// nested enums
static_cast<py::class_<IntTools_WLineTool , shared_ptr<IntTools_WLineTool> >>(klass)
// constructors
// custom constructors
// methods
// methods using call by reference i.s.o. return
// static methods
.def_static("NotUseSurfacesForApprox_s",
(Standard_Boolean (*)( const TopoDS_Face & , const TopoDS_Face & , const handle<IntPatch_WLine> & , const Standard_Integer , const Standard_Integer ) ) static_cast<Standard_Boolean (*)( const TopoDS_Face & , const TopoDS_Face & , const handle<IntPatch_WLine> & , const Standard_Integer , const Standard_Integer ) >(&IntTools_WLineTool::NotUseSurfacesForApprox),
R"#()#" , py::arg("aF1"), py::arg("aF2"), py::arg("WL"), py::arg("ifprm"), py::arg("ilprm")
)
.def_static("DecompositionOfWLine_s",
(Standard_Boolean (*)( const handle<IntPatch_WLine> & , const handle<GeomAdaptor_Surface> & , const handle<GeomAdaptor_Surface> & , const TopoDS_Face & , const TopoDS_Face & , const GeomInt_LineConstructor & , const Standard_Boolean , const Standard_Real , IntPatch_SequenceOfLine & , const handle<IntTools_Context> & ) ) static_cast<Standard_Boolean (*)( const handle<IntPatch_WLine> & , const handle<GeomAdaptor_Surface> & , const handle<GeomAdaptor_Surface> & , const TopoDS_Face & , const TopoDS_Face & , const GeomInt_LineConstructor & , const Standard_Boolean , const Standard_Real , IntPatch_SequenceOfLine & , const handle<IntTools_Context> & ) >(&IntTools_WLineTool::DecompositionOfWLine),
R"#()#" , py::arg("theWLine"), py::arg("theSurface1"), py::arg("theSurface2"), py::arg("theFace1"), py::arg("theFace2"), py::arg("theLConstructor"), py::arg("theAvoidLConstructor"), py::arg("theTol"), py::arg("theNewLines"), py::arg("arg9")
)
// 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 IntTools_CurveRangeSample from ./opencascade/IntTools_CurveRangeSample.hxx
klass = m.attr("IntTools_CurveRangeSample");
// nested enums
static_cast<py::class_<IntTools_CurveRangeSample , shared_ptr<IntTools_CurveRangeSample> , IntTools_BaseRangeSample >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const Standard_Integer >() , py::arg("theIndex") )
// custom constructors
// methods
.def("SetRangeIndex",
(void (IntTools_CurveRangeSample::*)( const Standard_Integer ) ) static_cast<void (IntTools_CurveRangeSample::*)( const Standard_Integer ) >(&IntTools_CurveRangeSample::SetRangeIndex),
R"#()#" , py::arg("theIndex")
)
.def("GetRangeIndex",
(Standard_Integer (IntTools_CurveRangeSample::*)() const) static_cast<Standard_Integer (IntTools_CurveRangeSample::*)() const>(&IntTools_CurveRangeSample::GetRangeIndex),
R"#()#"
)
.def("IsEqual",
(Standard_Boolean (IntTools_CurveRangeSample::*)( const IntTools_CurveRangeSample & ) const) static_cast<Standard_Boolean (IntTools_CurveRangeSample::*)( const IntTools_CurveRangeSample & ) const>(&IntTools_CurveRangeSample::IsEqual),
R"#()#" , py::arg("Other")
)
.def("GetRange",
(IntTools_Range (IntTools_CurveRangeSample::*)( const Standard_Real , const Standard_Real , const Standard_Integer ) const) static_cast<IntTools_Range (IntTools_CurveRangeSample::*)( const Standard_Real , const Standard_Real , const Standard_Integer ) const>(&IntTools_CurveRangeSample::GetRange),
R"#()#" , py::arg("theFirst"), py::arg("theLast"), py::arg("theNbSample")
)
.def("GetRangeIndexDeeper",
(Standard_Integer (IntTools_CurveRangeSample::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IntTools_CurveRangeSample::*)( const Standard_Integer ) const>(&IntTools_CurveRangeSample::GetRangeIndexDeeper),
R"#()#" , py::arg("theNbSample")
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// functions
// ./opencascade/IntTools.hxx
// ./opencascade/IntTools_Array1OfRange.hxx
// ./opencascade/IntTools_Array1OfRoots.hxx
// ./opencascade/IntTools_BaseRangeSample.hxx
// ./opencascade/IntTools_BeanFaceIntersector.hxx
// ./opencascade/IntTools_CArray1OfReal.hxx
// ./opencascade/IntTools_CommonPrt.hxx
// ./opencascade/IntTools_Context.hxx
// ./opencascade/IntTools_Curve.hxx
// ./opencascade/IntTools_CurveRangeLocalizeData.hxx
// ./opencascade/IntTools_CurveRangeSample.hxx
// ./opencascade/IntTools_DataMapIteratorOfDataMapOfSurfaceSampleBox.hxx
// ./opencascade/IntTools_DataMapOfCurveSampleBox.hxx
// ./opencascade/IntTools_DataMapOfSurfaceSampleBox.hxx
// ./opencascade/IntTools_EdgeEdge.hxx
// ./opencascade/IntTools_EdgeFace.hxx
// ./opencascade/IntTools_FClass2d.hxx
// ./opencascade/IntTools_FaceFace.hxx
// ./opencascade/IntTools_ListIteratorOfListOfBox.hxx
// ./opencascade/IntTools_ListIteratorOfListOfCurveRangeSample.hxx
// ./opencascade/IntTools_ListIteratorOfListOfSurfaceRangeSample.hxx
// ./opencascade/IntTools_ListOfBox.hxx
// ./opencascade/IntTools_ListOfCurveRangeSample.hxx
// ./opencascade/IntTools_ListOfSurfaceRangeSample.hxx
// ./opencascade/IntTools_MapIteratorOfMapOfCurveSample.hxx
// ./opencascade/IntTools_MapIteratorOfMapOfSurfaceSample.hxx
// ./opencascade/IntTools_MapOfCurveSample.hxx
// ./opencascade/IntTools_MapOfSurfaceSample.hxx
// ./opencascade/IntTools_MarkedRangeSet.hxx
// ./opencascade/IntTools_PntOn2Faces.hxx
// ./opencascade/IntTools_PntOnFace.hxx
// ./opencascade/IntTools_Range.hxx
// ./opencascade/IntTools_Root.hxx
// ./opencascade/IntTools_SequenceOfCommonPrts.hxx
// ./opencascade/IntTools_SequenceOfCurves.hxx
// ./opencascade/IntTools_SequenceOfPntOn2Faces.hxx
// ./opencascade/IntTools_SequenceOfRanges.hxx
// ./opencascade/IntTools_SequenceOfRoots.hxx
// ./opencascade/IntTools_ShrunkRange.hxx
// ./opencascade/IntTools_SurfaceRangeLocalizeData.hxx
// ./opencascade/IntTools_SurfaceRangeSample.hxx
// ./opencascade/IntTools_Tools.hxx
// ./opencascade/IntTools_TopolTool.hxx
// ./opencascade/IntTools_WLineTool.hxx
// Additional functions
// operators
// register typdefs
register_template_NCollection_Array1<IntTools_Range>(m,"IntTools_Array1OfRange");
register_template_NCollection_Array1<IntTools_Root>(m,"IntTools_Array1OfRoots");
register_template_NCollection_DataMap<IntTools_CurveRangeSample, Bnd_Box>(m,"IntTools_DataMapOfCurveSampleBox");
register_template_NCollection_DataMap<IntTools_SurfaceRangeSample, Bnd_Box>(m,"IntTools_DataMapOfSurfaceSampleBox");
register_template_NCollection_List<Bnd_Box>(m,"IntTools_ListOfBox");
register_template_NCollection_List<IntTools_CurveRangeSample>(m,"IntTools_ListOfCurveRangeSample");
register_template_NCollection_List<IntTools_SurfaceRangeSample>(m,"IntTools_ListOfSurfaceRangeSample");
register_template_NCollection_Map<IntTools_CurveRangeSample>(m,"IntTools_MapOfCurveSample");
register_template_NCollection_Map<IntTools_SurfaceRangeSample>(m,"IntTools_MapOfSurfaceSample");
register_template_NCollection_Sequence<IntTools_CommonPrt>(m,"IntTools_SequenceOfCommonPrts");
register_template_NCollection_Sequence<IntTools_Curve>(m,"IntTools_SequenceOfCurves");
register_template_NCollection_Sequence<IntTools_PntOn2Faces>(m,"IntTools_SequenceOfPntOn2Faces");
register_template_NCollection_Sequence<IntTools_Range>(m,"IntTools_SequenceOfRanges");
register_template_NCollection_Sequence<IntTools_Root>(m,"IntTools_SequenceOfRoots");
// exceptions
// user-defined post-inclusion per module in the body
};
// user-defined post-inclusion per module
// user-defined post
|