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
|
import OCP.IntSurf
from typing import *
from typing import Iterable as iterable
from typing import Iterator as iterator
from numpy import float64
_Shape = Tuple[int, ...]
import OCP.NCollection
import OCP.gp
import OCP.Standard
import OCP.Adaptor3d
import OCP.GeomAbs
__all__ = [
"IntSurf",
"IntSurf_Couple",
"IntSurf_InteriorPoint",
"IntSurf_InteriorPointTool",
"IntSurf_LineOn2S",
"IntSurf_ListOfPntOn2S",
"IntSurf_PathPoint",
"IntSurf_PathPointTool",
"IntSurf_PntOn2S",
"IntSurf_Quadric",
"IntSurf_QuadricTool",
"IntSurf_SequenceOfCouple",
"IntSurf_SequenceOfInteriorPoint",
"IntSurf_SequenceOfPathPoint",
"IntSurf_SequenceOfPntOn2S",
"IntSurf_Situation",
"IntSurf_Transition",
"IntSurf_TypeTrans",
"IntSurf_In",
"IntSurf_Inside",
"IntSurf_Out",
"IntSurf_Outside",
"IntSurf_Touch",
"IntSurf_Undecided",
"IntSurf_Unknown"
]
class IntSurf():
"""
This package provides resources for all the packages concerning the intersection between surfaces.
"""
@staticmethod
def MakeTransition_s(TgFirst : OCP.gp.gp_Vec,TgSecond : OCP.gp.gp_Vec,Normal : OCP.gp.gp_Dir,TFirst : IntSurf_Transition,TSecond : IntSurf_Transition) -> None:
"""
Computes the transition of the intersection point between the two lines. TgFirst is the tangent vector of the first line. TgSecond is the tangent vector of the second line. Normal is the direction used to orientate the cross product TgFirst^TgSecond. TFirst is the transition of the point on the first line. TSecond is the transition of the point on the second line.
"""
@staticmethod
def SetPeriod_s(theFirstSurf : OCP.Adaptor3d.Adaptor3d_Surface,theSecondSurf : OCP.Adaptor3d.Adaptor3d_Surface,theArrOfPeriod : float) -> None:
"""
Fills theArrOfPeriod array by the period values of theFirstSurf and theSecondSurf. [0] = U-period of theFirstSurf, [1] = V-period of theFirstSurf, [2] = U-period of theSecondSurf, [3] = V-period of theSecondSurf.
"""
def __init__(self) -> None: ...
pass
class IntSurf_Couple():
"""
creation d 'un couple de 2 entiers
"""
def First(self) -> int:
"""
returns the first element
returns the first element
"""
def Second(self) -> int:
"""
returns the Second element
returns the Second element
"""
@overload
def __init__(self) -> None: ...
@overload
def __init__(self,Index1 : int,Index2 : int) -> None: ...
pass
class IntSurf_InteriorPoint():
"""
Definition of a point solution of the intersection between an implicit an a parametrised surface. These points are passing points on the intersection lines, or starting points for the closed lines on the parametrised surface.
"""
def Direction(self) -> OCP.gp.gp_Vec:
"""
Returns the tangent at the intersection in 3d space associated to the interior point.
Returns the tangent at the intersection in 3d space associated to the interior point.
"""
def Direction2d(self) -> OCP.gp.gp_Vec2d:
"""
Returns the tangent at the intersection in the parametric space of the parametric surface.
Returns the tangent at the intersection in the parametric space of the parametric surface.
"""
def Parameters(self) -> tuple[float, float]:
"""
Returns the parameters of the interior point on the parametric surface.
Returns the parameters of the interior point on the parametric surface.
"""
def SetValue(self,P : OCP.gp.gp_Pnt,U : float,V : float,Direc : OCP.gp.gp_Vec,Direc2d : OCP.gp.gp_Vec2d) -> None:
"""
None
"""
def UParameter(self) -> float:
"""
Returns the first parameter of the interior point on the parametric surface.
Returns the first parameter of the interior point on the parametric surface.
"""
def VParameter(self) -> float:
"""
Returns the second parameter of the interior point on the parametric surface.
Returns the second parameter of the interior point on the parametric surface.
"""
def Value(self) -> OCP.gp.gp_Pnt:
"""
Returns the 3d coordinates of the interior point.
Returns the 3d coordinates of the interior point.
"""
@overload
def __init__(self,P : OCP.gp.gp_Pnt,U : float,V : float,Direc : OCP.gp.gp_Vec,Direc2d : OCP.gp.gp_Vec2d) -> None: ...
@overload
def __init__(self) -> None: ...
pass
class IntSurf_InteriorPointTool():
"""
This class provides a tool on the "interior point" that can be used to instantiates the Walking algorithms (see package IntWalk).
"""
@staticmethod
def Direction2d_s(PStart : IntSurf_InteriorPoint) -> OCP.gp.gp_Dir2d:
"""
returns the tangent at the intersectin in the parametric space of the parametrized surface.This tangent is associated to the value2d
"""
@staticmethod
def Direction3d_s(PStart : IntSurf_InteriorPoint) -> OCP.gp.gp_Vec:
"""
returns the tangent at the intersectin in 3d space associated to <P>
"""
@staticmethod
def Value2d_s(PStart : IntSurf_InteriorPoint) -> tuple[float, float]:
"""
Returns the <U,V> parameters which are associated with <P> it's the parameters which start the marching algorithm
"""
@staticmethod
def Value3d_s(PStart : IntSurf_InteriorPoint) -> OCP.gp.gp_Pnt:
"""
Returns the 3d coordinates of the starting point.
"""
def __init__(self) -> None: ...
pass
class IntSurf_LineOn2S(OCP.Standard.Standard_Transient):
def Add(self,P : IntSurf_PntOn2S) -> None:
"""
Adds a point in the line.
"""
def Clear(self) -> None:
"""
None
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 InsertBefore(self,I : int,P : IntSurf_PntOn2S) -> None:
"""
None
"""
@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 IsOutBox(self,theP : OCP.gp.gp_Pnt) -> bool:
"""
Returns TRUE if theP is out of the box built from 3D-points.
"""
def IsOutSurf1Box(self,theP : OCP.gp.gp_Pnt2d) -> bool:
"""
Returns TRUE if theP is out of the box built from the points on 1st surface
"""
def IsOutSurf2Box(self,theP : OCP.gp.gp_Pnt2d) -> bool:
"""
Returns TRUE if theP is out of the box built from the points on 2nd surface
"""
def NbPoints(self) -> int:
"""
Returns the number of points in the line.
Returns the number of points in the line.
"""
def RemovePoint(self,I : int) -> None:
"""
None
"""
def Reverse(self) -> None:
"""
Reverses the order of points of the line.
Reverses the order of points of the line.
"""
def SetPoint(self,Index : int,thePnt : OCP.gp.gp_Pnt) -> None:
"""
Sets the 3D point of the Index-th PntOn2S
Sets the 3D point of the Index-th PntOn2S
"""
def SetUV(self,Index : int,OnFirst : bool,U : float,V : float) -> None:
"""
Sets the parametric coordinates on one of the surfaces of the point of range Index in the line.
"""
def Split(self,Index : int) -> IntSurf_LineOn2S:
"""
Keeps in <me> the points 1 to Index-1, and returns the items Index to the end.
"""
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.
"""
@overload
def Value(self,Index : int) -> IntSurf_PntOn2S:
"""
Returns the point of range Index in the line.
Replaces the point of range Index in the line.
Returns the point of range Index in the line.
Replaces the point of range Index in the line.
"""
@overload
def Value(self,Index : int,P : IntSurf_PntOn2S) -> None: ...
def __init__(self,theAllocator : OCP.NCollection.NCollection_BaseAllocator=None) -> None: ...
@staticmethod
def get_type_descriptor_s() -> OCP.Standard.Standard_Type:
"""
None
"""
@staticmethod
def get_type_name_s() -> str:
"""
None
"""
pass
class IntSurf_ListOfPntOn2S(OCP.NCollection.NCollection_BaseList):
"""
Purpose: Simple list to link items together keeping the first and the last one. Inherits BaseList, adding the data item to each node.
"""
def Allocator(self) -> OCP.NCollection.NCollection_BaseAllocator:
"""
Returns attached allocator
"""
@overload
def Append(self,theItem : IntSurf_PntOn2S) -> IntSurf_PntOn2S:
"""
Append one item at the end
Append one item at the end and output iterator pointing at the appended item
Append another list at the end. After this operation, theOther list will be cleared.
"""
@overload
def Append(self,theItem : IntSurf_PntOn2S,theIter : Any) -> None: ...
@overload
def Append(self,theOther : IntSurf_ListOfPntOn2S) -> None: ...
def Assign(self,theOther : IntSurf_ListOfPntOn2S) -> IntSurf_ListOfPntOn2S:
"""
Replace this list by the items of another list (theOther parameter). This method does not change the internal allocator.
"""
def Clear(self,theAllocator : OCP.NCollection.NCollection_BaseAllocator=None) -> None:
"""
Clear this list
"""
def Extent(self) -> int:
"""
None
"""
def First(self) -> IntSurf_PntOn2S:
"""
First item
First item (non-const)
"""
@overload
def InsertAfter(self,theOther : IntSurf_ListOfPntOn2S,theIter : Any) -> None:
"""
InsertAfter
InsertAfter
"""
@overload
def InsertAfter(self,theItem : IntSurf_PntOn2S,theIter : Any) -> IntSurf_PntOn2S: ...
@overload
def InsertBefore(self,theItem : IntSurf_PntOn2S,theIter : Any) -> IntSurf_PntOn2S:
"""
InsertBefore
InsertBefore
"""
@overload
def InsertBefore(self,theOther : IntSurf_ListOfPntOn2S,theIter : Any) -> None: ...
def IsEmpty(self) -> bool:
"""
None
"""
def Last(self) -> IntSurf_PntOn2S:
"""
Last item
Last item (non-const)
"""
@overload
def Prepend(self,theItem : IntSurf_PntOn2S) -> IntSurf_PntOn2S:
"""
Prepend one item at the beginning
Prepend another list at the beginning
"""
@overload
def Prepend(self,theOther : IntSurf_ListOfPntOn2S) -> None: ...
def Remove(self,theIter : Any) -> None:
"""
Remove item pointed by iterator theIter; theIter is then set to the next item
"""
def RemoveFirst(self) -> None:
"""
RemoveFirst item
"""
def Reverse(self) -> None:
"""
Reverse the list
"""
def Size(self) -> int:
"""
Size - Number of items
"""
@overload
def __init__(self,theAllocator : OCP.NCollection.NCollection_BaseAllocator) -> None: ...
@overload
def __init__(self) -> None: ...
@overload
def __init__(self,theOther : IntSurf_ListOfPntOn2S) -> None: ...
def __iter__(self) -> Iterator[IntSurf_PntOn2S]: ...
def __len__(self) -> int: ...
pass
class IntSurf_PathPoint():
"""
None
"""
def AddUV(self,U : float,V : float) -> None:
"""
None
None
"""
def Direction2d(self) -> OCP.gp.gp_Dir2d:
"""
None
None
"""
def Direction3d(self) -> OCP.gp.gp_Vec:
"""
None
None
"""
def IsPassingPnt(self) -> bool:
"""
None
None
"""
def IsTangent(self) -> bool:
"""
None
None
"""
def Multiplicity(self) -> int:
"""
None
None
"""
def Parameters(self,Index : int) -> tuple[float, float]:
"""
None
None
"""
def SetDirections(self,V : OCP.gp.gp_Vec,D : OCP.gp.gp_Dir2d) -> None:
"""
None
None
"""
def SetPassing(self,Pass : bool) -> None:
"""
None
None
"""
def SetTangency(self,Tang : bool) -> None:
"""
None
None
"""
def SetValue(self,P : OCP.gp.gp_Pnt,U : float,V : float) -> None:
"""
None
"""
def Value(self) -> OCP.gp.gp_Pnt:
"""
None
None
"""
def Value2d(self) -> tuple[float, float]:
"""
None
None
"""
@overload
def __init__(self) -> None: ...
@overload
def __init__(self,P : OCP.gp.gp_Pnt,U : float,V : float) -> None: ...
pass
class IntSurf_PathPointTool():
"""
None
"""
@staticmethod
def Direction2d_s(PStart : IntSurf_PathPoint) -> OCP.gp.gp_Dir2d:
"""
returns the tangent at the intersection in the parametric space of the parametrized surface.This tangent is associated to the value2d la tangente a un sens signifiant (indique le sens de chemin ement) an exception is raised if IsTangent is true.
"""
@staticmethod
def Direction3d_s(PStart : IntSurf_PathPoint) -> OCP.gp.gp_Vec:
"""
returns the tangent at the intersection in 3d space associated to <P> an exception is raised if IsTangent is true.
"""
@staticmethod
def IsPassingPnt_s(PStart : IntSurf_PathPoint) -> bool:
"""
Returns True if the point is a point on a non-oriented arc, which means that the intersection line does not stop at such a point but just go through such a point. IsPassingPnt is True when IsOnArc is True
"""
@staticmethod
def IsTangent_s(PStart : IntSurf_PathPoint) -> bool:
"""
Returns True if the surfaces are tangent at this point. IsTangent can be True when IsOnArc is True if IsPassingPnt is True and IsTangent is True,this point is a stopped point.
"""
@staticmethod
def Multiplicity_s(PStart : IntSurf_PathPoint) -> int:
"""
Returns the multiplicity of the point i-e the number of auxillar parameters associated to the point which the principal parameters are given by Value2d
"""
@staticmethod
def Parameters_s(PStart : IntSurf_PathPoint,Mult : int) -> tuple[float, float]:
"""
Parametric coordinates associated to the multiplicity. An exception is raised if Mult<=0 or Mult>multiplicity.
"""
@staticmethod
def Value2d_s(PStart : IntSurf_PathPoint) -> tuple[float, float]:
"""
Returns the <U, V> parameters which are associated with <P> it's the parameters which start the marching algorithm
"""
@staticmethod
def Value3d_s(PStart : IntSurf_PathPoint) -> OCP.gp.gp_Pnt:
"""
Returns the 3d coordinates of the starting point.
"""
def __init__(self) -> None: ...
pass
class IntSurf_PntOn2S():
"""
This class defines the geometric information for an intersection point between 2 surfaces : The coordinates ( Pnt from gp ), and two parametric coordinates.
"""
def IsSame(self,theOtherPoint : IntSurf_PntOn2S,theTol3D : float=0.0,theTol2D : float=-1.0) -> bool:
"""
Returns TRUE if 2D- and 3D-coordinates of theOterPoint are equal to corresponding coordinates of me (with given tolerance). If theTol2D < 0.0 we will compare 3D-points only.
"""
def Parameters(self) -> tuple[float, float, float, float]:
"""
Returns the parameters of the point on both surfaces.
Returns the parameters of the point on both surfaces.
"""
def ParametersOnS1(self) -> tuple[float, float]:
"""
Returns the parameters of the point on the first surface.
Returns the parameters of the point on the first surface.
"""
def ParametersOnS2(self) -> tuple[float, float]:
"""
Returns the parameters of the point on the second surface.
Returns the parameters of the point on the second surface.
"""
def ParametersOnSurface(self,OnFirst : bool) -> tuple[float, float]:
"""
Returns the parameters of the point in the parametric space of one of the surface.
"""
@overload
def SetValue(self,Pt : OCP.gp.gp_Pnt,OnFirst : bool,U : float,V : float) -> None:
"""
Sets the value of the point in 3d space.
Sets the values of the point in 3d space, and in the parametric space of one of the surface.
Sets the values of the point in 3d space, and in the parametric space of each surface.
Set the values of the point in the parametric space of one of the surface.
Set the values of the point in the parametric space of one of the surface.
Sets the value of the point in 3d space.
Sets the values of the point in 3d space, and in the parametric space of each surface.
Set the values of the point in the parametric space of one of the surface.
"""
@overload
def SetValue(self,Pt : OCP.gp.gp_Pnt) -> None: ...
@overload
def SetValue(self,U1 : float,V1 : float,U2 : float,V2 : float) -> None: ...
@overload
def SetValue(self,OnFirst : bool,U : float,V : float) -> None: ...
@overload
def SetValue(self,Pt : OCP.gp.gp_Pnt,U1 : float,V1 : float,U2 : float,V2 : float) -> None: ...
def Value(self) -> OCP.gp.gp_Pnt:
"""
Returns the point in 3d space.
Returns the point in 3d space.
"""
def ValueOnSurface(self,OnFirst : bool) -> OCP.gp.gp_Pnt2d:
"""
Returns the point in 2d space of one of the surfaces.
"""
def __init__(self) -> None: ...
pass
class IntSurf_Quadric():
"""
None
"""
def Cone(self) -> OCP.gp.gp_Cone:
"""
None
None
"""
def Cylinder(self) -> OCP.gp.gp_Cylinder:
"""
None
None
"""
def D1(self,U : float,V : float,P : OCP.gp.gp_Pnt,D1U : OCP.gp.gp_Vec,D1V : OCP.gp.gp_Vec) -> None:
"""
None
"""
def DN(self,U : float,V : float,Nu : int,Nv : int) -> OCP.gp.gp_Vec:
"""
None
"""
def Distance(self,P : OCP.gp.gp_Pnt) -> float:
"""
None
"""
def Gradient(self,P : OCP.gp.gp_Pnt) -> OCP.gp.gp_Vec:
"""
None
"""
@overload
def Normale(self,P : OCP.gp.gp_Pnt) -> OCP.gp.gp_Vec:
"""
None
None
"""
@overload
def Normale(self,U : float,V : float) -> OCP.gp.gp_Vec: ...
def Parameters(self,P : OCP.gp.gp_Pnt) -> tuple[float, float]:
"""
None
"""
def Plane(self) -> OCP.gp.gp_Pln:
"""
None
None
"""
@overload
def SetValue(self,C : OCP.gp.gp_Cylinder) -> None:
"""
None
None
None
None
None
"""
@overload
def SetValue(self,T : OCP.gp.gp_Torus) -> None: ...
@overload
def SetValue(self,S : OCP.gp.gp_Sphere) -> None: ...
@overload
def SetValue(self,P : OCP.gp.gp_Pln) -> None: ...
@overload
def SetValue(self,C : OCP.gp.gp_Cone) -> None: ...
def Sphere(self) -> OCP.gp.gp_Sphere:
"""
None
None
"""
def Torus(self) -> OCP.gp.gp_Torus:
"""
None
None
"""
def TypeQuadric(self) -> OCP.GeomAbs.GeomAbs_SurfaceType:
"""
None
None
"""
def ValAndGrad(self,P : OCP.gp.gp_Pnt,Grad : OCP.gp.gp_Vec) -> tuple[float]:
"""
None
"""
def Value(self,U : float,V : float) -> OCP.gp.gp_Pnt:
"""
None
"""
@overload
def __init__(self,S : OCP.gp.gp_Sphere) -> None: ...
@overload
def __init__(self,T : OCP.gp.gp_Torus) -> None: ...
@overload
def __init__(self,C : OCP.gp.gp_Cylinder) -> None: ...
@overload
def __init__(self) -> None: ...
@overload
def __init__(self,P : OCP.gp.gp_Pln) -> None: ...
@overload
def __init__(self,C : OCP.gp.gp_Cone) -> None: ...
pass
class IntSurf_QuadricTool():
"""
This class provides a tool on a quadric that can be used to instantiates the Walking algorithms (see package IntWalk) with a Quadric from IntSurf as implicit surface.
"""
@staticmethod
def Gradient_s(Quad : IntSurf_Quadric,X : float,Y : float,Z : float,V : OCP.gp.gp_Vec) -> None:
"""
Returns the gradient of the function.
"""
@staticmethod
def Tolerance_s(Quad : IntSurf_Quadric) -> float:
"""
returns the tolerance of the zero of the implicit function
"""
@staticmethod
def ValueAndGradient_s(Quad : IntSurf_Quadric,X : float,Y : float,Z : float,Grad : OCP.gp.gp_Vec) -> tuple[float]:
"""
Returns the value and the gradient.
"""
@staticmethod
def Value_s(Quad : IntSurf_Quadric,X : float,Y : float,Z : float) -> float:
"""
Returns the value of the function.
"""
def __init__(self) -> None: ...
pass
class IntSurf_SequenceOfCouple(OCP.NCollection.NCollection_BaseSequence):
"""
Purpose: Definition of a sequence of elements indexed by an Integer in range of 1..n
"""
def Allocator(self) -> OCP.NCollection.NCollection_BaseAllocator:
"""
Returns attached allocator
"""
@overload
def Append(self,theSeq : IntSurf_SequenceOfCouple) -> None:
"""
Append one item
Append another sequence (making it empty)
"""
@overload
def Append(self,theItem : IntSurf_Couple) -> None: ...
def Assign(self,theOther : IntSurf_SequenceOfCouple) -> IntSurf_SequenceOfCouple:
"""
Replace this sequence by the items of theOther. This method does not change the internal allocator.
"""
def ChangeFirst(self) -> IntSurf_Couple:
"""
First item access
"""
def ChangeLast(self) -> IntSurf_Couple:
"""
Last item access
"""
def ChangeValue(self,theIndex : int) -> IntSurf_Couple:
"""
Variable item access by theIndex
"""
def Clear(self,theAllocator : OCP.NCollection.NCollection_BaseAllocator=None) -> None:
"""
Clear the items out, take a new allocator if non null
"""
def Exchange(self,I : int,J : int) -> None:
"""
Exchange two members
"""
def First(self) -> IntSurf_Couple:
"""
First item access
"""
@overload
def InsertAfter(self,theIndex : int,theSeq : IntSurf_SequenceOfCouple) -> None:
"""
InsertAfter theIndex another sequence (making it empty)
InsertAfter theIndex theItem
"""
@overload
def InsertAfter(self,theIndex : int,theItem : IntSurf_Couple) -> None: ...
@overload
def InsertBefore(self,theIndex : int,theSeq : IntSurf_SequenceOfCouple) -> None:
"""
InsertBefore theIndex theItem
InsertBefore theIndex another sequence (making it empty)
"""
@overload
def InsertBefore(self,theIndex : int,theItem : IntSurf_Couple) -> None: ...
def IsEmpty(self) -> bool:
"""
Empty query
"""
def Last(self) -> IntSurf_Couple:
"""
Last item access
"""
def Length(self) -> int:
"""
Number of items
"""
def Lower(self) -> int:
"""
Method for consistency with other collections.
"""
@overload
def Prepend(self,theSeq : IntSurf_SequenceOfCouple) -> None:
"""
Prepend one item
Prepend another sequence (making it empty)
"""
@overload
def Prepend(self,theItem : IntSurf_Couple) -> None: ...
@overload
def Remove(self,theFromIndex : int,theToIndex : int) -> None:
"""
Remove one item
Remove range of items
"""
@overload
def Remove(self,theIndex : int) -> None: ...
def Reverse(self) -> None:
"""
Reverse sequence
"""
def SetValue(self,theIndex : int,theItem : IntSurf_Couple) -> None:
"""
Set item value by theIndex
"""
def Size(self) -> int:
"""
Number of items
"""
def Split(self,theIndex : int,theSeq : IntSurf_SequenceOfCouple) -> None:
"""
Split in two sequences
"""
def Upper(self) -> int:
"""
Method for consistency with other collections.
"""
def Value(self,theIndex : int) -> IntSurf_Couple:
"""
Constant item access by theIndex
"""
def __bool__(self) -> bool: ...
def __call__(self,theIndex : int) -> IntSurf_Couple:
"""
Constant operator()
Variable operator()
"""
@overload
def __init__(self,theAllocator : OCP.NCollection.NCollection_BaseAllocator) -> None: ...
@overload
def __init__(self) -> None: ...
@overload
def __init__(self,theOther : IntSurf_SequenceOfCouple) -> None: ...
def __iter__(self) -> Iterator[IntSurf_Couple]: ...
def __len__(self) -> int: ...
@staticmethod
def delNode_s(theNode : NCollection_SeqNode,theAl : OCP.NCollection.NCollection_BaseAllocator) -> None:
"""
Static deleter to be passed to BaseSequence
"""
pass
class IntSurf_SequenceOfInteriorPoint(OCP.NCollection.NCollection_BaseSequence):
"""
Purpose: Definition of a sequence of elements indexed by an Integer in range of 1..n
"""
def Allocator(self) -> OCP.NCollection.NCollection_BaseAllocator:
"""
Returns attached allocator
"""
@overload
def Append(self,theItem : IntSurf_InteriorPoint) -> None:
"""
Append one item
Append another sequence (making it empty)
"""
@overload
def Append(self,theSeq : IntSurf_SequenceOfInteriorPoint) -> None: ...
def Assign(self,theOther : IntSurf_SequenceOfInteriorPoint) -> IntSurf_SequenceOfInteriorPoint:
"""
Replace this sequence by the items of theOther. This method does not change the internal allocator.
"""
def ChangeFirst(self) -> IntSurf_InteriorPoint:
"""
First item access
"""
def ChangeLast(self) -> IntSurf_InteriorPoint:
"""
Last item access
"""
def ChangeValue(self,theIndex : int) -> IntSurf_InteriorPoint:
"""
Variable item access by theIndex
"""
def Clear(self,theAllocator : OCP.NCollection.NCollection_BaseAllocator=None) -> None:
"""
Clear the items out, take a new allocator if non null
"""
def Exchange(self,I : int,J : int) -> None:
"""
Exchange two members
"""
def First(self) -> IntSurf_InteriorPoint:
"""
First item access
"""
@overload
def InsertAfter(self,theIndex : int,theSeq : IntSurf_SequenceOfInteriorPoint) -> None:
"""
InsertAfter theIndex another sequence (making it empty)
InsertAfter theIndex theItem
"""
@overload
def InsertAfter(self,theIndex : int,theItem : IntSurf_InteriorPoint) -> None: ...
@overload
def InsertBefore(self,theIndex : int,theSeq : IntSurf_SequenceOfInteriorPoint) -> None:
"""
InsertBefore theIndex theItem
InsertBefore theIndex another sequence (making it empty)
"""
@overload
def InsertBefore(self,theIndex : int,theItem : IntSurf_InteriorPoint) -> None: ...
def IsEmpty(self) -> bool:
"""
Empty query
"""
def Last(self) -> IntSurf_InteriorPoint:
"""
Last item access
"""
def Length(self) -> int:
"""
Number of items
"""
def Lower(self) -> int:
"""
Method for consistency with other collections.
"""
@overload
def Prepend(self,theItem : IntSurf_InteriorPoint) -> None:
"""
Prepend one item
Prepend another sequence (making it empty)
"""
@overload
def Prepend(self,theSeq : IntSurf_SequenceOfInteriorPoint) -> None: ...
@overload
def Remove(self,theFromIndex : int,theToIndex : int) -> None:
"""
Remove one item
Remove range of items
"""
@overload
def Remove(self,theIndex : int) -> None: ...
def Reverse(self) -> None:
"""
Reverse sequence
"""
def SetValue(self,theIndex : int,theItem : IntSurf_InteriorPoint) -> None:
"""
Set item value by theIndex
"""
def Size(self) -> int:
"""
Number of items
"""
def Split(self,theIndex : int,theSeq : IntSurf_SequenceOfInteriorPoint) -> None:
"""
Split in two sequences
"""
def Upper(self) -> int:
"""
Method for consistency with other collections.
"""
def Value(self,theIndex : int) -> IntSurf_InteriorPoint:
"""
Constant item access by theIndex
"""
def __bool__(self) -> bool: ...
def __call__(self,theIndex : int) -> IntSurf_InteriorPoint:
"""
Constant operator()
Variable operator()
"""
@overload
def __init__(self,theOther : IntSurf_SequenceOfInteriorPoint) -> None: ...
@overload
def __init__(self,theAllocator : OCP.NCollection.NCollection_BaseAllocator) -> None: ...
@overload
def __init__(self) -> None: ...
def __iter__(self) -> Iterator[IntSurf_InteriorPoint]: ...
def __len__(self) -> int: ...
@staticmethod
def delNode_s(theNode : NCollection_SeqNode,theAl : OCP.NCollection.NCollection_BaseAllocator) -> None:
"""
Static deleter to be passed to BaseSequence
"""
pass
class IntSurf_SequenceOfPathPoint(OCP.NCollection.NCollection_BaseSequence):
"""
Purpose: Definition of a sequence of elements indexed by an Integer in range of 1..n
"""
def Allocator(self) -> OCP.NCollection.NCollection_BaseAllocator:
"""
Returns attached allocator
"""
@overload
def Append(self,theSeq : IntSurf_SequenceOfPathPoint) -> None:
"""
Append one item
Append another sequence (making it empty)
"""
@overload
def Append(self,theItem : IntSurf_PathPoint) -> None: ...
def Assign(self,theOther : IntSurf_SequenceOfPathPoint) -> IntSurf_SequenceOfPathPoint:
"""
Replace this sequence by the items of theOther. This method does not change the internal allocator.
"""
def ChangeFirst(self) -> IntSurf_PathPoint:
"""
First item access
"""
def ChangeLast(self) -> IntSurf_PathPoint:
"""
Last item access
"""
def ChangeValue(self,theIndex : int) -> IntSurf_PathPoint:
"""
Variable item access by theIndex
"""
def Clear(self,theAllocator : OCP.NCollection.NCollection_BaseAllocator=None) -> None:
"""
Clear the items out, take a new allocator if non null
"""
def Exchange(self,I : int,J : int) -> None:
"""
Exchange two members
"""
def First(self) -> IntSurf_PathPoint:
"""
First item access
"""
@overload
def InsertAfter(self,theIndex : int,theItem : IntSurf_PathPoint) -> None:
"""
InsertAfter theIndex another sequence (making it empty)
InsertAfter theIndex theItem
"""
@overload
def InsertAfter(self,theIndex : int,theSeq : IntSurf_SequenceOfPathPoint) -> None: ...
@overload
def InsertBefore(self,theIndex : int,theItem : IntSurf_PathPoint) -> None:
"""
InsertBefore theIndex theItem
InsertBefore theIndex another sequence (making it empty)
"""
@overload
def InsertBefore(self,theIndex : int,theSeq : IntSurf_SequenceOfPathPoint) -> None: ...
def IsEmpty(self) -> bool:
"""
Empty query
"""
def Last(self) -> IntSurf_PathPoint:
"""
Last item access
"""
def Length(self) -> int:
"""
Number of items
"""
def Lower(self) -> int:
"""
Method for consistency with other collections.
"""
@overload
def Prepend(self,theSeq : IntSurf_SequenceOfPathPoint) -> None:
"""
Prepend one item
Prepend another sequence (making it empty)
"""
@overload
def Prepend(self,theItem : IntSurf_PathPoint) -> None: ...
@overload
def Remove(self,theFromIndex : int,theToIndex : int) -> None:
"""
Remove one item
Remove range of items
"""
@overload
def Remove(self,theIndex : int) -> None: ...
def Reverse(self) -> None:
"""
Reverse sequence
"""
def SetValue(self,theIndex : int,theItem : IntSurf_PathPoint) -> None:
"""
Set item value by theIndex
"""
def Size(self) -> int:
"""
Number of items
"""
def Split(self,theIndex : int,theSeq : IntSurf_SequenceOfPathPoint) -> None:
"""
Split in two sequences
"""
def Upper(self) -> int:
"""
Method for consistency with other collections.
"""
def Value(self,theIndex : int) -> IntSurf_PathPoint:
"""
Constant item access by theIndex
"""
def __bool__(self) -> bool: ...
def __call__(self,theIndex : int) -> IntSurf_PathPoint:
"""
Constant operator()
Variable operator()
"""
@overload
def __init__(self) -> None: ...
@overload
def __init__(self,theOther : IntSurf_SequenceOfPathPoint) -> None: ...
@overload
def __init__(self,theAllocator : OCP.NCollection.NCollection_BaseAllocator) -> None: ...
def __iter__(self) -> Iterator[IntSurf_PathPoint]: ...
def __len__(self) -> int: ...
@staticmethod
def delNode_s(theNode : NCollection_SeqNode,theAl : OCP.NCollection.NCollection_BaseAllocator) -> None:
"""
Static deleter to be passed to BaseSequence
"""
pass
class IntSurf_SequenceOfPntOn2S(OCP.NCollection.NCollection_BaseSequence):
"""
Purpose: Definition of a sequence of elements indexed by an Integer in range of 1..n
"""
def Allocator(self) -> OCP.NCollection.NCollection_BaseAllocator:
"""
Returns attached allocator
"""
@overload
def Append(self,theItem : IntSurf_PntOn2S) -> None:
"""
Append one item
Append another sequence (making it empty)
"""
@overload
def Append(self,theSeq : IntSurf_SequenceOfPntOn2S) -> None: ...
def Assign(self,theOther : IntSurf_SequenceOfPntOn2S) -> IntSurf_SequenceOfPntOn2S:
"""
Replace this sequence by the items of theOther. This method does not change the internal allocator.
"""
def ChangeFirst(self) -> IntSurf_PntOn2S:
"""
First item access
"""
def ChangeLast(self) -> IntSurf_PntOn2S:
"""
Last item access
"""
def ChangeValue(self,theIndex : int) -> IntSurf_PntOn2S:
"""
Variable item access by theIndex
"""
def Clear(self,theAllocator : OCP.NCollection.NCollection_BaseAllocator=None) -> None:
"""
Clear the items out, take a new allocator if non null
"""
def Exchange(self,I : int,J : int) -> None:
"""
Exchange two members
"""
def First(self) -> IntSurf_PntOn2S:
"""
First item access
"""
@overload
def InsertAfter(self,theIndex : int,theItem : IntSurf_PntOn2S) -> None:
"""
InsertAfter theIndex another sequence (making it empty)
InsertAfter theIndex theItem
"""
@overload
def InsertAfter(self,theIndex : int,theSeq : IntSurf_SequenceOfPntOn2S) -> None: ...
@overload
def InsertBefore(self,theIndex : int,theSeq : IntSurf_SequenceOfPntOn2S) -> None:
"""
InsertBefore theIndex theItem
InsertBefore theIndex another sequence (making it empty)
"""
@overload
def InsertBefore(self,theIndex : int,theItem : IntSurf_PntOn2S) -> None: ...
def IsEmpty(self) -> bool:
"""
Empty query
"""
def Last(self) -> IntSurf_PntOn2S:
"""
Last item access
"""
def Length(self) -> int:
"""
Number of items
"""
def Lower(self) -> int:
"""
Method for consistency with other collections.
"""
@overload
def Prepend(self,theItem : IntSurf_PntOn2S) -> None:
"""
Prepend one item
Prepend another sequence (making it empty)
"""
@overload
def Prepend(self,theSeq : IntSurf_SequenceOfPntOn2S) -> None: ...
@overload
def Remove(self,theFromIndex : int,theToIndex : int) -> None:
"""
Remove one item
Remove range of items
"""
@overload
def Remove(self,theIndex : int) -> None: ...
def Reverse(self) -> None:
"""
Reverse sequence
"""
def SetValue(self,theIndex : int,theItem : IntSurf_PntOn2S) -> None:
"""
Set item value by theIndex
"""
def Size(self) -> int:
"""
Number of items
"""
def Split(self,theIndex : int,theSeq : IntSurf_SequenceOfPntOn2S) -> None:
"""
Split in two sequences
"""
def Upper(self) -> int:
"""
Method for consistency with other collections.
"""
def Value(self,theIndex : int) -> IntSurf_PntOn2S:
"""
Constant item access by theIndex
"""
def __bool__(self) -> bool: ...
def __call__(self,theIndex : int) -> IntSurf_PntOn2S:
"""
Constant operator()
Variable operator()
"""
@overload
def __init__(self) -> None: ...
@overload
def __init__(self,theOther : IntSurf_SequenceOfPntOn2S) -> None: ...
@overload
def __init__(self,theAllocator : OCP.NCollection.NCollection_BaseAllocator) -> None: ...
def __iter__(self) -> Iterator[IntSurf_PntOn2S]: ...
def __len__(self) -> int: ...
@staticmethod
def delNode_s(theNode : NCollection_SeqNode,theAl : OCP.NCollection.NCollection_BaseAllocator) -> None:
"""
Static deleter to be passed to BaseSequence
"""
pass
class IntSurf_Situation():
"""
None
Members:
IntSurf_Inside
IntSurf_Outside
IntSurf_Unknown
"""
def __eq__(self,other : object) -> bool: ...
def __getstate__(self) -> int: ...
def __hash__(self) -> int: ...
def __index__(self) -> int: ...
def __init__(self,value : int) -> None: ...
def __int__(self) -> int: ...
def __ne__(self,other : object) -> bool: ...
def __repr__(self) -> str: ...
def __setstate__(self,state : int) -> None: ...
def __str__(self) -> str: ...
@property
def name(self) -> None:
"""
:type: None
"""
@property
def value(self) -> int:
"""
:type: int
"""
IntSurf_Inside: OCP.IntSurf.IntSurf_Situation # value = <IntSurf_Situation.IntSurf_Inside: 0>
IntSurf_Outside: OCP.IntSurf.IntSurf_Situation # value = <IntSurf_Situation.IntSurf_Outside: 1>
IntSurf_Unknown: OCP.IntSurf.IntSurf_Situation # value = <IntSurf_Situation.IntSurf_Unknown: 2>
__entries: dict # value = {'IntSurf_Inside': (<IntSurf_Situation.IntSurf_Inside: 0>, None), 'IntSurf_Outside': (<IntSurf_Situation.IntSurf_Outside: 1>, None), 'IntSurf_Unknown': (<IntSurf_Situation.IntSurf_Unknown: 2>, None)}
__members__: dict # value = {'IntSurf_Inside': <IntSurf_Situation.IntSurf_Inside: 0>, 'IntSurf_Outside': <IntSurf_Situation.IntSurf_Outside: 1>, 'IntSurf_Unknown': <IntSurf_Situation.IntSurf_Unknown: 2>}
pass
class IntSurf_Transition():
"""
Definition of the transition at the intersection between an intersection line and a restriction curve on a surface.
"""
def IsOpposite(self) -> bool:
"""
returns a significant value if TransitionType returns TOUCH. In this case, the function returns true when the 2 curves locally define two different parts of the space. If TransitionType returns IN or OUT or UNDECIDED, an exception is raised.
returns a significant value if TransitionType returns TOUCH. In this case, the function returns true when the 2 curves locally define two different parts of the space. If TransitionType returns IN or OUT or UNDECIDED, an exception is raised.
"""
def IsTangent(self) -> bool:
"""
Returns TRUE if the point is tangent to the arc given by Value. An exception is raised if TransitionType returns UNDECIDED.
Returns TRUE if the point is tangent to the arc given by Value. An exception is raised if TransitionType returns UNDECIDED.
"""
@overload
def SetValue(self,Tangent : bool,Type : IntSurf_TypeTrans) -> None:
"""
Set the values of an IN or OUT transition.
Set the values of a TOUCH transition.
Set the values of an UNDECIDED transition.
Set the values of an IN or OUT transition.
Set the values of a TOUCH transition.
Set the values of an UNDECIDED transition.
"""
@overload
def SetValue(self) -> None: ...
@overload
def SetValue(self,Tangent : bool,Situ : IntSurf_Situation,Oppos : bool) -> None: ...
def Situation(self) -> IntSurf_Situation:
"""
Returns a significant value if TransitionType returns TOUCH. In this case, the function returns : INSIDE when the intersection line remains inside the Arc, OUTSIDE when it remains outside the Arc, UNKNOWN when the calsulus cannot give results. If TransitionType returns IN, or OUT, or UNDECIDED, a exception is raised.
Returns a significant value if TransitionType returns TOUCH. In this case, the function returns : INSIDE when the intersection line remains inside the Arc, OUTSIDE when it remains outside the Arc, UNKNOWN when the calsulus cannot give results. If TransitionType returns IN, or OUT, or UNDECIDED, a exception is raised.
"""
def TransitionType(self) -> IntSurf_TypeTrans:
"""
Returns the type of Transition (in/out/touch/undecided) for the arc given by value. This the transition of the intersection line compared to the Arc of restriction, i-e when the function returns INSIDE for example, it means that the intersection line goes inside the part of plane limited by the arc of restriction.
Returns the type of Transition (in/out/touch/undecided) for the arc given by value. This the transition of the intersection line compared to the Arc of restriction, i-e when the function returns INSIDE for example, it means that the intersection line goes inside the part of plane limited by the arc of restriction.
"""
@overload
def __init__(self,Tangent : bool,Type : IntSurf_TypeTrans) -> None: ...
@overload
def __init__(self) -> None: ...
@overload
def __init__(self,Tangent : bool,Situ : IntSurf_Situation,Oppos : bool) -> None: ...
pass
class IntSurf_TypeTrans():
"""
None
Members:
IntSurf_In
IntSurf_Out
IntSurf_Touch
IntSurf_Undecided
"""
def __eq__(self,other : object) -> bool: ...
def __getstate__(self) -> int: ...
def __hash__(self) -> int: ...
def __index__(self) -> int: ...
def __init__(self,value : int) -> None: ...
def __int__(self) -> int: ...
def __ne__(self,other : object) -> bool: ...
def __repr__(self) -> str: ...
def __setstate__(self,state : int) -> None: ...
def __str__(self) -> str: ...
@property
def name(self) -> None:
"""
:type: None
"""
@property
def value(self) -> int:
"""
:type: int
"""
IntSurf_In: OCP.IntSurf.IntSurf_TypeTrans # value = <IntSurf_TypeTrans.IntSurf_In: 0>
IntSurf_Out: OCP.IntSurf.IntSurf_TypeTrans # value = <IntSurf_TypeTrans.IntSurf_Out: 1>
IntSurf_Touch: OCP.IntSurf.IntSurf_TypeTrans # value = <IntSurf_TypeTrans.IntSurf_Touch: 2>
IntSurf_Undecided: OCP.IntSurf.IntSurf_TypeTrans # value = <IntSurf_TypeTrans.IntSurf_Undecided: 3>
__entries: dict # value = {'IntSurf_In': (<IntSurf_TypeTrans.IntSurf_In: 0>, None), 'IntSurf_Out': (<IntSurf_TypeTrans.IntSurf_Out: 1>, None), 'IntSurf_Touch': (<IntSurf_TypeTrans.IntSurf_Touch: 2>, None), 'IntSurf_Undecided': (<IntSurf_TypeTrans.IntSurf_Undecided: 3>, None)}
__members__: dict # value = {'IntSurf_In': <IntSurf_TypeTrans.IntSurf_In: 0>, 'IntSurf_Out': <IntSurf_TypeTrans.IntSurf_Out: 1>, 'IntSurf_Touch': <IntSurf_TypeTrans.IntSurf_Touch: 2>, 'IntSurf_Undecided': <IntSurf_TypeTrans.IntSurf_Undecided: 3>}
pass
IntSurf_In: OCP.IntSurf.IntSurf_TypeTrans # value = <IntSurf_TypeTrans.IntSurf_In: 0>
IntSurf_Inside: OCP.IntSurf.IntSurf_Situation # value = <IntSurf_Situation.IntSurf_Inside: 0>
IntSurf_Out: OCP.IntSurf.IntSurf_TypeTrans # value = <IntSurf_TypeTrans.IntSurf_Out: 1>
IntSurf_Outside: OCP.IntSurf.IntSurf_Situation # value = <IntSurf_Situation.IntSurf_Outside: 1>
IntSurf_Touch: OCP.IntSurf.IntSurf_TypeTrans # value = <IntSurf_TypeTrans.IntSurf_Touch: 2>
IntSurf_Undecided: OCP.IntSurf.IntSurf_TypeTrans # value = <IntSurf_TypeTrans.IntSurf_Undecided: 3>
IntSurf_Unknown: OCP.IntSurf.IntSurf_Situation # value = <IntSurf_Situation.IntSurf_Unknown: 2>
|