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
|
import OCP.BRepPrimAPI
from typing import *
from typing import Iterable as iterable
from typing import Iterator as iterator
from numpy import float64
_Shape = Tuple[int, ...]
import OCP.TopTools
import OCP.BRepSweep
import OCP.BRepPrim
import OCP.Geom
import OCP.gp
import OCP.BRepBuilderAPI
import OCP.TopoDS
__all__ = [
"BRepPrimAPI_MakeBox",
"BRepPrimAPI_MakeOneAxis",
"BRepPrimAPI_MakeCylinder",
"BRepPrimAPI_MakeHalfSpace",
"BRepPrimAPI_MakeCone",
"BRepPrimAPI_MakeSweep",
"BRepPrimAPI_MakeRevol",
"BRepPrimAPI_MakeRevolution",
"BRepPrimAPI_MakeSphere",
"BRepPrimAPI_MakePrism",
"BRepPrimAPI_MakeTorus",
"BRepPrimAPI_MakeWedge"
]
class BRepPrimAPI_MakeBox(OCP.BRepBuilderAPI.BRepBuilderAPI_MakeShape, OCP.BRepBuilderAPI.BRepBuilderAPI_Command):
"""
Describes functions to build parallelepiped boxes. A MakeBox object provides a framework for: - defining the construction of a box, - implementing the construction algorithm, and - consulting the result. Constructs a box such that its sides are parallel to the axes of - the global coordinate system, or - the local coordinate system Axis. and - with a corner at (0, 0, 0) and of size (dx, dy, dz), or - with a corner at point P and of size (dx, dy, dz), or - with corners at points P1 and P2. Exceptions Standard_DomainError if: dx, dy, dz are less than or equal to Precision::Confusion(), or - the vector joining the points P1 and P2 has a component projected onto the global coordinate system less than or equal to Precision::Confusion(). In these cases, the box would be flat.
"""
def BackFace(self) -> OCP.TopoDS.TopoDS_Face:
"""
Returns XMin face
"""
def BottomFace(self) -> OCP.TopoDS.TopoDS_Face:
"""
Returns ZMin face
"""
def Build(self,theRange : OCP.Message.Message_ProgressRange=OCP.Message.Message_ProgressRange) -> None:
"""
Stores the solid in myShape.
"""
def Check(self) -> None:
"""
Raises NotDone if done is false.
"""
def FrontFace(self) -> OCP.TopoDS.TopoDS_Face:
"""
Returns XMax face
"""
def Generated(self,S : OCP.TopoDS.TopoDS_Shape) -> OCP.TopTools.TopTools_ListOfShape:
"""
Returns the list of shapes generated from the shape <S>.
"""
@overload
def Init(self,theAxes : OCP.gp.gp_Ax2,theDX : float,theDY : float,theDZ : float) -> None:
"""
Init a box with a corner at 0,0,0 and the other theDX, theDY, theDZ
Init a box with a corner at thePnt and size theDX, theDY, theDZ.
Init a box with corners thePnt1, thePnt2.
Init a box with Ax2 (the left corner and the theAxes) and size theDX, theDY, theDZ.
"""
@overload
def Init(self,thePnt1 : OCP.gp.gp_Pnt,thePnt2 : OCP.gp.gp_Pnt) -> None: ...
@overload
def Init(self,theDX : float,theDY : float,theDZ : float) -> None: ...
@overload
def Init(self,thePnt : OCP.gp.gp_Pnt,theDX : float,theDY : float,theDZ : float) -> None: ...
def IsDeleted(self,S : OCP.TopoDS.TopoDS_Shape) -> bool:
"""
Returns true if the shape S has been deleted.
"""
def IsDone(self) -> bool:
"""
None
"""
def LeftFace(self) -> OCP.TopoDS.TopoDS_Face:
"""
Returns YMin face
"""
def Modified(self,S : OCP.TopoDS.TopoDS_Shape) -> OCP.TopTools.TopTools_ListOfShape:
"""
Returns the list of shapes modified from the shape <S>.
"""
def RightFace(self) -> OCP.TopoDS.TopoDS_Face:
"""
Returns YMax face
"""
def Shape(self) -> OCP.TopoDS.TopoDS_Shape:
"""
Returns a shape built by the shape construction algorithm. Raises exception StdFail_NotDone if the shape was not built.
"""
def Shell(self) -> OCP.TopoDS.TopoDS_Shell:
"""
Returns the constructed box as a shell.
"""
def Solid(self) -> OCP.TopoDS.TopoDS_Solid:
"""
Returns the constructed box as a solid.
"""
def TopFace(self) -> OCP.TopoDS.TopoDS_Face:
"""
Returns ZMax face
"""
def Wedge(self) -> OCP.BRepPrim.BRepPrim_Wedge:
"""
Returns the internal algorithm.
"""
def __bool__(self) -> bool:
"""
Check if command is done
"""
@overload
def __init__(self,P : OCP.gp.gp_Pnt,dx : float,dy : float,dz : float) -> None: ...
@overload
def __init__(self) -> None: ...
@overload
def __init__(self,Axes : OCP.gp.gp_Ax2,dx : float,dy : float,dz : float) -> None: ...
@overload
def __init__(self,P1 : OCP.gp.gp_Pnt,P2 : OCP.gp.gp_Pnt) -> None: ...
@overload
def __init__(self,dx : float,dy : float,dz : float) -> None: ...
pass
class BRepPrimAPI_MakeOneAxis(OCP.BRepBuilderAPI.BRepBuilderAPI_MakeShape, OCP.BRepBuilderAPI.BRepBuilderAPI_Command):
"""
The abstract class MakeOneAxis is the root class of algorithms used to construct rotational primitives.
"""
def Build(self,theRange : OCP.Message.Message_ProgressRange=OCP.Message.Message_ProgressRange) -> None:
"""
Stores the solid in myShape.
"""
def Check(self) -> None:
"""
Raises NotDone if done is false.
"""
def Face(self) -> OCP.TopoDS.TopoDS_Face:
"""
Returns the lateral face of the rotational primitive.
"""
def Generated(self,S : OCP.TopoDS.TopoDS_Shape) -> OCP.TopTools.TopTools_ListOfShape:
"""
Returns the list of shapes generated from the shape <S>.
"""
def IsDeleted(self,S : OCP.TopoDS.TopoDS_Shape) -> bool:
"""
Returns true if the shape S has been deleted.
"""
def IsDone(self) -> bool:
"""
None
"""
def Modified(self,S : OCP.TopoDS.TopoDS_Shape) -> OCP.TopTools.TopTools_ListOfShape:
"""
Returns the list of shapes modified from the shape <S>.
"""
def OneAxis(self) -> capsule:
"""
The inherited commands should provide the algorithm. Returned as a pointer.
"""
def Shape(self) -> OCP.TopoDS.TopoDS_Shape:
"""
Returns a shape built by the shape construction algorithm. Raises exception StdFail_NotDone if the shape was not built.
"""
def Shell(self) -> OCP.TopoDS.TopoDS_Shell:
"""
Returns the constructed rotational primitive as a shell.
"""
def Solid(self) -> OCP.TopoDS.TopoDS_Solid:
"""
Returns the constructed rotational primitive as a solid.
"""
def __bool__(self) -> bool:
"""
Check if command is done
"""
pass
class BRepPrimAPI_MakeCylinder(BRepPrimAPI_MakeOneAxis, OCP.BRepBuilderAPI.BRepBuilderAPI_MakeShape, OCP.BRepBuilderAPI.BRepBuilderAPI_Command):
"""
Describes functions to build cylinders or portions of cylinders. A MakeCylinder object provides a framework for: - defining the construction of a cylinder, - implementing the construction algorithm, and - consulting the result.
"""
def Build(self,theRange : OCP.Message.Message_ProgressRange=OCP.Message.Message_ProgressRange) -> None:
"""
Stores the solid in myShape.
"""
def Check(self) -> None:
"""
Raises NotDone if done is false.
"""
def Cylinder(self) -> OCP.BRepPrim.BRepPrim_Cylinder:
"""
Returns the algorithm.
"""
def Face(self) -> OCP.TopoDS.TopoDS_Face:
"""
Returns the lateral face of the rotational primitive.
"""
def Generated(self,S : OCP.TopoDS.TopoDS_Shape) -> OCP.TopTools.TopTools_ListOfShape:
"""
Returns the list of shapes generated from the shape <S>.
"""
def IsDeleted(self,S : OCP.TopoDS.TopoDS_Shape) -> bool:
"""
Returns true if the shape S has been deleted.
"""
def IsDone(self) -> bool:
"""
None
"""
def Modified(self,S : OCP.TopoDS.TopoDS_Shape) -> OCP.TopTools.TopTools_ListOfShape:
"""
Returns the list of shapes modified from the shape <S>.
"""
def OneAxis(self) -> capsule:
"""
Returns the algorithm.
"""
def Shape(self) -> OCP.TopoDS.TopoDS_Shape:
"""
Returns a shape built by the shape construction algorithm. Raises exception StdFail_NotDone if the shape was not built.
"""
def Shell(self) -> OCP.TopoDS.TopoDS_Shell:
"""
Returns the constructed rotational primitive as a shell.
"""
def Solid(self) -> OCP.TopoDS.TopoDS_Solid:
"""
Returns the constructed rotational primitive as a solid.
"""
def __bool__(self) -> bool:
"""
Check if command is done
"""
@overload
def __init__(self,R : float,H : float) -> None: ...
@overload
def __init__(self,Axes : OCP.gp.gp_Ax2,R : float,H : float,Angle : float) -> None: ...
@overload
def __init__(self,Axes : OCP.gp.gp_Ax2,R : float,H : float) -> None: ...
@overload
def __init__(self,R : float,H : float,Angle : float) -> None: ...
pass
class BRepPrimAPI_MakeHalfSpace(OCP.BRepBuilderAPI.BRepBuilderAPI_MakeShape, OCP.BRepBuilderAPI.BRepBuilderAPI_Command):
"""
Describes functions to build half-spaces. A half-space is an infinite solid, limited by a surface. It is built from a face or a shell, which bounds it, and with a reference point, which specifies the side of the surface where the matter of the half-space is located. A half-space is a tool commonly used in topological operations to cut another shape. A MakeHalfSpace object provides a framework for: - defining and implementing the construction of a half-space, and - consulting the result.
"""
def Build(self,theRange : OCP.Message.Message_ProgressRange=OCP.Message.Message_ProgressRange) -> None:
"""
This is called by Shape(). It does nothing but may be redefined.
"""
def Check(self) -> None:
"""
Raises NotDone if done is false.
"""
def Generated(self,S : OCP.TopoDS.TopoDS_Shape) -> OCP.TopTools.TopTools_ListOfShape:
"""
Returns the list of shapes generated from the shape <S>.
"""
def IsDeleted(self,S : OCP.TopoDS.TopoDS_Shape) -> bool:
"""
Returns true if the shape S has been deleted.
"""
def IsDone(self) -> bool:
"""
None
"""
def Modified(self,S : OCP.TopoDS.TopoDS_Shape) -> OCP.TopTools.TopTools_ListOfShape:
"""
Returns the list of shapes modified from the shape <S>.
"""
def Shape(self) -> OCP.TopoDS.TopoDS_Shape:
"""
Returns a shape built by the shape construction algorithm. Raises exception StdFail_NotDone if the shape was not built.
"""
def Solid(self) -> OCP.TopoDS.TopoDS_Solid:
"""
Returns the constructed half-space as a solid.
"""
def __bool__(self) -> bool:
"""
Check if command is done
"""
@overload
def __init__(self,Shell : OCP.TopoDS.TopoDS_Shell,RefPnt : OCP.gp.gp_Pnt) -> None: ...
@overload
def __init__(self,Face : OCP.TopoDS.TopoDS_Face,RefPnt : OCP.gp.gp_Pnt) -> None: ...
pass
class BRepPrimAPI_MakeCone(BRepPrimAPI_MakeOneAxis, OCP.BRepBuilderAPI.BRepBuilderAPI_MakeShape, OCP.BRepBuilderAPI.BRepBuilderAPI_Command):
"""
Describes functions to build cones or portions of cones. A MakeCone object provides a framework for: - defining the construction of a cone, - implementing the construction algorithm, and - consulting the result.
"""
def Build(self,theRange : OCP.Message.Message_ProgressRange=OCP.Message.Message_ProgressRange) -> None:
"""
Stores the solid in myShape.
"""
def Check(self) -> None:
"""
Raises NotDone if done is false.
"""
def Cone(self) -> OCP.BRepPrim.BRepPrim_Cone:
"""
Returns the algorithm.
"""
def Face(self) -> OCP.TopoDS.TopoDS_Face:
"""
Returns the lateral face of the rotational primitive.
"""
def Generated(self,S : OCP.TopoDS.TopoDS_Shape) -> OCP.TopTools.TopTools_ListOfShape:
"""
Returns the list of shapes generated from the shape <S>.
"""
def IsDeleted(self,S : OCP.TopoDS.TopoDS_Shape) -> bool:
"""
Returns true if the shape S has been deleted.
"""
def IsDone(self) -> bool:
"""
None
"""
def Modified(self,S : OCP.TopoDS.TopoDS_Shape) -> OCP.TopTools.TopTools_ListOfShape:
"""
Returns the list of shapes modified from the shape <S>.
"""
def OneAxis(self) -> capsule:
"""
Returns the algorithm.
"""
def Shape(self) -> OCP.TopoDS.TopoDS_Shape:
"""
Returns a shape built by the shape construction algorithm. Raises exception StdFail_NotDone if the shape was not built.
"""
def Shell(self) -> OCP.TopoDS.TopoDS_Shell:
"""
Returns the constructed rotational primitive as a shell.
"""
def Solid(self) -> OCP.TopoDS.TopoDS_Solid:
"""
Returns the constructed rotational primitive as a solid.
"""
def __bool__(self) -> bool:
"""
Check if command is done
"""
@overload
def __init__(self,Axes : OCP.gp.gp_Ax2,R1 : float,R2 : float,H : float) -> None: ...
@overload
def __init__(self,R1 : float,R2 : float,H : float,angle : float) -> None: ...
@overload
def __init__(self,Axes : OCP.gp.gp_Ax2,R1 : float,R2 : float,H : float,angle : float) -> None: ...
@overload
def __init__(self,R1 : float,R2 : float,H : float) -> None: ...
pass
class BRepPrimAPI_MakeSweep(OCP.BRepBuilderAPI.BRepBuilderAPI_MakeShape, OCP.BRepBuilderAPI.BRepBuilderAPI_Command):
"""
The abstract class MakeSweep is the root class of swept primitives. Sweeps are objects you obtain by sweeping a profile along a path. The profile can be any topology and the path is usually a curve or a wire. The profile generates objects according to the following rules: - Vertices generate Edges - Edges generate Faces. - Wires generate Shells. - Faces generate Solids. - Shells generate Composite Solids. You are not allowed to sweep Solids and Composite Solids. Two kinds of sweeps are implemented in the BRepPrimAPI package: - The linear sweep called a Prism - The rotational sweep called a Revol Swept constructions along complex profiles such as BSpline curves are also available in the BRepOffsetAPI package..
"""
def Build(self,theRange : OCP.Message.Message_ProgressRange=OCP.Message.Message_ProgressRange) -> None:
"""
This is called by Shape(). It does nothing but may be redefined.
"""
def Check(self) -> None:
"""
Raises NotDone if done is false.
"""
def FirstShape(self) -> OCP.TopoDS.TopoDS_Shape:
"""
Returns the TopoDS Shape of the bottom of the sweep.
"""
def Generated(self,S : OCP.TopoDS.TopoDS_Shape) -> OCP.TopTools.TopTools_ListOfShape:
"""
Returns the list of shapes generated from the shape <S>.
"""
def IsDeleted(self,S : OCP.TopoDS.TopoDS_Shape) -> bool:
"""
Returns true if the shape S has been deleted.
"""
def IsDone(self) -> bool:
"""
None
"""
def LastShape(self) -> OCP.TopoDS.TopoDS_Shape:
"""
Returns the TopoDS Shape of the top of the sweep.
"""
def Modified(self,S : OCP.TopoDS.TopoDS_Shape) -> OCP.TopTools.TopTools_ListOfShape:
"""
Returns the list of shapes modified from the shape <S>.
"""
def Shape(self) -> OCP.TopoDS.TopoDS_Shape:
"""
Returns a shape built by the shape construction algorithm. Raises exception StdFail_NotDone if the shape was not built.
"""
def __bool__(self) -> bool:
"""
Check if command is done
"""
pass
class BRepPrimAPI_MakeRevol(BRepPrimAPI_MakeSweep, OCP.BRepBuilderAPI.BRepBuilderAPI_MakeShape, OCP.BRepBuilderAPI.BRepBuilderAPI_Command):
"""
Class to make revolved sweep topologies.
"""
def Build(self,theRange : OCP.Message.Message_ProgressRange=OCP.Message.Message_ProgressRange) -> None:
"""
Builds the resulting shape (redefined from MakeShape).
"""
def Check(self) -> None:
"""
Raises NotDone if done is false.
"""
def Degenerated(self) -> OCP.TopTools.TopTools_ListOfShape:
"""
Returns the list of degenerated edges
"""
@overload
def FirstShape(self,theShape : OCP.TopoDS.TopoDS_Shape) -> OCP.TopoDS.TopoDS_Shape:
"""
Returns the first shape of the revol (coinciding with the generating shape).
Returns the TopoDS Shape of the beginning of the revolution, generated with theShape (subShape of the generating shape).
"""
@overload
def FirstShape(self) -> OCP.TopoDS.TopoDS_Shape: ...
def Generated(self,S : OCP.TopoDS.TopoDS_Shape) -> OCP.TopTools.TopTools_ListOfShape:
"""
Returns list of shape generated from shape S Warning: shape S must be shape of type VERTEX, EDGE, FACE, SOLID. For shapes of other types method always returns empty list
"""
def HasDegenerated(self) -> bool:
"""
Check if there are degenerated edges in the result.
"""
def IsDeleted(self,S : OCP.TopoDS.TopoDS_Shape) -> bool:
"""
Returns true if the shape S has been deleted.
"""
def IsDone(self) -> bool:
"""
None
"""
@overload
def LastShape(self) -> OCP.TopoDS.TopoDS_Shape:
"""
Returns the TopoDS Shape of the end of the revol.
Returns the TopoDS Shape of the end of the revolution, generated with theShape (subShape of the generating shape).
"""
@overload
def LastShape(self,theShape : OCP.TopoDS.TopoDS_Shape) -> OCP.TopoDS.TopoDS_Shape: ...
def Modified(self,S : OCP.TopoDS.TopoDS_Shape) -> OCP.TopTools.TopTools_ListOfShape:
"""
Returns the list of shapes modified from the shape <S>.
"""
def Revol(self) -> OCP.BRepSweep.BRepSweep_Revol:
"""
Returns the internal sweeping algorithm.
"""
def Shape(self) -> OCP.TopoDS.TopoDS_Shape:
"""
Returns a shape built by the shape construction algorithm. Raises exception StdFail_NotDone if the shape was not built.
"""
def __bool__(self) -> bool:
"""
Check if command is done
"""
@overload
def __init__(self,S : OCP.TopoDS.TopoDS_Shape,A : OCP.gp.gp_Ax1,D : float,Copy : bool=False) -> None: ...
@overload
def __init__(self,S : OCP.TopoDS.TopoDS_Shape,A : OCP.gp.gp_Ax1,Copy : bool=False) -> None: ...
pass
class BRepPrimAPI_MakeRevolution(BRepPrimAPI_MakeOneAxis, OCP.BRepBuilderAPI.BRepBuilderAPI_MakeShape, OCP.BRepBuilderAPI.BRepBuilderAPI_Command):
"""
Describes functions to build revolved shapes. A MakeRevolution object provides a framework for: - defining the construction of a revolved shape, - implementing the construction algorithm, and - consulting the result.
"""
def Build(self,theRange : OCP.Message.Message_ProgressRange=OCP.Message.Message_ProgressRange) -> None:
"""
Stores the solid in myShape.
"""
def Check(self) -> None:
"""
Raises NotDone if done is false.
"""
def Face(self) -> OCP.TopoDS.TopoDS_Face:
"""
Returns the lateral face of the rotational primitive.
"""
def Generated(self,S : OCP.TopoDS.TopoDS_Shape) -> OCP.TopTools.TopTools_ListOfShape:
"""
Returns the list of shapes generated from the shape <S>.
"""
def IsDeleted(self,S : OCP.TopoDS.TopoDS_Shape) -> bool:
"""
Returns true if the shape S has been deleted.
"""
def IsDone(self) -> bool:
"""
None
"""
def Modified(self,S : OCP.TopoDS.TopoDS_Shape) -> OCP.TopTools.TopTools_ListOfShape:
"""
Returns the list of shapes modified from the shape <S>.
"""
def OneAxis(self) -> capsule:
"""
Returns the algorithm.
"""
def Revolution(self) -> OCP.BRepPrim.BRepPrim_Revolution:
"""
Returns the algorithm.
"""
def Shape(self) -> OCP.TopoDS.TopoDS_Shape:
"""
Returns a shape built by the shape construction algorithm. Raises exception StdFail_NotDone if the shape was not built.
"""
def Shell(self) -> OCP.TopoDS.TopoDS_Shell:
"""
Returns the constructed rotational primitive as a shell.
"""
def Solid(self) -> OCP.TopoDS.TopoDS_Solid:
"""
Returns the constructed rotational primitive as a solid.
"""
def __bool__(self) -> bool:
"""
Check if command is done
"""
@overload
def __init__(self,Meridian : OCP.Geom.Geom_Curve,VMin : float,VMax : float) -> None: ...
@overload
def __init__(self,Axes : OCP.gp.gp_Ax2,Meridian : OCP.Geom.Geom_Curve,VMin : float,VMax : float,angle : float) -> None: ...
@overload
def __init__(self,Meridian : OCP.Geom.Geom_Curve,angle : float) -> None: ...
@overload
def __init__(self,Meridian : OCP.Geom.Geom_Curve,VMin : float,VMax : float,angle : float) -> None: ...
@overload
def __init__(self,Axes : OCP.gp.gp_Ax2,Meridian : OCP.Geom.Geom_Curve) -> None: ...
@overload
def __init__(self,Meridian : OCP.Geom.Geom_Curve) -> None: ...
@overload
def __init__(self,Axes : OCP.gp.gp_Ax2,Meridian : OCP.Geom.Geom_Curve,VMin : float,VMax : float) -> None: ...
@overload
def __init__(self,Axes : OCP.gp.gp_Ax2,Meridian : OCP.Geom.Geom_Curve,angle : float) -> None: ...
pass
class BRepPrimAPI_MakeSphere(BRepPrimAPI_MakeOneAxis, OCP.BRepBuilderAPI.BRepBuilderAPI_MakeShape, OCP.BRepBuilderAPI.BRepBuilderAPI_Command):
"""
Describes functions to build spheres or portions of spheres. A MakeSphere object provides a framework for: - defining the construction of a sphere, - implementing the construction algorithm, and - consulting the result.
"""
def Build(self,theRange : OCP.Message.Message_ProgressRange=OCP.Message.Message_ProgressRange) -> None:
"""
Stores the solid in myShape.
"""
def Check(self) -> None:
"""
Raises NotDone if done is false.
"""
def Face(self) -> OCP.TopoDS.TopoDS_Face:
"""
Returns the lateral face of the rotational primitive.
"""
def Generated(self,S : OCP.TopoDS.TopoDS_Shape) -> OCP.TopTools.TopTools_ListOfShape:
"""
Returns the list of shapes generated from the shape <S>.
"""
def IsDeleted(self,S : OCP.TopoDS.TopoDS_Shape) -> bool:
"""
Returns true if the shape S has been deleted.
"""
def IsDone(self) -> bool:
"""
None
"""
def Modified(self,S : OCP.TopoDS.TopoDS_Shape) -> OCP.TopTools.TopTools_ListOfShape:
"""
Returns the list of shapes modified from the shape <S>.
"""
def OneAxis(self) -> capsule:
"""
Returns the algorithm.
"""
def Shape(self) -> OCP.TopoDS.TopoDS_Shape:
"""
Returns a shape built by the shape construction algorithm. Raises exception StdFail_NotDone if the shape was not built.
"""
def Shell(self) -> OCP.TopoDS.TopoDS_Shell:
"""
Returns the constructed rotational primitive as a shell.
"""
def Solid(self) -> OCP.TopoDS.TopoDS_Solid:
"""
Returns the constructed rotational primitive as a solid.
"""
def Sphere(self) -> OCP.BRepPrim.BRepPrim_Sphere:
"""
Returns the algorithm.
"""
def __bool__(self) -> bool:
"""
Check if command is done
"""
@overload
def __init__(self,Center : OCP.gp.gp_Pnt,R : float,angle1 : float,angle2 : float,angle3 : float) -> None: ...
@overload
def __init__(self,Axis : OCP.gp.gp_Ax2,R : float,angle : float) -> None: ...
@overload
def __init__(self,Axis : OCP.gp.gp_Ax2,R : float,angle1 : float,angle2 : float,angle3 : float) -> None: ...
@overload
def __init__(self,Center : OCP.gp.gp_Pnt,R : float) -> None: ...
@overload
def __init__(self,Center : OCP.gp.gp_Pnt,R : float,angle : float) -> None: ...
@overload
def __init__(self,Center : OCP.gp.gp_Pnt,R : float,angle1 : float,angle2 : float) -> None: ...
@overload
def __init__(self,R : float,angle1 : float,angle2 : float,angle3 : float) -> None: ...
@overload
def __init__(self,Axis : OCP.gp.gp_Ax2,R : float) -> None: ...
@overload
def __init__(self,R : float) -> None: ...
@overload
def __init__(self,R : float,angle1 : float,angle2 : float) -> None: ...
@overload
def __init__(self,R : float,angle : float) -> None: ...
@overload
def __init__(self,Axis : OCP.gp.gp_Ax2,R : float,angle1 : float,angle2 : float) -> None: ...
pass
class BRepPrimAPI_MakePrism(BRepPrimAPI_MakeSweep, OCP.BRepBuilderAPI.BRepBuilderAPI_MakeShape, OCP.BRepBuilderAPI.BRepBuilderAPI_Command):
"""
Describes functions to build linear swept topologies, called prisms. A prism is defined by: - a basis shape, which is swept, and - a sweeping direction, which is: - a vector for finite prisms, or - a direction for infinite or semi-infinite prisms. The basis shape must not contain any solids. The profile generates objects according to the following rules: - Vertices generate Edges - Edges generate Faces. - Wires generate Shells. - Faces generate Solids. - Shells generate Composite Solids A MakePrism object provides a framework for: - defining the construction of a prism, - implementing the construction algorithm, and - consulting the result.
"""
def Build(self,theRange : OCP.Message.Message_ProgressRange=OCP.Message.Message_ProgressRange) -> None:
"""
Builds the resulting shape (redefined from MakeShape).
"""
def Check(self) -> None:
"""
Raises NotDone if done is false.
"""
@overload
def FirstShape(self,theShape : OCP.TopoDS.TopoDS_Shape) -> OCP.TopoDS.TopoDS_Shape:
"""
Returns the TopoDS Shape of the bottom of the prism.
Returns the TopoDS Shape of the bottom of the prism. generated with theShape (subShape of the generating shape).
"""
@overload
def FirstShape(self) -> OCP.TopoDS.TopoDS_Shape: ...
def Generated(self,S : OCP.TopoDS.TopoDS_Shape) -> OCP.TopTools.TopTools_ListOfShape:
"""
Returns ListOfShape from TopTools.
"""
def IsDeleted(self,S : OCP.TopoDS.TopoDS_Shape) -> bool:
"""
Returns true if the shape S has been deleted.
"""
def IsDone(self) -> bool:
"""
None
"""
@overload
def LastShape(self,theShape : OCP.TopoDS.TopoDS_Shape) -> OCP.TopoDS.TopoDS_Shape:
"""
Returns the TopoDS Shape of the top of the prism. In the case of a finite prism, FirstShape returns the basis of the prism, in other words, S if Copy is false; otherwise, the copy of S belonging to the prism. LastShape returns the copy of S translated by V at the time of construction.
Returns the TopoDS Shape of the top of the prism. generated with theShape (subShape of the generating shape).
"""
@overload
def LastShape(self) -> OCP.TopoDS.TopoDS_Shape: ...
def Modified(self,S : OCP.TopoDS.TopoDS_Shape) -> OCP.TopTools.TopTools_ListOfShape:
"""
Returns the list of shapes modified from the shape <S>.
"""
def Prism(self) -> OCP.BRepSweep.BRepSweep_Prism:
"""
Returns the internal sweeping algorithm.
"""
def Shape(self) -> OCP.TopoDS.TopoDS_Shape:
"""
Returns a shape built by the shape construction algorithm. Raises exception StdFail_NotDone if the shape was not built.
"""
def __bool__(self) -> bool:
"""
Check if command is done
"""
@overload
def __init__(self,S : OCP.TopoDS.TopoDS_Shape,V : OCP.gp.gp_Vec,Copy : bool=False,Canonize : bool=True) -> None: ...
@overload
def __init__(self,S : OCP.TopoDS.TopoDS_Shape,D : OCP.gp.gp_Dir,Inf : bool=True,Copy : bool=False,Canonize : bool=True) -> None: ...
pass
class BRepPrimAPI_MakeTorus(BRepPrimAPI_MakeOneAxis, OCP.BRepBuilderAPI.BRepBuilderAPI_MakeShape, OCP.BRepBuilderAPI.BRepBuilderAPI_Command):
"""
Describes functions to build tori or portions of tori. A MakeTorus object provides a framework for: - defining the construction of a torus, - implementing the construction algorithm, and - consulting the result.
"""
def Build(self,theRange : OCP.Message.Message_ProgressRange=OCP.Message.Message_ProgressRange) -> None:
"""
Stores the solid in myShape.
"""
def Check(self) -> None:
"""
Raises NotDone if done is false.
"""
def Face(self) -> OCP.TopoDS.TopoDS_Face:
"""
Returns the lateral face of the rotational primitive.
"""
def Generated(self,S : OCP.TopoDS.TopoDS_Shape) -> OCP.TopTools.TopTools_ListOfShape:
"""
Returns the list of shapes generated from the shape <S>.
"""
def IsDeleted(self,S : OCP.TopoDS.TopoDS_Shape) -> bool:
"""
Returns true if the shape S has been deleted.
"""
def IsDone(self) -> bool:
"""
None
"""
def Modified(self,S : OCP.TopoDS.TopoDS_Shape) -> OCP.TopTools.TopTools_ListOfShape:
"""
Returns the list of shapes modified from the shape <S>.
"""
def OneAxis(self) -> capsule:
"""
Returns the algorithm.
"""
def Shape(self) -> OCP.TopoDS.TopoDS_Shape:
"""
Returns a shape built by the shape construction algorithm. Raises exception StdFail_NotDone if the shape was not built.
"""
def Shell(self) -> OCP.TopoDS.TopoDS_Shell:
"""
Returns the constructed rotational primitive as a shell.
"""
def Solid(self) -> OCP.TopoDS.TopoDS_Solid:
"""
Returns the constructed rotational primitive as a solid.
"""
def Torus(self) -> OCP.BRepPrim.BRepPrim_Torus:
"""
Returns the algorithm.
"""
def __bool__(self) -> bool:
"""
Check if command is done
"""
@overload
def __init__(self,R1 : float,R2 : float) -> None: ...
@overload
def __init__(self,Axes : OCP.gp.gp_Ax2,R1 : float,R2 : float,angle1 : float,angle2 : float,angle : float) -> None: ...
@overload
def __init__(self,Axes : OCP.gp.gp_Ax2,R1 : float,R2 : float,angle1 : float,angle2 : float) -> None: ...
@overload
def __init__(self,Axes : OCP.gp.gp_Ax2,R1 : float,R2 : float,angle : float) -> None: ...
@overload
def __init__(self,R1 : float,R2 : float,angle : float) -> None: ...
@overload
def __init__(self,Axes : OCP.gp.gp_Ax2,R1 : float,R2 : float) -> None: ...
@overload
def __init__(self,R1 : float,R2 : float,angle1 : float,angle2 : float,angle : float) -> None: ...
@overload
def __init__(self,R1 : float,R2 : float,angle1 : float,angle2 : float) -> None: ...
pass
class BRepPrimAPI_MakeWedge(OCP.BRepBuilderAPI.BRepBuilderAPI_MakeShape, OCP.BRepBuilderAPI.BRepBuilderAPI_Command):
"""
Describes functions to build wedges, i.e. boxes with inclined faces. A MakeWedge object provides a framework for: - defining the construction of a wedge, - implementing the construction algorithm, and - consulting the result.
"""
def Build(self,theRange : OCP.Message.Message_ProgressRange=OCP.Message.Message_ProgressRange) -> None:
"""
Stores the solid in myShape.
"""
def Check(self) -> None:
"""
Raises NotDone if done is false.
"""
def Generated(self,S : OCP.TopoDS.TopoDS_Shape) -> OCP.TopTools.TopTools_ListOfShape:
"""
Returns the list of shapes generated from the shape <S>.
"""
def IsDeleted(self,S : OCP.TopoDS.TopoDS_Shape) -> bool:
"""
Returns true if the shape S has been deleted.
"""
def IsDone(self) -> bool:
"""
None
"""
def Modified(self,S : OCP.TopoDS.TopoDS_Shape) -> OCP.TopTools.TopTools_ListOfShape:
"""
Returns the list of shapes modified from the shape <S>.
"""
def Shape(self) -> OCP.TopoDS.TopoDS_Shape:
"""
Returns a shape built by the shape construction algorithm. Raises exception StdFail_NotDone if the shape was not built.
"""
def Shell(self) -> OCP.TopoDS.TopoDS_Shell:
"""
Returns the constructed box in the form of a shell.
"""
def Solid(self) -> OCP.TopoDS.TopoDS_Solid:
"""
Returns the constructed box in the form of a solid.
"""
def Wedge(self) -> OCP.BRepPrim.BRepPrim_Wedge:
"""
Returns the internal algorithm.
"""
def __bool__(self) -> bool:
"""
Check if command is done
"""
@overload
def __init__(self,Axes : OCP.gp.gp_Ax2,dx : float,dy : float,dz : float,xmin : float,zmin : float,xmax : float,zmax : float) -> None: ...
@overload
def __init__(self,dx : float,dy : float,dz : float,xmin : float,zmin : float,xmax : float,zmax : float) -> None: ...
@overload
def __init__(self,dx : float,dy : float,dz : float,ltx : float) -> None: ...
@overload
def __init__(self,Axes : OCP.gp.gp_Ax2,dx : float,dy : float,dz : float,ltx : float) -> None: ...
pass
|