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
|
import OCP.Bnd
from typing import *
from typing import Iterable as iterable
from typing import Iterator as iterator
from numpy import float64
_Shape = Tuple[int, ...]
import OCP.TColStd
import OCP.gp
import OCP.TColgp
import OCP.Standard
import io
__all__ = [
"Bnd_Array1OfBox",
"Bnd_Array1OfBox2d",
"Bnd_Array1OfSphere",
"Bnd_B2d",
"Bnd_B2f",
"Bnd_B3d",
"Bnd_B3f",
"Bnd_BoundSortBox",
"Bnd_Box",
"Bnd_Box2d",
"Bnd_HArray1OfBox",
"Bnd_HArray1OfBox2d",
"Bnd_HArray1OfSphere",
"Bnd_OBB",
"Bnd_Range",
"Bnd_Sphere",
"Bnd_Tools"
]
class Bnd_Array1OfBox():
"""
The class NCollection_Array1 represents unidimensional arrays of fixed size known at run time. The range of the index is user defined. An array1 can be constructed with a "C array". This functionality is useful to call methods expecting an Array1. It allows to carry the bounds inside the arrays.
"""
def Assign(self,theOther : Bnd_Array1OfBox) -> Bnd_Array1OfBox:
"""
Copies data of theOther array to this. This array should be pre-allocated and have the same length as theOther; otherwise exception Standard_DimensionMismatch is thrown.
"""
def Init(self,theValue : Bnd_Box) -> None:
"""
Initialise the items with theValue
"""
def IsDeletable(self) -> bool:
"""
None
"""
def IsEmpty(self) -> bool:
"""
Return TRUE if array has zero length.
"""
def Length(self) -> int:
"""
Length query (the same)
"""
def Lower(self) -> int:
"""
Lower bound
"""
def Move(self,theOther : Bnd_Array1OfBox) -> Bnd_Array1OfBox:
"""
None
"""
def Resize(self,theLower : int,theUpper : int,theToCopyData : bool) -> None:
"""
Resizes the array to specified bounds. No re-allocation will be done if length of array does not change, but existing values will not be discarded if theToCopyData set to FALSE.
"""
def SetValue(self,theIndex : int,theItem : Bnd_Box) -> None:
"""
Set value
"""
def Size(self) -> int:
"""
Size query
"""
def UpdateLowerBound(self,theLower : int) -> None:
"""
Changes the lowest bound. Do not move data
"""
def UpdateUpperBound(self,theUpper : int) -> None:
"""
Changes the upper bound. Do not move data
"""
def Upper(self) -> int:
"""
Upper bound
"""
def __bool__(self) -> bool: ...
def __call__(self,theIndex : int) -> Bnd_Box: ...
@overload
def __init__(self,theLower : int,theUpper : int) -> None: ...
@overload
def __init__(self,theOther : Bnd_Array1OfBox) -> None: ...
@overload
def __init__(self,theAlloc : Any,theLower : int,theUpper : int) -> None: ...
@overload
def __init__(self) -> None: ...
def __iter__(self) -> Iterator[Bnd_Box]: ...
def __len__(self) -> int: ...
pass
class Bnd_Array1OfBox2d():
"""
The class NCollection_Array1 represents unidimensional arrays of fixed size known at run time. The range of the index is user defined. An array1 can be constructed with a "C array". This functionality is useful to call methods expecting an Array1. It allows to carry the bounds inside the arrays.
"""
def Assign(self,theOther : Bnd_Array1OfBox2d) -> Bnd_Array1OfBox2d:
"""
Copies data of theOther array to this. This array should be pre-allocated and have the same length as theOther; otherwise exception Standard_DimensionMismatch is thrown.
"""
def Init(self,theValue : Bnd_Box2d) -> None:
"""
Initialise the items with theValue
"""
def IsDeletable(self) -> bool:
"""
None
"""
def IsEmpty(self) -> bool:
"""
Return TRUE if array has zero length.
"""
def Length(self) -> int:
"""
Length query (the same)
"""
def Lower(self) -> int:
"""
Lower bound
"""
def Move(self,theOther : Bnd_Array1OfBox2d) -> Bnd_Array1OfBox2d:
"""
None
"""
def Resize(self,theLower : int,theUpper : int,theToCopyData : bool) -> None:
"""
Resizes the array to specified bounds. No re-allocation will be done if length of array does not change, but existing values will not be discarded if theToCopyData set to FALSE.
"""
def SetValue(self,theIndex : int,theItem : Bnd_Box2d) -> None:
"""
Set value
"""
def Size(self) -> int:
"""
Size query
"""
def UpdateLowerBound(self,theLower : int) -> None:
"""
Changes the lowest bound. Do not move data
"""
def UpdateUpperBound(self,theUpper : int) -> None:
"""
Changes the upper bound. Do not move data
"""
def Upper(self) -> int:
"""
Upper bound
"""
def __bool__(self) -> bool: ...
def __call__(self,theIndex : int) -> Bnd_Box2d: ...
@overload
def __init__(self) -> None: ...
@overload
def __init__(self,theLower : int,theUpper : int) -> None: ...
@overload
def __init__(self,theOther : Bnd_Array1OfBox2d) -> None: ...
@overload
def __init__(self,theAlloc : Any,theLower : int,theUpper : int) -> None: ...
def __iter__(self) -> Iterator[Bnd_Box2d]: ...
def __len__(self) -> int: ...
pass
class Bnd_Array1OfSphere():
"""
The class NCollection_Array1 represents unidimensional arrays of fixed size known at run time. The range of the index is user defined. An array1 can be constructed with a "C array". This functionality is useful to call methods expecting an Array1. It allows to carry the bounds inside the arrays.
"""
def Assign(self,theOther : Bnd_Array1OfSphere) -> Bnd_Array1OfSphere:
"""
Copies data of theOther array to this. This array should be pre-allocated and have the same length as theOther; otherwise exception Standard_DimensionMismatch is thrown.
"""
def Init(self,theValue : Bnd_Sphere) -> None:
"""
Initialise the items with theValue
"""
def IsDeletable(self) -> bool:
"""
None
"""
def IsEmpty(self) -> bool:
"""
Return TRUE if array has zero length.
"""
def Length(self) -> int:
"""
Length query (the same)
"""
def Lower(self) -> int:
"""
Lower bound
"""
def Move(self,theOther : Bnd_Array1OfSphere) -> Bnd_Array1OfSphere:
"""
None
"""
def Resize(self,theLower : int,theUpper : int,theToCopyData : bool) -> None:
"""
Resizes the array to specified bounds. No re-allocation will be done if length of array does not change, but existing values will not be discarded if theToCopyData set to FALSE.
"""
def SetValue(self,theIndex : int,theItem : Bnd_Sphere) -> None:
"""
Set value
"""
def Size(self) -> int:
"""
Size query
"""
def UpdateLowerBound(self,theLower : int) -> None:
"""
Changes the lowest bound. Do not move data
"""
def UpdateUpperBound(self,theUpper : int) -> None:
"""
Changes the upper bound. Do not move data
"""
def Upper(self) -> int:
"""
Upper bound
"""
def __bool__(self) -> bool: ...
def __call__(self,theIndex : int) -> Bnd_Sphere: ...
@overload
def __init__(self) -> None: ...
@overload
def __init__(self,theLower : int,theUpper : int) -> None: ...
@overload
def __init__(self,theAlloc : Any,theLower : int,theUpper : int) -> None: ...
@overload
def __init__(self,theOther : Bnd_Array1OfSphere) -> None: ...
def __iter__(self) -> Iterator[Bnd_Sphere]: ...
def __len__(self) -> int: ...
pass
class Bnd_B2d():
"""
None
"""
@overload
def Add(self,thePnt : OCP.gp.gp_XY) -> None:
"""
Update the box by a point.
Update the box by a point.
Update the box by another box.
"""
@overload
def Add(self,theBox : Bnd_B2d) -> None: ...
@overload
def Add(self,thePnt : OCP.gp.gp_Pnt2d) -> None: ...
def Clear(self) -> None:
"""
Reset the box data.
"""
def CornerMax(self) -> OCP.gp.gp_XY:
"""
Query a box corner: (Center + HSize). You must make sure that the box is NOT VOID (see IsVoid()), otherwise the method returns irrelevant result.
"""
def CornerMin(self) -> OCP.gp.gp_XY:
"""
Query a box corner: (Center - HSize). You must make sure that the box is NOT VOID (see IsVoid()), otherwise the method returns irrelevant result.
"""
def Enlarge(self,theDiff : float) -> None:
"""
Extend the Box by the absolute value of theDiff.
"""
@overload
def IsIn(self,theBox : Bnd_B2d,theTrsf : OCP.gp.gp_Trsf2d) -> bool:
"""
Check that the box 'this' is inside the given box 'theBox'. Returns True if 'this' box is fully inside 'theBox'.
Check that the box 'this' is inside the given box 'theBox' transformed by 'theTrsf'. Returns True if 'this' box is fully inside the transformed 'theBox'.
"""
@overload
def IsIn(self,theBox : Bnd_B2d) -> bool: ...
@overload
def IsOut(self,thePnt : OCP.gp.gp_XY) -> bool:
"""
Check the given point for the inclusion in the Box. Returns True if the point is outside.
Check a circle for the intersection with the current box. Returns True if there is no intersection between boxes.
Check the given box for the intersection with the current box. Returns True if there is no intersection between boxes.
Check the given box oriented by the given transformation for the intersection with the current box. Returns True if there is no intersection between boxes.
Check the given Line for the intersection with the current box. Returns True if there is no intersection.
Check the Segment defined by the couple of input points for the intersection with the current box. Returns True if there is no intersection.
"""
@overload
def IsOut(self,theLine : OCP.gp.gp_Ax2d) -> bool: ...
@overload
def IsOut(self,theOtherBox : Bnd_B2d) -> bool: ...
@overload
def IsOut(self,theP0 : OCP.gp.gp_XY,theP1 : OCP.gp.gp_XY) -> bool: ...
@overload
def IsOut(self,theOtherBox : Bnd_B2d,theTrsf : OCP.gp.gp_Trsf2d) -> bool: ...
@overload
def IsOut(self,theCenter : OCP.gp.gp_XY,theRadius : float,isCircleHollow : bool=False) -> bool: ...
def IsVoid(self) -> bool:
"""
Returns True if the box is void (non-initialized).
"""
def Limit(self,theOtherBox : Bnd_B2d) -> bool:
"""
Limit the Box by the internals of theOtherBox. Returns True if the limitation takes place, otherwise False indicating that the boxes do not intersect.
"""
def SetCenter(self,theCenter : OCP.gp.gp_XY) -> None:
"""
Set the Center coordinates
"""
def SetHSize(self,theHSize : OCP.gp.gp_XY) -> None:
"""
Set the HSize (half-diagonal) coordinates. All components of theHSize must be non-negative.
"""
def SquareExtent(self) -> float:
"""
Query the square diagonal. If the box is VOID (see method IsVoid()) then a very big real value is returned.
"""
def Transformed(self,theTrsf : OCP.gp.gp_Trsf2d) -> Bnd_B2d:
"""
Transform the bounding box with the given transformation. The resulting box will be larger if theTrsf contains rotation.
"""
@overload
def __init__(self) -> None: ...
@overload
def __init__(self,theCenter : OCP.gp.gp_XY,theHSize : OCP.gp.gp_XY) -> None: ...
pass
class Bnd_B2f():
"""
None
"""
@overload
def Add(self,theBox : Bnd_B2f) -> None:
"""
Update the box by a point.
Update the box by a point.
Update the box by another box.
"""
@overload
def Add(self,thePnt : OCP.gp.gp_Pnt2d) -> None: ...
@overload
def Add(self,thePnt : OCP.gp.gp_XY) -> None: ...
def Clear(self) -> None:
"""
Reset the box data.
"""
def CornerMax(self) -> OCP.gp.gp_XY:
"""
Query a box corner: (Center + HSize). You must make sure that the box is NOT VOID (see IsVoid()), otherwise the method returns irrelevant result.
"""
def CornerMin(self) -> OCP.gp.gp_XY:
"""
Query a box corner: (Center - HSize). You must make sure that the box is NOT VOID (see IsVoid()), otherwise the method returns irrelevant result.
"""
def Enlarge(self,theDiff : float) -> None:
"""
Extend the Box by the absolute value of theDiff.
"""
@overload
def IsIn(self,theBox : Bnd_B2f) -> bool:
"""
Check that the box 'this' is inside the given box 'theBox'. Returns True if 'this' box is fully inside 'theBox'.
Check that the box 'this' is inside the given box 'theBox' transformed by 'theTrsf'. Returns True if 'this' box is fully inside the transformed 'theBox'.
"""
@overload
def IsIn(self,theBox : Bnd_B2f,theTrsf : OCP.gp.gp_Trsf2d) -> bool: ...
@overload
def IsOut(self,theOtherBox : Bnd_B2f,theTrsf : OCP.gp.gp_Trsf2d) -> bool:
"""
Check the given point for the inclusion in the Box. Returns True if the point is outside.
Check a circle for the intersection with the current box. Returns True if there is no intersection between boxes.
Check the given box for the intersection with the current box. Returns True if there is no intersection between boxes.
Check the given box oriented by the given transformation for the intersection with the current box. Returns True if there is no intersection between boxes.
Check the given Line for the intersection with the current box. Returns True if there is no intersection.
Check the Segment defined by the couple of input points for the intersection with the current box. Returns True if there is no intersection.
"""
@overload
def IsOut(self,theCenter : OCP.gp.gp_XY,theRadius : float,isCircleHollow : bool=False) -> bool: ...
@overload
def IsOut(self,thePnt : OCP.gp.gp_XY) -> bool: ...
@overload
def IsOut(self,theLine : OCP.gp.gp_Ax2d) -> bool: ...
@overload
def IsOut(self,theP0 : OCP.gp.gp_XY,theP1 : OCP.gp.gp_XY) -> bool: ...
@overload
def IsOut(self,theOtherBox : Bnd_B2f) -> bool: ...
def IsVoid(self) -> bool:
"""
Returns True if the box is void (non-initialized).
"""
def Limit(self,theOtherBox : Bnd_B2f) -> bool:
"""
Limit the Box by the internals of theOtherBox. Returns True if the limitation takes place, otherwise False indicating that the boxes do not intersect.
"""
def SetCenter(self,theCenter : OCP.gp.gp_XY) -> None:
"""
Set the Center coordinates
"""
def SetHSize(self,theHSize : OCP.gp.gp_XY) -> None:
"""
Set the HSize (half-diagonal) coordinates. All components of theHSize must be non-negative.
"""
def SquareExtent(self) -> float:
"""
Query the square diagonal. If the box is VOID (see method IsVoid()) then a very big real value is returned.
"""
def Transformed(self,theTrsf : OCP.gp.gp_Trsf2d) -> Bnd_B2f:
"""
Transform the bounding box with the given transformation. The resulting box will be larger if theTrsf contains rotation.
"""
@overload
def __init__(self) -> None: ...
@overload
def __init__(self,theCenter : OCP.gp.gp_XY,theHSize : OCP.gp.gp_XY) -> None: ...
pass
class Bnd_B3d():
"""
None
"""
@overload
def Add(self,theBox : Bnd_B3d) -> None:
"""
Update the box by a point.
Update the box by a point.
Update the box by another box.
"""
@overload
def Add(self,thePnt : OCP.gp.gp_Pnt) -> None: ...
@overload
def Add(self,thePnt : OCP.gp.gp_XYZ) -> None: ...
def Clear(self) -> None:
"""
Reset the box data.
"""
def CornerMax(self) -> OCP.gp.gp_XYZ:
"""
Query the upper corner: (Center + HSize). You must make sure that the box is NOT VOID (see IsVoid()), otherwise the method returns irrelevant result.
"""
def CornerMin(self) -> OCP.gp.gp_XYZ:
"""
Query the lower corner: (Center - HSize). You must make sure that the box is NOT VOID (see IsVoid()), otherwise the method returns irrelevant result.
"""
def Enlarge(self,theDiff : float) -> None:
"""
Extend the Box by the absolute value of theDiff.
"""
@overload
def IsIn(self,theBox : Bnd_B3d) -> bool:
"""
Check that the box 'this' is inside the given box 'theBox'. Returns True if 'this' box is fully inside 'theBox'.
Check that the box 'this' is inside the given box 'theBox' transformed by 'theTrsf'. Returns True if 'this' box is fully inside the transformed 'theBox'.
"""
@overload
def IsIn(self,theBox : Bnd_B3d,theTrsf : OCP.gp.gp_Trsf) -> bool: ...
@overload
def IsOut(self,theLine : OCP.gp.gp_Ax1,isRay : bool=False,theOverthickness : float=0.0) -> bool:
"""
Check the given point for the inclusion in the Box. Returns True if the point is outside.
Check a sphere for the intersection with the current box. Returns True if there is no intersection between boxes. If the parameter 'IsSphereHollow' is True, then the intersection is not reported for a box that is completely inside the sphere (otherwise this method would report an intersection).
Check the given box for the intersection with the current box. Returns True if there is no intersection between boxes.
Check the given box oriented by the given transformation for the intersection with the current box. Returns True if there is no intersection between boxes.
Check the given Line for the intersection with the current box. Returns True if there is no intersection. isRay==True means intersection check with the positive half-line theOverthickness is the addition to the size of the current box (may be negative). If positive, it can be treated as the thickness of the line 'theLine' or the radius of the cylinder along 'theLine'
Check the given Plane for the intersection with the current box. Returns True if there is no intersection.
"""
@overload
def IsOut(self,theCenter : OCP.gp.gp_XYZ,theRadius : float,isSphereHollow : bool=False) -> bool: ...
@overload
def IsOut(self,theOtherBox : Bnd_B3d) -> bool: ...
@overload
def IsOut(self,thePnt : OCP.gp.gp_XYZ) -> bool: ...
@overload
def IsOut(self,thePlane : OCP.gp.gp_Ax3) -> bool: ...
@overload
def IsOut(self,theOtherBox : Bnd_B3d,theTrsf : OCP.gp.gp_Trsf) -> bool: ...
def IsVoid(self) -> bool:
"""
Returns True if the box is void (non-initialized).
"""
def Limit(self,theOtherBox : Bnd_B3d) -> bool:
"""
Limit the Box by the internals of theOtherBox. Returns True if the limitation takes place, otherwise False indicating that the boxes do not intersect.
"""
def SetCenter(self,theCenter : OCP.gp.gp_XYZ) -> None:
"""
Set the Center coordinates
"""
def SetHSize(self,theHSize : OCP.gp.gp_XYZ) -> None:
"""
Set the HSize (half-diagonal) coordinates. All components of theHSize must be non-negative.
"""
def SquareExtent(self) -> float:
"""
Query the square diagonal. If the box is VOID (see method IsVoid()) then a very big real value is returned.
"""
def Transformed(self,theTrsf : OCP.gp.gp_Trsf) -> Bnd_B3d:
"""
Transform the bounding box with the given transformation. The resulting box will be larger if theTrsf contains rotation.
"""
@overload
def __init__(self,theCenter : OCP.gp.gp_XYZ,theHSize : OCP.gp.gp_XYZ) -> None: ...
@overload
def __init__(self) -> None: ...
pass
class Bnd_B3f():
"""
None
"""
@overload
def Add(self,thePnt : OCP.gp.gp_XYZ) -> None:
"""
Update the box by a point.
Update the box by a point.
Update the box by another box.
"""
@overload
def Add(self,thePnt : OCP.gp.gp_Pnt) -> None: ...
@overload
def Add(self,theBox : Bnd_B3f) -> None: ...
def Clear(self) -> None:
"""
Reset the box data.
"""
def CornerMax(self) -> OCP.gp.gp_XYZ:
"""
Query the upper corner: (Center + HSize). You must make sure that the box is NOT VOID (see IsVoid()), otherwise the method returns irrelevant result.
"""
def CornerMin(self) -> OCP.gp.gp_XYZ:
"""
Query the lower corner: (Center - HSize). You must make sure that the box is NOT VOID (see IsVoid()), otherwise the method returns irrelevant result.
"""
def Enlarge(self,theDiff : float) -> None:
"""
Extend the Box by the absolute value of theDiff.
"""
@overload
def IsIn(self,theBox : Bnd_B3f,theTrsf : OCP.gp.gp_Trsf) -> bool:
"""
Check that the box 'this' is inside the given box 'theBox'. Returns True if 'this' box is fully inside 'theBox'.
Check that the box 'this' is inside the given box 'theBox' transformed by 'theTrsf'. Returns True if 'this' box is fully inside the transformed 'theBox'.
"""
@overload
def IsIn(self,theBox : Bnd_B3f) -> bool: ...
@overload
def IsOut(self,thePlane : OCP.gp.gp_Ax3) -> bool:
"""
Check the given point for the inclusion in the Box. Returns True if the point is outside.
Check a sphere for the intersection with the current box. Returns True if there is no intersection between boxes. If the parameter 'IsSphereHollow' is True, then the intersection is not reported for a box that is completely inside the sphere (otherwise this method would report an intersection).
Check the given box for the intersection with the current box. Returns True if there is no intersection between boxes.
Check the given box oriented by the given transformation for the intersection with the current box. Returns True if there is no intersection between boxes.
Check the given Line for the intersection with the current box. Returns True if there is no intersection. isRay==True means intersection check with the positive half-line theOverthickness is the addition to the size of the current box (may be negative). If positive, it can be treated as the thickness of the line 'theLine' or the radius of the cylinder along 'theLine'
Check the given Plane for the intersection with the current box. Returns True if there is no intersection.
"""
@overload
def IsOut(self,theOtherBox : Bnd_B3f,theTrsf : OCP.gp.gp_Trsf) -> bool: ...
@overload
def IsOut(self,thePnt : OCP.gp.gp_XYZ) -> bool: ...
@overload
def IsOut(self,theOtherBox : Bnd_B3f) -> bool: ...
@overload
def IsOut(self,theCenter : OCP.gp.gp_XYZ,theRadius : float,isSphereHollow : bool=False) -> bool: ...
@overload
def IsOut(self,theLine : OCP.gp.gp_Ax1,isRay : bool=False,theOverthickness : float=0.0) -> bool: ...
def IsVoid(self) -> bool:
"""
Returns True if the box is void (non-initialized).
"""
def Limit(self,theOtherBox : Bnd_B3f) -> bool:
"""
Limit the Box by the internals of theOtherBox. Returns True if the limitation takes place, otherwise False indicating that the boxes do not intersect.
"""
def SetCenter(self,theCenter : OCP.gp.gp_XYZ) -> None:
"""
Set the Center coordinates
"""
def SetHSize(self,theHSize : OCP.gp.gp_XYZ) -> None:
"""
Set the HSize (half-diagonal) coordinates. All components of theHSize must be non-negative.
"""
def SquareExtent(self) -> float:
"""
Query the square diagonal. If the box is VOID (see method IsVoid()) then a very big real value is returned.
"""
def Transformed(self,theTrsf : OCP.gp.gp_Trsf) -> Bnd_B3f:
"""
Transform the bounding box with the given transformation. The resulting box will be larger if theTrsf contains rotation.
"""
@overload
def __init__(self,theCenter : OCP.gp.gp_XYZ,theHSize : OCP.gp.gp_XYZ) -> None: ...
@overload
def __init__(self) -> None: ...
pass
class Bnd_BoundSortBox():
"""
A tool to compare a bounding box or a plane with a set of bounding boxes. It sorts the set of bounding boxes to give the list of boxes which intersect the element being compared. The boxes being sorted generally bound a set of shapes, while the box being compared bounds a shape to be compared. The resulting list of intersecting boxes therefore gives the list of items which potentially intersect the shape to be compared.
"""
def Add(self,theBox : Bnd_Box,boxIndex : int) -> None:
"""
Adds the bounding box theBox at position boxIndex in the array of boxes to be sorted by this comparison algorithm. This function is used only in conjunction with the third syntax described in the synopsis of Initialize.
"""
@overload
def Compare(self,P : OCP.gp.gp_Pln) -> OCP.TColStd.TColStd_ListOfInteger:
"""
Compares the bounding box theBox, with the set of bounding boxes to be sorted by this comparison algorithm, and returns the list of intersecting bounding boxes as a list of indexes on the array of bounding boxes used by this algorithm.
Compares the plane P with the set of bounding boxes to be sorted by this comparison algorithm, and returns the list of intersecting bounding boxes as a list of indexes on the array of bounding boxes used by this algorithm.
"""
@overload
def Compare(self,theBox : Bnd_Box) -> OCP.TColStd.TColStd_ListOfInteger: ...
def Destroy(self) -> None:
"""
None
"""
def Dump(self) -> None:
"""
None
"""
@overload
def Initialize(self,CompleteBox : Bnd_Box,nbComponents : int) -> None:
"""
Initializes this comparison algorithm with - the set of bounding boxes SetOfBox.
Initializes this comparison algorithm with - the set of bounding boxes SetOfBox, where CompleteBox is given as the global bounding box of SetOfBox.
Initializes this comparison algorithm, giving it only - the maximum number nbComponents of the bounding boxes to be managed. Use the Add function to define the array of bounding boxes to be sorted by this algorithm.
"""
@overload
def Initialize(self,SetOfBox : Bnd_HArray1OfBox) -> None: ...
@overload
def Initialize(self,CompleteBox : Bnd_Box,SetOfBox : Bnd_HArray1OfBox) -> None: ...
def __init__(self) -> None: ...
pass
class Bnd_Box():
"""
Describes a bounding box in 3D space. A bounding box is parallel to the axes of the coordinates system. If it is finite, it is defined by the three intervals: - [ Xmin,Xmax ], - [ Ymin,Ymax ], - [ Zmin,Zmax ]. A bounding box may be infinite (i.e. open) in one or more directions. It is said to be: - OpenXmin if it is infinite on the negative side of the "X Direction"; - OpenXmax if it is infinite on the positive side of the "X Direction"; - OpenYmin if it is infinite on the negative side of the "Y Direction"; - OpenYmax if it is infinite on the positive side of the "Y Direction"; - OpenZmin if it is infinite on the negative side of the "Z Direction"; - OpenZmax if it is infinite on the positive side of the "Z Direction"; - WholeSpace if it is infinite in all six directions. In this case, any point of the space is inside the box; - Void if it is empty. In this case, there is no point included in the box. A bounding box is defined by: - six bounds (Xmin, Xmax, Ymin, Ymax, Zmin and Zmax) which limit the bounding box if it is finite, - eight flags (OpenXmin, OpenXmax, OpenYmin, OpenYmax, OpenZmin, OpenZmax, WholeSpace and Void) which describe the bounding box if it is infinite or empty, and - a gap, which is included on both sides in any direction when consulting the finite bounds of the box.
"""
@overload
def Add(self,D : OCP.gp.gp_Dir) -> None:
"""
Adds the box <Other> to <me>.
Adds a Pnt to the box.
Extends <me> from the Pnt <P> in the direction <D>.
Extends the Box in the given Direction, i.e. adds an half-line. The box may become infinite in 1,2 or 3 directions.
"""
@overload
def Add(self,P : OCP.gp.gp_Pnt,D : OCP.gp.gp_Dir) -> None: ...
@overload
def Add(self,P : OCP.gp.gp_Pnt) -> None: ...
@overload
def Add(self,Other : Bnd_Box) -> None: ...
def CornerMax(self) -> OCP.gp.gp_Pnt:
"""
Returns the upper corner of this bounding box. The gap is included. If this bounding box is infinite (i.e. "open"), returned values may be equal to +/- Precision::Infinite(). Standard_ConstructionError exception will be thrown if the box is void. if IsVoid()
"""
def CornerMin(self) -> OCP.gp.gp_Pnt:
"""
Returns the lower corner of this bounding box. The gap is included. If this bounding box is infinite (i.e. "open"), returned values may be equal to +/- Precision::Infinite(). Standard_ConstructionError exception will be thrown if the box is void. if IsVoid()
"""
def Distance(self,Other : Bnd_Box) -> float:
"""
Computes the minimum distance between two boxes.
"""
def Dump(self) -> None:
"""
None
"""
def DumpJson(self,theOStream : io.BytesIO,theDepth : int=-1) -> None:
"""
Dumps the content of me into the stream
"""
def Enlarge(self,Tol : float) -> None:
"""
Enlarges the box with a tolerance value. (minvalues-Abs(<tol>) and maxvalues+Abs(<tol>)) This means that the minimum values of its X, Y and Z intervals of definition, when they are finite, are reduced by the absolute value of Tol, while the maximum values are increased by the same amount.
"""
def FinitePart(self) -> Bnd_Box:
"""
Returns a finite part of an infinite bounding box (returns self if this is already finite box). This can be a Void box in case if its sides has been defined as infinite (Open) without adding any finite points. WARNING! This method relies on Open flags, the infinite points added using Add() method will be returned as is.
"""
def Get(self) -> tuple[float, float, float, float, float, float]:
"""
Returns the bounds of this bounding box. The gap is included. If this bounding box is infinite (i.e. "open"), returned values may be equal to +/- Precision::Infinite(). Standard_ConstructionError exception will be thrown if the box is void. if IsVoid()
"""
def GetGap(self) -> float:
"""
Returns the gap of this bounding box.
"""
def HasFinitePart(self) -> bool:
"""
Returns TRUE if this box has finite part.
"""
def InitFromJson(self,theSStream : Any,theStreamPos : int) -> bool:
"""
Inits the content of me from the stream
"""
def IsOpen(self) -> bool:
"""
Returns true if this bounding box has at least one open direction.
"""
def IsOpenXmax(self) -> bool:
"""
Returns true if this bounding box is open in the Xmax direction.
"""
def IsOpenXmin(self) -> bool:
"""
Returns true if this bounding box is open in the Xmin direction.
"""
def IsOpenYmax(self) -> bool:
"""
Returns true if this bounding box is open in the Ymax direction.
"""
def IsOpenYmin(self) -> bool:
"""
Returns true if this bounding box is open in the Ymix direction.
"""
def IsOpenZmax(self) -> bool:
"""
Returns true if this bounding box is open in the Zmax direction.
"""
def IsOpenZmin(self) -> bool:
"""
Returns true if this bounding box is open in the Zmin direction.
"""
@overload
def IsOut(self,L : OCP.gp.gp_Lin) -> bool:
"""
Returns True if the Pnt is out the box.
Returns False if the line intersects the box.
Returns False if the plane intersects the box.
Returns False if the <Box> intersects or is inside <me>.
Returns False if the transformed <Box> intersects or is inside <me>.
Returns False if the transformed <Box> intersects or is inside the transformed box <me>.
Returns False if the flat band lying between two parallel lines represented by their reference points <P1>, <P2> and direction <D> intersects the box.
"""
@overload
def IsOut(self,T1 : OCP.gp.gp_Trsf,Other : Bnd_Box,T2 : OCP.gp.gp_Trsf) -> bool: ...
@overload
def IsOut(self,P : OCP.gp.gp_Pnt) -> bool: ...
@overload
def IsOut(self,Other : Bnd_Box) -> bool: ...
@overload
def IsOut(self,Other : Bnd_Box,T : OCP.gp.gp_Trsf) -> bool: ...
@overload
def IsOut(self,P1 : OCP.gp.gp_Pnt,P2 : OCP.gp.gp_Pnt,D : OCP.gp.gp_Dir) -> bool: ...
@overload
def IsOut(self,P : OCP.gp.gp_Pln) -> bool: ...
def IsThin(self,tol : float) -> bool:
"""
Returns true if IsXThin, IsYThin and IsZThin are all true, i.e. if the box is thin in all three dimensions.
"""
def IsVoid(self) -> bool:
"""
Returns true if this bounding box is empty (Void flag).
"""
def IsWhole(self) -> bool:
"""
Returns true if this bounding box is infinite in all 6 directions (WholeSpace flag).
"""
def IsXThin(self,tol : float) -> bool:
"""
true if xmax-xmin < tol.
"""
def IsYThin(self,tol : float) -> bool:
"""
true if ymax-ymin < tol.
"""
def IsZThin(self,tol : float) -> bool:
"""
true if zmax-zmin < tol.
"""
def OpenXmax(self) -> None:
"""
The Box will be infinitely long in the Xmax direction.
"""
def OpenXmin(self) -> None:
"""
The Box will be infinitely long in the Xmin direction.
"""
def OpenYmax(self) -> None:
"""
The Box will be infinitely long in the Ymax direction.
"""
def OpenYmin(self) -> None:
"""
The Box will be infinitely long in the Ymin direction.
"""
def OpenZmax(self) -> None:
"""
The Box will be infinitely long in the Zmax direction.
"""
def OpenZmin(self) -> None:
"""
The Box will be infinitely long in the Zmin direction.
"""
@overload
def Set(self,P : OCP.gp.gp_Pnt) -> None:
"""
Sets this bounding box so that it bounds - the point P. This involves first setting this bounding box to be void and then adding the point P.
Sets this bounding box so that it bounds the half-line defined by point P and direction D, i.e. all points M defined by M=P+u*D, where u is greater than or equal to 0, are inside the bounding volume. This involves first setting this box to be void and then adding the half-line.
"""
@overload
def Set(self,P : OCP.gp.gp_Pnt,D : OCP.gp.gp_Dir) -> None: ...
def SetGap(self,Tol : float) -> None:
"""
Set the gap of this bounding box to abs(Tol).
"""
def SetVoid(self) -> None:
"""
Sets this bounding box so that it is empty. All points are outside a void box.
"""
def SetWhole(self) -> None:
"""
Sets this bounding box so that it covers the whole of 3D space. It is infinitely long in all directions.
"""
def SquareExtent(self) -> float:
"""
Computes the squared diagonal of me.
"""
def Transformed(self,T : OCP.gp.gp_Trsf) -> Bnd_Box:
"""
Returns a bounding box which is the result of applying the transformation T to this bounding box. Warning Applying a geometric transformation (for example, a rotation) to a bounding box generally increases its dimensions. This is not optimal for algorithms which use it.
"""
@overload
def Update(self,aXmin : float,aYmin : float,aZmin : float,aXmax : float,aYmax : float,aZmax : float) -> None:
"""
Enlarges this bounding box, if required, so that it contains at least: - interval [ aXmin,aXmax ] in the "X Direction", - interval [ aYmin,aYmax ] in the "Y Direction", - interval [ aZmin,aZmax ] in the "Z Direction";
Adds a point of coordinates (X,Y,Z) to this bounding box.
"""
@overload
def Update(self,X : float,Y : float,Z : float) -> None: ...
@overload
def __init__(self,theMin : OCP.gp.gp_Pnt,theMax : OCP.gp.gp_Pnt) -> None: ...
@overload
def __init__(self) -> None: ...
pass
class Bnd_Box2d():
"""
Describes a bounding box in 2D space. A bounding box is parallel to the axes of the coordinates system. If it is finite, it is defined by the two intervals: - [ Xmin,Xmax ], and - [ Ymin,Ymax ]. A bounding box may be infinite (i.e. open) in one or more directions. It is said to be: - OpenXmin if it is infinite on the negative side of the "X Direction"; - OpenXmax if it is infinite on the positive side of the "X Direction"; - OpenYmin if it is infinite on the negative side of the "Y Direction"; - OpenYmax if it is infinite on the positive side of the "Y Direction"; - WholeSpace if it is infinite in all four directions. In this case, any point of the space is inside the box; - Void if it is empty. In this case, there is no point included in the box. A bounding box is defined by four bounds (Xmin, Xmax, Ymin and Ymax) which limit the bounding box if it is finite, six flags (OpenXmin, OpenXmax, OpenYmin, OpenYmax, WholeSpace and Void) which describe the bounding box if it is infinite or empty, and - a gap, which is included on both sides in any direction when consulting the finite bounds of the box.
"""
@overload
def Add(self,Other : Bnd_Box2d) -> None:
"""
Adds the 2d box <Other> to <me>.
Adds the 2d point.
Extends bounding box from thePnt in the direction theDir.
Extends the Box in the given Direction, i.e. adds a half-line. The box may become infinite in 1 or 2 directions.
"""
@overload
def Add(self,thePnt : OCP.gp.gp_Pnt2d,theDir : OCP.gp.gp_Dir2d) -> None: ...
@overload
def Add(self,D : OCP.gp.gp_Dir2d) -> None: ...
@overload
def Add(self,thePnt : OCP.gp.gp_Pnt2d) -> None: ...
def Dump(self) -> None:
"""
None
"""
def Enlarge(self,theTol : float) -> None:
"""
Enlarges the box with a tolerance value. This means that the minimum values of its X and Y intervals of definition, when they are finite, are reduced by the absolute value of Tol, while the maximum values are increased by the same amount.
"""
def Get(self) -> tuple[float, float, float, float]:
"""
Returns the bounds of this 2D bounding box. The gap is included. If this bounding box is infinite (i.e. "open"), returned values may be equal to +/- Precision::Infinite(). if IsVoid()
"""
def GetGap(self) -> float:
"""
Returns the gap of this 2D bounding box.
"""
def IsOpenXmax(self) -> bool:
"""
Returns true if this bounding box is open in the Xmax direction.
"""
def IsOpenXmin(self) -> bool:
"""
Returns true if this bounding box is open in the Xmin direction.
"""
def IsOpenYmax(self) -> bool:
"""
Returns true if this bounding box is open in the Ymax direction.
"""
def IsOpenYmin(self) -> bool:
"""
Returns true if this bounding box is open in the Ymin direction.
"""
@overload
def IsOut(self,Other : Bnd_Box2d) -> bool:
"""
Returns True if the 2d pnt <P> is out <me>.
Returns True if the line doesn't intersect the box.
Returns True if the segment doesn't intersect the box.
Returns True if <Box2d> is out <me>.
Returns True if transformed <Box2d> is out <me>.
Compares a transformed bounding with a transformed bounding. The default implementation is to make a copy of <me> and <Other>, to transform them and to test.
"""
@overload
def IsOut(self,theP0 : OCP.gp.gp_Pnt2d,theP1 : OCP.gp.gp_Pnt2d) -> bool: ...
@overload
def IsOut(self,T1 : OCP.gp.gp_Trsf2d,Other : Bnd_Box2d,T2 : OCP.gp.gp_Trsf2d) -> bool: ...
@overload
def IsOut(self,theL : OCP.gp.gp_Lin2d) -> bool: ...
@overload
def IsOut(self,P : OCP.gp.gp_Pnt2d) -> bool: ...
@overload
def IsOut(self,theOther : Bnd_Box2d,theTrsf : OCP.gp.gp_Trsf2d) -> bool: ...
def IsVoid(self) -> bool:
"""
Returns true if this 2D bounding box is empty (Void flag).
"""
def IsWhole(self) -> bool:
"""
Returns true if this bounding box is infinite in all 4 directions (Whole Space flag).
"""
def OpenXmax(self) -> None:
"""
The Box will be infinitely long in the Xmax direction.
"""
def OpenXmin(self) -> None:
"""
The Box will be infinitely long in the Xmin direction.
"""
def OpenYmax(self) -> None:
"""
The Box will be infinitely long in the Ymax direction.
"""
def OpenYmin(self) -> None:
"""
The Box will be infinitely long in the Ymin direction.
"""
@overload
def Set(self,thePnt : OCP.gp.gp_Pnt2d) -> None:
"""
Sets this 2D bounding box so that it bounds the point P. This involves first setting this bounding box to be void and then adding the point PThe rectangle bounds the point <P>.
Sets this 2D bounding box so that it bounds the half-line defined by point P and direction D, i.e. all points M defined by M=P+u*D, where u is greater than or equal to 0, are inside the bounding area. This involves first setting this 2D box to be void and then adding the half-line.
"""
@overload
def Set(self,thePnt : OCP.gp.gp_Pnt2d,theDir : OCP.gp.gp_Dir2d) -> None: ...
def SetGap(self,Tol : float) -> None:
"""
Set the gap of this 2D bounding box to abs(Tol).
"""
def SetVoid(self) -> None:
"""
Sets this 2D bounding box so that it is empty. All points are outside a void box.
"""
def SetWhole(self) -> None:
"""
Sets this bounding box so that it covers the whole 2D space, i.e. it is infinite in all directions.
"""
def SquareExtent(self) -> float:
"""
Computes the squared diagonal of me.
"""
def Transformed(self,T : OCP.gp.gp_Trsf2d) -> Bnd_Box2d:
"""
Returns a bounding box which is the result of applying the transformation T to this bounding box. Warning Applying a geometric transformation (for example, a rotation) to a bounding box generally increases its dimensions. This is not optimal for algorithms which use it.
"""
@overload
def Update(self,aXmin : float,aYmin : float,aXmax : float,aYmax : float) -> None:
"""
Enlarges this 2D bounding box, if required, so that it contains at least: - interval [ aXmin,aXmax ] in the "X Direction", - interval [ aYmin,aYmax ] in the "Y Direction"
Adds a point of coordinates (X,Y) to this bounding box.
"""
@overload
def Update(self,X : float,Y : float) -> None: ...
def __init__(self) -> None: ...
pass
class Bnd_HArray1OfBox(Bnd_Array1OfBox, OCP.Standard.Standard_Transient):
def Array1(self) -> Bnd_Array1OfBox:
"""
None
"""
def Assign(self,theOther : Bnd_Array1OfBox) -> Bnd_Array1OfBox:
"""
Copies data of theOther array to this. This array should be pre-allocated and have the same length as theOther; otherwise exception Standard_DimensionMismatch is thrown.
"""
def ChangeArray1(self) -> Bnd_Array1OfBox:
"""
None
"""
def DecrementRefCounter(self) -> int:
"""
Decrements the reference counter of this object; returns the decremented value
"""
def Delete(self) -> None:
"""
Memory deallocator for transient classes
"""
def DynamicType(self) -> OCP.Standard.Standard_Type:
"""
None
"""
def GetRefCount(self) -> int:
"""
Get the reference counter of this object
"""
def IncrementRefCounter(self) -> None:
"""
Increments the reference counter of this object
"""
def Init(self,theValue : Bnd_Box) -> None:
"""
Initialise the items with theValue
"""
def IsDeletable(self) -> bool:
"""
None
"""
def IsEmpty(self) -> bool:
"""
Return TRUE if array has zero length.
"""
@overload
def IsInstance(self,theType : OCP.Standard.Standard_Type) -> bool:
"""
Returns a true value if this is an instance of Type.
Returns a true value if this is an instance of TypeName.
"""
@overload
def IsInstance(self,theTypeName : str) -> bool: ...
@overload
def IsKind(self,theTypeName : str) -> bool:
"""
Returns true if this is an instance of Type or an instance of any class that inherits from Type. Note that multiple inheritance is not supported by OCCT RTTI mechanism.
Returns true if this is an instance of TypeName or an instance of any class that inherits from TypeName. Note that multiple inheritance is not supported by OCCT RTTI mechanism.
"""
@overload
def IsKind(self,theType : OCP.Standard.Standard_Type) -> bool: ...
def Length(self) -> int:
"""
Length query (the same)
"""
def Lower(self) -> int:
"""
Lower bound
"""
def Move(self,theOther : Bnd_Array1OfBox) -> Bnd_Array1OfBox:
"""
None
"""
def Resize(self,theLower : int,theUpper : int,theToCopyData : bool) -> None:
"""
Resizes the array to specified bounds. No re-allocation will be done if length of array does not change, but existing values will not be discarded if theToCopyData set to FALSE.
"""
def SetValue(self,theIndex : int,theItem : Bnd_Box) -> None:
"""
Set value
"""
def Size(self) -> int:
"""
Size query
"""
def This(self) -> OCP.Standard.Standard_Transient:
"""
Returns non-const pointer to this object (like const_cast). For protection against creating handle to objects allocated in stack or call from constructor, it will raise exception Standard_ProgramError if reference counter is zero.
"""
def UpdateLowerBound(self,theLower : int) -> None:
"""
Changes the lowest bound. Do not move data
"""
def UpdateUpperBound(self,theUpper : int) -> None:
"""
Changes the upper bound. Do not move data
"""
def Upper(self) -> int:
"""
Upper bound
"""
def __bool__(self) -> bool: ...
def __call__(self,theIndex : int) -> Bnd_Box: ...
@overload
def __init__(self,theBegin : Bnd_Box,theLower : int,theUpper : int,arg4 : bool) -> None: ...
@overload
def __init__(self,theLower : int,theUpper : int,theValue : Bnd_Box) -> None: ...
@overload
def __init__(self,theOther : Bnd_Array1OfBox) -> None: ...
@overload
def __init__(self,theLower : int,theUpper : int) -> None: ...
@overload
def __init__(self) -> None: ...
def __iter__(self) -> Iterator[Bnd_Box]: ...
def __len__(self) -> int: ...
@staticmethod
def get_type_descriptor_s() -> OCP.Standard.Standard_Type:
"""
None
"""
@staticmethod
def get_type_name_s() -> str:
"""
None
"""
pass
class Bnd_HArray1OfBox2d(Bnd_Array1OfBox2d, OCP.Standard.Standard_Transient):
def Array1(self) -> Bnd_Array1OfBox2d:
"""
None
"""
def Assign(self,theOther : Bnd_Array1OfBox2d) -> Bnd_Array1OfBox2d:
"""
Copies data of theOther array to this. This array should be pre-allocated and have the same length as theOther; otherwise exception Standard_DimensionMismatch is thrown.
"""
def ChangeArray1(self) -> Bnd_Array1OfBox2d:
"""
None
"""
def DecrementRefCounter(self) -> int:
"""
Decrements the reference counter of this object; returns the decremented value
"""
def Delete(self) -> None:
"""
Memory deallocator for transient classes
"""
def DynamicType(self) -> OCP.Standard.Standard_Type:
"""
None
"""
def GetRefCount(self) -> int:
"""
Get the reference counter of this object
"""
def IncrementRefCounter(self) -> None:
"""
Increments the reference counter of this object
"""
def Init(self,theValue : Bnd_Box2d) -> None:
"""
Initialise the items with theValue
"""
def IsDeletable(self) -> bool:
"""
None
"""
def IsEmpty(self) -> bool:
"""
Return TRUE if array has zero length.
"""
@overload
def IsInstance(self,theType : OCP.Standard.Standard_Type) -> bool:
"""
Returns a true value if this is an instance of Type.
Returns a true value if this is an instance of TypeName.
"""
@overload
def IsInstance(self,theTypeName : str) -> bool: ...
@overload
def IsKind(self,theTypeName : str) -> bool:
"""
Returns true if this is an instance of Type or an instance of any class that inherits from Type. Note that multiple inheritance is not supported by OCCT RTTI mechanism.
Returns true if this is an instance of TypeName or an instance of any class that inherits from TypeName. Note that multiple inheritance is not supported by OCCT RTTI mechanism.
"""
@overload
def IsKind(self,theType : OCP.Standard.Standard_Type) -> bool: ...
def Length(self) -> int:
"""
Length query (the same)
"""
def Lower(self) -> int:
"""
Lower bound
"""
def Move(self,theOther : Bnd_Array1OfBox2d) -> Bnd_Array1OfBox2d:
"""
None
"""
def Resize(self,theLower : int,theUpper : int,theToCopyData : bool) -> None:
"""
Resizes the array to specified bounds. No re-allocation will be done if length of array does not change, but existing values will not be discarded if theToCopyData set to FALSE.
"""
def SetValue(self,theIndex : int,theItem : Bnd_Box2d) -> None:
"""
Set value
"""
def Size(self) -> int:
"""
Size query
"""
def This(self) -> OCP.Standard.Standard_Transient:
"""
Returns non-const pointer to this object (like const_cast). For protection against creating handle to objects allocated in stack or call from constructor, it will raise exception Standard_ProgramError if reference counter is zero.
"""
def UpdateLowerBound(self,theLower : int) -> None:
"""
Changes the lowest bound. Do not move data
"""
def UpdateUpperBound(self,theUpper : int) -> None:
"""
Changes the upper bound. Do not move data
"""
def Upper(self) -> int:
"""
Upper bound
"""
def __bool__(self) -> bool: ...
def __call__(self,theIndex : int) -> Bnd_Box2d: ...
@overload
def __init__(self) -> None: ...
@overload
def __init__(self,theLower : int,theUpper : int,theValue : Bnd_Box2d) -> None: ...
@overload
def __init__(self,theLower : int,theUpper : int) -> None: ...
@overload
def __init__(self,theOther : Bnd_Array1OfBox2d) -> None: ...
@overload
def __init__(self,theBegin : Bnd_Box2d,theLower : int,theUpper : int,arg4 : bool) -> None: ...
def __iter__(self) -> Iterator[Bnd_Box2d]: ...
def __len__(self) -> int: ...
@staticmethod
def get_type_descriptor_s() -> OCP.Standard.Standard_Type:
"""
None
"""
@staticmethod
def get_type_name_s() -> str:
"""
None
"""
pass
class Bnd_HArray1OfSphere(Bnd_Array1OfSphere, OCP.Standard.Standard_Transient):
def Array1(self) -> Bnd_Array1OfSphere:
"""
None
"""
def Assign(self,theOther : Bnd_Array1OfSphere) -> Bnd_Array1OfSphere:
"""
Copies data of theOther array to this. This array should be pre-allocated and have the same length as theOther; otherwise exception Standard_DimensionMismatch is thrown.
"""
def ChangeArray1(self) -> Bnd_Array1OfSphere:
"""
None
"""
def DecrementRefCounter(self) -> int:
"""
Decrements the reference counter of this object; returns the decremented value
"""
def Delete(self) -> None:
"""
Memory deallocator for transient classes
"""
def DynamicType(self) -> OCP.Standard.Standard_Type:
"""
None
"""
def GetRefCount(self) -> int:
"""
Get the reference counter of this object
"""
def IncrementRefCounter(self) -> None:
"""
Increments the reference counter of this object
"""
def Init(self,theValue : Bnd_Sphere) -> None:
"""
Initialise the items with theValue
"""
def IsDeletable(self) -> bool:
"""
None
"""
def IsEmpty(self) -> bool:
"""
Return TRUE if array has zero length.
"""
@overload
def IsInstance(self,theType : OCP.Standard.Standard_Type) -> bool:
"""
Returns a true value if this is an instance of Type.
Returns a true value if this is an instance of TypeName.
"""
@overload
def IsInstance(self,theTypeName : str) -> bool: ...
@overload
def IsKind(self,theTypeName : str) -> bool:
"""
Returns true if this is an instance of Type or an instance of any class that inherits from Type. Note that multiple inheritance is not supported by OCCT RTTI mechanism.
Returns true if this is an instance of TypeName or an instance of any class that inherits from TypeName. Note that multiple inheritance is not supported by OCCT RTTI mechanism.
"""
@overload
def IsKind(self,theType : OCP.Standard.Standard_Type) -> bool: ...
def Length(self) -> int:
"""
Length query (the same)
"""
def Lower(self) -> int:
"""
Lower bound
"""
def Move(self,theOther : Bnd_Array1OfSphere) -> Bnd_Array1OfSphere:
"""
None
"""
def Resize(self,theLower : int,theUpper : int,theToCopyData : bool) -> None:
"""
Resizes the array to specified bounds. No re-allocation will be done if length of array does not change, but existing values will not be discarded if theToCopyData set to FALSE.
"""
def SetValue(self,theIndex : int,theItem : Bnd_Sphere) -> None:
"""
Set value
"""
def Size(self) -> int:
"""
Size query
"""
def This(self) -> OCP.Standard.Standard_Transient:
"""
Returns non-const pointer to this object (like const_cast). For protection against creating handle to objects allocated in stack or call from constructor, it will raise exception Standard_ProgramError if reference counter is zero.
"""
def UpdateLowerBound(self,theLower : int) -> None:
"""
Changes the lowest bound. Do not move data
"""
def UpdateUpperBound(self,theUpper : int) -> None:
"""
Changes the upper bound. Do not move data
"""
def Upper(self) -> int:
"""
Upper bound
"""
def __bool__(self) -> bool: ...
def __call__(self,theIndex : int) -> Bnd_Sphere: ...
@overload
def __init__(self,theBegin : Bnd_Sphere,theLower : int,theUpper : int,arg4 : bool) -> None: ...
@overload
def __init__(self,theLower : int,theUpper : int,theValue : Bnd_Sphere) -> None: ...
@overload
def __init__(self,theLower : int,theUpper : int) -> None: ...
@overload
def __init__(self) -> None: ...
@overload
def __init__(self,theOther : Bnd_Array1OfSphere) -> None: ...
def __iter__(self) -> Iterator[Bnd_Sphere]: ...
def __len__(self) -> int: ...
@staticmethod
def get_type_descriptor_s() -> OCP.Standard.Standard_Type:
"""
None
"""
@staticmethod
def get_type_name_s() -> str:
"""
None
"""
pass
class Bnd_OBB():
"""
The class describes the Oriented Bounding Box (OBB), much tighter enclosing volume for the shape than the Axis Aligned Bounding Box (AABB). The OBB is defined by a center of the box, the axes and the halves of its three dimensions. The OBB can be used more effectively than AABB as a rejection mechanism for non-interfering objects.
"""
@overload
def Add(self,theP : OCP.gp.gp_Pnt) -> None:
"""
Rebuilds this in order to include all previous objects (which it was created from) and theOther.
Rebuilds this in order to include all previous objects (which it was created from) and theP.
"""
@overload
def Add(self,theOther : Bnd_OBB) -> None: ...
def Center(self) -> OCP.gp.gp_XYZ:
"""
Returns the center of OBB
"""
def DumpJson(self,theOStream : io.BytesIO,theDepth : int=-1) -> None:
"""
Dumps the content of me into the stream
"""
def Enlarge(self,theGapAdd : float) -> None:
"""
Enlarges the box with the given value
"""
def GetVertex(self,theP : OCP.gp.gp_Pnt) -> bool:
"""
Returns the array of vertices in <this>. The local coordinate of the vertex depending on the index of the array are follow: Index == 0: (-XHSize(), -YHSize(), -ZHSize()) Index == 1: ( XHSize(), -YHSize(), -ZHSize()) Index == 2: (-XHSize(), YHSize(), -ZHSize()) Index == 3: ( XHSize(), YHSize(), -ZHSize()) Index == 4: (-XHSize(), -YHSize(), ZHSize()) Index == 5: ( XHSize(), -YHSize(), ZHSize()) Index == 6: (-XHSize(), YHSize(), ZHSize()) Index == 7: ( XHSize(), YHSize(), ZHSize()).
"""
def IsAABox(self) -> bool:
"""
Returns TRUE if the box is axes aligned
"""
def IsCompletelyInside(self,theOther : Bnd_OBB) -> bool:
"""
Check if the theOther is completely inside *this.
"""
@overload
def IsOut(self,theOther : Bnd_OBB) -> bool:
"""
Check if the box do not interfere the other box.
Check if the point is inside of <this>.
"""
@overload
def IsOut(self,theP : OCP.gp.gp_Pnt) -> bool: ...
def IsVoid(self) -> bool:
"""
Checks if the box is empty.
"""
def Position(self) -> OCP.gp.gp_Ax3:
"""
Returns the local coordinates system of this oriented box. So that applying it to axis-aligned box ((-XHSize, -YHSize, -ZHSize), (XHSize, YHSize, ZHSize)) will produce this oriented box.
"""
def ReBuild(self,theListOfPoints : OCP.TColgp.TColgp_Array1OfPnt,theListOfTolerances : OCP.TColStd.TColStd_Array1OfReal=None,theIsOptimal : bool=False) -> None:
"""
Creates new OBB covering every point in theListOfPoints. Tolerance of every such point is set by *theListOfTolerances array. If this array is not void (not null-pointer) then the resulted Bnd_OBB will be enlarged using tolerances of points lying on the box surface. <theIsOptimal> flag defines the mode in which the OBB will be built. Constructing Optimal box takes more time, but the resulting box is usually more tight. In case of construction of Optimal OBB more possible axes are checked.
"""
def SetAABox(self,theFlag : bool) -> None:
"""
Sets the flag for axes aligned box
"""
def SetCenter(self,theCenter : OCP.gp.gp_Pnt) -> None:
"""
Sets the center of OBB
"""
def SetVoid(self) -> None:
"""
Clears this box
"""
def SetXComponent(self,theXDirection : OCP.gp.gp_Dir,theHXSize : float) -> None:
"""
Sets the X component of OBB - direction and size
"""
def SetYComponent(self,theYDirection : OCP.gp.gp_Dir,theHYSize : float) -> None:
"""
Sets the Y component of OBB - direction and size
"""
def SetZComponent(self,theZDirection : OCP.gp.gp_Dir,theHZSize : float) -> None:
"""
Sets the Z component of OBB - direction and size
"""
def SquareExtent(self) -> float:
"""
Returns square diagonal of this box
"""
def XDirection(self) -> OCP.gp.gp_XYZ:
"""
Returns the X Direction of OBB
"""
def XHSize(self) -> float:
"""
Returns the X Dimension of OBB
"""
def YDirection(self) -> OCP.gp.gp_XYZ:
"""
Returns the Y Direction of OBB
"""
def YHSize(self) -> float:
"""
Returns the Y Dimension of OBB
"""
def ZDirection(self) -> OCP.gp.gp_XYZ:
"""
Returns the Z Direction of OBB
"""
def ZHSize(self) -> float:
"""
Returns the Z Dimension of OBB
"""
@overload
def __init__(self,theCenter : OCP.gp.gp_Pnt,theXDirection : OCP.gp.gp_Dir,theYDirection : OCP.gp.gp_Dir,theZDirection : OCP.gp.gp_Dir,theHXSize : float,theHYSize : float,theHZSize : float) -> None: ...
@overload
def __init__(self) -> None: ...
@overload
def __init__(self,theBox : Bnd_Box) -> None: ...
pass
class Bnd_Range():
"""
This class describes a range in 1D space restricted by two real values. A range can be void indicating there is no point included in the range.
"""
@overload
def Add(self,theParameter : float) -> None:
"""
Extends <this> to include theParameter
Extends this range to include both ranges.
"""
@overload
def Add(self,theRange : Bnd_Range) -> None: ...
def Common(self,theOther : Bnd_Range) -> None:
"""
Replaces <this> with common-part of <this> and theOther
"""
def Delta(self) -> float:
"""
Returns range value (MAX-MIN). Returns negative value for VOID range.
"""
def DumpJson(self,theOStream : io.BytesIO,theDepth : int=-1) -> None:
"""
Dumps the content of me into the stream
"""
def Enlarge(self,theDelta : float) -> None:
"""
Extends this to the given value (in both side)
"""
def GetBounds(self,theFirstPar : float,theLastPar : float) -> bool:
"""
Obtain first and last boundary of <this>. If <this> is VOID the method returns false.
"""
def GetIntermediatePoint(self,theLambda : float,theParameter : float) -> bool:
"""
Obtain theParameter satisfied to the equation (theParameter-MIN)/(MAX-MIN) == theLambda. * theLambda == 0 --> MIN boundary will be returned; * theLambda == 0.5 --> Middle point will be returned; * theLambda == 1 --> MAX boundary will be returned; * theLambda < 0 --> the value less than MIN will be returned; * theLambda > 1 --> the value greater than MAX will be returned. If <this> is VOID the method returns false.
"""
def GetMax(self,thePar : float) -> bool:
"""
Obtain MAX boundary of <this>. If <this> is VOID the method returns false.
"""
def GetMin(self,thePar : float) -> bool:
"""
Obtain MIN boundary of <this>. If <this> is VOID the method returns false.
"""
def IsIntersected(self,theVal : float,thePeriod : float=0.0) -> int:
"""
Checks if <this> intersects values like theVal+k*thePeriod, where k is an integer number (k = 0, +/-1, +/-2, ...). Returns: 0 - if <this> does not intersect the theVal+k*thePeriod. 1 - if <this> intersects theVal+k*thePeriod. 2 - if myFirst or/and myLast are equal to theVal+k*thePeriod.
"""
@overload
def IsOut(self,theValue : float) -> bool:
"""
Returns True if the value is out of this range.
Returns True if the given range is out of this range.
"""
@overload
def IsOut(self,theRange : Bnd_Range) -> bool: ...
def IsVoid(self) -> bool:
"""
Is <this> initialized.
"""
def SetVoid(self) -> None:
"""
Initializes <this> by default parameters. Makes <this> VOID.
"""
def Shift(self,theVal : float) -> None:
"""
Shifts <*this> by theVal
"""
def Shifted(self,theVal : float) -> Bnd_Range:
"""
Returns the copy of <*this> shifted by theVal
"""
def Split(self,theVal : float,theList : Any,thePeriod : float=0.0) -> None:
"""
Splits <this> to several sub-ranges by theVal value (e.g. range [3, 15] will be split by theVal==5 to the two ranges: [3, 5] and [5, 15]). New ranges will be pushed to theList (theList must be initialized correctly before calling this method). If thePeriod != 0.0 then at least one boundary of new ranges (if <*this> intersects theVal+k*thePeriod) will be equal to theVal+thePeriod*k, where k is an integer number (k = 0, +/-1, +/-2, ...). (let thePeriod in above example be 4 ==> we will obtain four ranges: [3, 5], [5, 9], [9, 13] and [13, 15].
"""
def TrimFrom(self,theValLower : float) -> None:
"""
Trims the First value in range by the given lower limit. Marks range as Void if the given Lower value is greater than range Max.
"""
def TrimTo(self,theValUpper : float) -> None:
"""
Trim the Last value in range by the given Upper limit. Marks range as Void if the given Upper value is smaller than range Max.
"""
def Union(self,theOther : Bnd_Range) -> bool:
"""
Joins *this and theOther to one interval. Replaces *this to the result. Returns false if the operation cannot be done (e.g. input arguments are empty or separated).
"""
@overload
def __init__(self,theMin : float,theMax : float) -> None: ...
@overload
def __init__(self) -> None: ...
pass
class Bnd_Sphere():
"""
This class represents a bounding sphere of a geometric entity (triangle, segment of line or whatever else).
"""
def Add(self,theOther : Bnd_Sphere) -> None:
"""
None
"""
def Center(self) -> OCP.gp.gp_XYZ:
"""
Returns center of sphere object
Returns center of sphere object
"""
def Distance(self,theNode : OCP.gp.gp_XYZ) -> float:
"""
None
"""
def Distances(self,theXYZ : OCP.gp.gp_XYZ) -> tuple[float, float]:
"""
Calculate and return minimal and maximal distance to sphere. NOTE: This function is tightly optimized; any modifications may affect performance!
"""
@overload
def IsOut(self,thePnt : OCP.gp.gp_XYZ,theMaxDist : float) -> bool:
"""
None
None
"""
@overload
def IsOut(self,theOther : Bnd_Sphere) -> bool: ...
def IsValid(self) -> bool:
"""
Returns validity status, indicating that this sphere corresponds to a real entity
Returns validity status, indicating that this sphere corresponds to a real entity
"""
def Project(self,theNode : OCP.gp.gp_XYZ,theProjNode : OCP.gp.gp_XYZ,theDist : float,theInside : bool) -> bool:
"""
Projects a point on entity. Returns true if success
"""
def Radius(self) -> float:
"""
Returns the radius value
Returns the radius value
"""
def SetValid(self,isValid : bool) -> None:
"""
None
None
"""
def SquareDistance(self,theNode : OCP.gp.gp_XYZ) -> float:
"""
None
"""
def SquareDistances(self,theXYZ : OCP.gp.gp_XYZ) -> tuple[float, float]:
"""
Calculate and return minimal and maximal distance to sphere. NOTE: This function is tightly optimized; any modifications may affect performance!
"""
def SquareExtent(self) -> float:
"""
None
"""
def U(self) -> int:
"""
Returns the U parameter on shape
Returns the U parameter on shape
"""
def V(self) -> int:
"""
Returns the V parameter on shape
Returns the V parameter on shape
"""
@overload
def __init__(self,theCntr : OCP.gp.gp_XYZ,theRad : float,theU : int,theV : int) -> None: ...
@overload
def __init__(self) -> None: ...
pass
class Bnd_Tools():
"""
Defines a set of static methods operating with bounding boxes
"""
@staticmethod
@overload
def Bnd2BVH_s(theBox : Bnd_Box2d) -> Any:
"""
Converts the given Bnd_Box2d to BVH_Box
Converts the given Bnd_Box to BVH_Box
"""
@staticmethod
@overload
def Bnd2BVH_s(theBox : Bnd_Box) -> Any: ...
def __init__(self) -> None: ...
pass
|