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
|
// std lib related includes
#include <tuple>
// pybind 11 related includes
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
namespace py = pybind11;
// Standard Handle
#include <Standard_Handle.hxx>
// includes to resolve forward declarations
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <TCollection_HAsciiString.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <StepShape_ManifoldSolidBrep.hxx>
#include <Transfer_TransientProcess.hxx>
#include <StepShape_BrepWithVoids.hxx>
#include <StepShape_FacetedBrep.hxx>
#include <StepShape_FacetedBrepAndBrepWithVoids.hxx>
#include <StepShape_ShellBasedSurfaceModel.hxx>
#include <StepToTopoDS_NMTool.hxx>
#include <StepShape_GeometricSet.hxx>
#include <StepShape_EdgeBasedWireframeModel.hxx>
#include <StepShape_FaceBasedSurfaceModel.hxx>
#include <StepVisual_TessellatedFace.hxx>
#include <StepVisual_TessellatedShell.hxx>
#include <StepVisual_TessellatedSolid.hxx>
#include <StepVisual_TessellatedSurfaceSet.hxx>
#include <Transfer_ActorOfTransientProcess.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <StepGeom_SurfaceCurve.hxx>
#include <StepGeom_Surface.hxx>
#include <StepGeom_Pcurve.hxx>
#include <StepShape_Edge.hxx>
#include <StepShape_EdgeLoop.hxx>
#include <Geom_Curve.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <StepData_Factors.hxx>
#include <StepGeom_Axis2Placement3d.hxx>
#include <StepGeom_CartesianTransformationOperator3d.hxx>
#include <TopoDS_Shape.hxx>
#include <StepRepr_MappedItem.hxx>
#include <Transfer_TransientProcess.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <StepGeom_CartesianPoint.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Transfer_TransientProcess.hxx>
#include <Geom_Surface.hxx>
#include <Geom_Curve.hxx>
#include <Geom2d_Curve.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <StepGeom_CompositeCurve.hxx>
#include <Transfer_TransientProcess.hxx>
#include <StepGeom_Surface.hxx>
#include <Geom_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <StepGeom_CurveBoundedSurface.hxx>
#include <Transfer_TransientProcess.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <StepData_Factors.hxx>
#include <StepShape_Edge.hxx>
#include <StepToTopoDS_Tool.hxx>
#include <StepToTopoDS_NMTool.hxx>
#include <StepGeom_Curve.hxx>
#include <StepShape_EdgeCurve.hxx>
#include <StepShape_Vertex.hxx>
#include <TopoDS_Edge.hxx>
#include <TopoDS_Vertex.hxx>
#include <Geom2d_Curve.hxx>
#include <StepGeom_Pcurve.hxx>
#include <Geom_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <StepShape_FaceBound.hxx>
#include <TopoDS_Face.hxx>
#include <Geom_Surface.hxx>
#include <StepGeom_Surface.hxx>
#include <StepToTopoDS_Tool.hxx>
#include <StepToTopoDS_NMTool.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Poly_Triangulation.hxx>
#include <StepData_Factors.hxx>
#include <StepShape_FaceSurface.hxx>
#include <StepToTopoDS_Tool.hxx>
#include <StepToTopoDS_NMTool.hxx>
#include <StepVisual_ComplexTriangulatedFace.hxx>
#include <StepVisual_TessellatedFace.hxx>
#include <StepVisual_TessellatedItem.hxx>
#include <StepVisual_TessellatedSurfaceSet.hxx>
#include <StepVisual_TriangulatedFace.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <StepData_Factors.hxx>
#include <StepShape_PolyLoop.hxx>
#include <StepToTopoDS_Tool.hxx>
#include <Geom_Surface.hxx>
#include <TopoDS_Face.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <StepShape_ConnectedFaceSet.hxx>
#include <StepVisual_TessellatedShell.hxx>
#include <StepToTopoDS_Tool.hxx>
#include <StepToTopoDS_NMTool.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <StepShape_ConnectedFaceSet.hxx>
#include <StepVisual_TessellatedSolid.hxx>
#include <StepToTopoDS_Tool.hxx>
#include <StepToTopoDS_NMTool.hxx>
#include <Transfer_TransientProcess.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <StepData_Factors.hxx>
#include <StepShape_Vertex.hxx>
#include <StepToTopoDS_Tool.hxx>
#include <StepToTopoDS_NMTool.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <StepData_Factors.hxx>
#include <StepShape_VertexLoop.hxx>
#include <StepToTopoDS_Tool.hxx>
#include <StepToTopoDS_NMTool.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
// module includes
#include <StepToTopoDS.hxx>
#include <StepToTopoDS_Builder.hxx>
#include <StepToTopoDS_BuilderError.hxx>
#include <StepToTopoDS_DataMapIteratorOfDataMapOfRI.hxx>
#include <StepToTopoDS_DataMapIteratorOfDataMapOfRINames.hxx>
#include <StepToTopoDS_DataMapIteratorOfDataMapOfTRI.hxx>
#include <StepToTopoDS_DataMapIteratorOfPointEdgeMap.hxx>
#include <StepToTopoDS_DataMapIteratorOfPointVertexMap.hxx>
#include <StepToTopoDS_DataMapOfRI.hxx>
#include <StepToTopoDS_DataMapOfRINames.hxx>
#include <StepToTopoDS_DataMapOfTRI.hxx>
#include <StepToTopoDS_GeometricTool.hxx>
#include <StepToTopoDS_GeometricToolError.hxx>
#include <StepToTopoDS_MakeTransformed.hxx>
#include <StepToTopoDS_NMTool.hxx>
#include <StepToTopoDS_PointEdgeMap.hxx>
#include <StepToTopoDS_PointPair.hxx>
#include <StepToTopoDS_PointVertexMap.hxx>
#include <StepToTopoDS_Root.hxx>
#include <StepToTopoDS_Tool.hxx>
#include <StepToTopoDS_TranslateCompositeCurve.hxx>
#include <StepToTopoDS_TranslateCurveBoundedSurface.hxx>
#include <StepToTopoDS_TranslateEdge.hxx>
#include <StepToTopoDS_TranslateEdgeError.hxx>
#include <StepToTopoDS_TranslateEdgeLoop.hxx>
#include <StepToTopoDS_TranslateEdgeLoopError.hxx>
#include <StepToTopoDS_TranslateFace.hxx>
#include <StepToTopoDS_TranslateFaceError.hxx>
#include <StepToTopoDS_TranslatePolyLoop.hxx>
#include <StepToTopoDS_TranslatePolyLoopError.hxx>
#include <StepToTopoDS_TranslateShell.hxx>
#include <StepToTopoDS_TranslateShellError.hxx>
#include <StepToTopoDS_TranslateSolid.hxx>
#include <StepToTopoDS_TranslateSolidError.hxx>
#include <StepToTopoDS_TranslateVertex.hxx>
#include <StepToTopoDS_TranslateVertexError.hxx>
#include <StepToTopoDS_TranslateVertexLoop.hxx>
#include <StepToTopoDS_TranslateVertexLoopError.hxx>
// template related includes
// ./opencascade/StepToTopoDS_DataMapOfRI.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/StepToTopoDS_DataMapOfRI.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/StepToTopoDS_DataMapOfRINames.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/StepToTopoDS_DataMapOfRINames.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/StepToTopoDS_DataMapOfTRI.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/StepToTopoDS_DataMapOfTRI.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/StepToTopoDS_PointEdgeMap.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/StepToTopoDS_PointEdgeMap.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/StepToTopoDS_PointVertexMap.hxx
#include "NCollection_tmpl.hxx"
// ./opencascade/StepToTopoDS_PointVertexMap.hxx
#include "NCollection_tmpl.hxx"
// user-defined pre
#include "OCP_specific.inc"
// user-defined inclusion per module
// Module definiiton
void register_StepToTopoDS(py::module &main_module) {
py::module m = static_cast<py::module>(main_module.attr("StepToTopoDS"));
py::object klass;
//Python trampoline classes
// classes
// Class StepToTopoDS from ./opencascade/StepToTopoDS.hxx
klass = m.attr("StepToTopoDS");
// default constructor
register_default_constructor<StepToTopoDS , shared_ptr<StepToTopoDS>>(m,"StepToTopoDS");
// nested enums
static_cast<py::class_<StepToTopoDS , shared_ptr<StepToTopoDS> >>(klass)
// constructors
// custom constructors
// methods
// methods using call by reference i.s.o. return
// static methods
.def_static("DecodeBuilderError_s",
(opencascade::handle<TCollection_HAsciiString> (*)( const StepToTopoDS_BuilderError ) ) static_cast<opencascade::handle<TCollection_HAsciiString> (*)( const StepToTopoDS_BuilderError ) >(&StepToTopoDS::DecodeBuilderError),
R"#(None)#" , py::arg("Error")
)
.def_static("DecodeShellError_s",
(opencascade::handle<TCollection_HAsciiString> (*)( const StepToTopoDS_TranslateShellError ) ) static_cast<opencascade::handle<TCollection_HAsciiString> (*)( const StepToTopoDS_TranslateShellError ) >(&StepToTopoDS::DecodeShellError),
R"#(None)#" , py::arg("Error")
)
.def_static("DecodeFaceError_s",
(opencascade::handle<TCollection_HAsciiString> (*)( const StepToTopoDS_TranslateFaceError ) ) static_cast<opencascade::handle<TCollection_HAsciiString> (*)( const StepToTopoDS_TranslateFaceError ) >(&StepToTopoDS::DecodeFaceError),
R"#(None)#" , py::arg("Error")
)
.def_static("DecodeEdgeError_s",
(opencascade::handle<TCollection_HAsciiString> (*)( const StepToTopoDS_TranslateEdgeError ) ) static_cast<opencascade::handle<TCollection_HAsciiString> (*)( const StepToTopoDS_TranslateEdgeError ) >(&StepToTopoDS::DecodeEdgeError),
R"#(None)#" , py::arg("Error")
)
.def_static("DecodeVertexError_s",
(opencascade::handle<TCollection_HAsciiString> (*)( const StepToTopoDS_TranslateVertexError ) ) static_cast<opencascade::handle<TCollection_HAsciiString> (*)( const StepToTopoDS_TranslateVertexError ) >(&StepToTopoDS::DecodeVertexError),
R"#(None)#" , py::arg("Error")
)
.def_static("DecodeVertexLoopError_s",
(opencascade::handle<TCollection_HAsciiString> (*)( const StepToTopoDS_TranslateVertexLoopError ) ) static_cast<opencascade::handle<TCollection_HAsciiString> (*)( const StepToTopoDS_TranslateVertexLoopError ) >(&StepToTopoDS::DecodeVertexLoopError),
R"#(None)#" , py::arg("Error")
)
.def_static("DecodePolyLoopError_s",
(opencascade::handle<TCollection_HAsciiString> (*)( const StepToTopoDS_TranslatePolyLoopError ) ) static_cast<opencascade::handle<TCollection_HAsciiString> (*)( const StepToTopoDS_TranslatePolyLoopError ) >(&StepToTopoDS::DecodePolyLoopError),
R"#(None)#" , py::arg("Error")
)
.def_static("DecodeGeometricToolError_s",
(Standard_CString (*)( const StepToTopoDS_GeometricToolError ) ) static_cast<Standard_CString (*)( const StepToTopoDS_GeometricToolError ) >(&StepToTopoDS::DecodeGeometricToolError),
R"#(None)#" , py::arg("Error")
)
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class StepToTopoDS_GeometricTool from ./opencascade/StepToTopoDS_GeometricTool.hxx
klass = m.attr("StepToTopoDS_GeometricTool");
// default constructor
register_default_constructor<StepToTopoDS_GeometricTool , shared_ptr<StepToTopoDS_GeometricTool>>(m,"StepToTopoDS_GeometricTool");
// nested enums
static_cast<py::class_<StepToTopoDS_GeometricTool , shared_ptr<StepToTopoDS_GeometricTool> >>(klass)
// constructors
// custom constructors
// methods
// methods using call by reference i.s.o. return
// static methods
.def_static("PCurve_s",
(Standard_Integer (*)( const opencascade::handle<StepGeom_SurfaceCurve> & , const opencascade::handle<StepGeom_Surface> & , opencascade::handle<StepGeom_Pcurve> & , const Standard_Integer ) ) static_cast<Standard_Integer (*)( const opencascade::handle<StepGeom_SurfaceCurve> & , const opencascade::handle<StepGeom_Surface> & , opencascade::handle<StepGeom_Pcurve> & , const Standard_Integer ) >(&StepToTopoDS_GeometricTool::PCurve),
R"#(None)#" , py::arg("SC"), py::arg("S"), py::arg("PC"), py::arg("last")=static_cast<const Standard_Integer>(0)
)
.def_static("IsSeamCurve_s",
(Standard_Boolean (*)( const opencascade::handle<StepGeom_SurfaceCurve> & , const opencascade::handle<StepGeom_Surface> & , const opencascade::handle<StepShape_Edge> & , const opencascade::handle<StepShape_EdgeLoop> & ) ) static_cast<Standard_Boolean (*)( const opencascade::handle<StepGeom_SurfaceCurve> & , const opencascade::handle<StepGeom_Surface> & , const opencascade::handle<StepShape_Edge> & , const opencascade::handle<StepShape_EdgeLoop> & ) >(&StepToTopoDS_GeometricTool::IsSeamCurve),
R"#(None)#" , py::arg("SC"), py::arg("S"), py::arg("E"), py::arg("EL")
)
.def_static("IsLikeSeam_s",
(Standard_Boolean (*)( const opencascade::handle<StepGeom_SurfaceCurve> & , const opencascade::handle<StepGeom_Surface> & , const opencascade::handle<StepShape_Edge> & , const opencascade::handle<StepShape_EdgeLoop> & ) ) static_cast<Standard_Boolean (*)( const opencascade::handle<StepGeom_SurfaceCurve> & , const opencascade::handle<StepGeom_Surface> & , const opencascade::handle<StepShape_Edge> & , const opencascade::handle<StepShape_EdgeLoop> & ) >(&StepToTopoDS_GeometricTool::IsLikeSeam),
R"#(None)#" , py::arg("SC"), py::arg("S"), py::arg("E"), py::arg("EL")
)
.def_static("UpdateParam3d_s",
(Standard_Boolean (*)( const opencascade::handle<Geom_Curve> & , Standard_Real & , Standard_Real & , const Standard_Real ) ) static_cast<Standard_Boolean (*)( const opencascade::handle<Geom_Curve> & , Standard_Real & , Standard_Real & , const Standard_Real ) >(&StepToTopoDS_GeometricTool::UpdateParam3d),
R"#(None)#" , py::arg("C"), py::arg("w1"), py::arg("w2"), py::arg("preci")
)
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class StepToTopoDS_NMTool from ./opencascade/StepToTopoDS_NMTool.hxx
klass = m.attr("StepToTopoDS_NMTool");
// nested enums
static_cast<py::class_<StepToTopoDS_NMTool , shared_ptr<StepToTopoDS_NMTool> >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const NCollection_DataMap<opencascade::handle<StepRepr_RepresentationItem>, TopoDS_Shape> &, const NCollection_DataMap<TCollection_AsciiString, TopoDS_Shape> & >() , py::arg("MapOfRI"), py::arg("MapOfRINames") )
// custom constructors
// methods
.def("Init",
(void (StepToTopoDS_NMTool::*)( const NCollection_DataMap<opencascade::handle<StepRepr_RepresentationItem>, TopoDS_Shape> & , const NCollection_DataMap<TCollection_AsciiString, TopoDS_Shape> & ) ) static_cast<void (StepToTopoDS_NMTool::*)( const NCollection_DataMap<opencascade::handle<StepRepr_RepresentationItem>, TopoDS_Shape> & , const NCollection_DataMap<TCollection_AsciiString, TopoDS_Shape> & ) >(&StepToTopoDS_NMTool::Init),
R"#(None)#" , py::arg("MapOfRI"), py::arg("MapOfRINames")
)
.def("SetActive",
(void (StepToTopoDS_NMTool::*)( const Standard_Boolean ) ) static_cast<void (StepToTopoDS_NMTool::*)( const Standard_Boolean ) >(&StepToTopoDS_NMTool::SetActive),
R"#(None)#" , py::arg("isActive")
)
.def("IsActive",
(Standard_Boolean (StepToTopoDS_NMTool::*)() ) static_cast<Standard_Boolean (StepToTopoDS_NMTool::*)() >(&StepToTopoDS_NMTool::IsActive),
R"#(None)#"
)
.def("CleanUp",
(void (StepToTopoDS_NMTool::*)() ) static_cast<void (StepToTopoDS_NMTool::*)() >(&StepToTopoDS_NMTool::CleanUp),
R"#(None)#"
)
.def("IsBound",
(Standard_Boolean (StepToTopoDS_NMTool::*)( const opencascade::handle<StepRepr_RepresentationItem> & ) ) static_cast<Standard_Boolean (StepToTopoDS_NMTool::*)( const opencascade::handle<StepRepr_RepresentationItem> & ) >(&StepToTopoDS_NMTool::IsBound),
R"#(None)#" , py::arg("RI")
)
.def("IsBound",
(Standard_Boolean (StepToTopoDS_NMTool::*)( const TCollection_AsciiString & ) ) static_cast<Standard_Boolean (StepToTopoDS_NMTool::*)( const TCollection_AsciiString & ) >(&StepToTopoDS_NMTool::IsBound),
R"#(None)#" , py::arg("RIName")
)
.def("Bind",
(void (StepToTopoDS_NMTool::*)( const opencascade::handle<StepRepr_RepresentationItem> & , const TopoDS_Shape & ) ) static_cast<void (StepToTopoDS_NMTool::*)( const opencascade::handle<StepRepr_RepresentationItem> & , const TopoDS_Shape & ) >(&StepToTopoDS_NMTool::Bind),
R"#(None)#" , py::arg("RI"), py::arg("S")
)
.def("Bind",
(void (StepToTopoDS_NMTool::*)( const TCollection_AsciiString & , const TopoDS_Shape & ) ) static_cast<void (StepToTopoDS_NMTool::*)( const TCollection_AsciiString & , const TopoDS_Shape & ) >(&StepToTopoDS_NMTool::Bind),
R"#(None)#" , py::arg("RIName"), py::arg("S")
)
.def("Find",
(const TopoDS_Shape & (StepToTopoDS_NMTool::*)( const opencascade::handle<StepRepr_RepresentationItem> & ) ) static_cast<const TopoDS_Shape & (StepToTopoDS_NMTool::*)( const opencascade::handle<StepRepr_RepresentationItem> & ) >(&StepToTopoDS_NMTool::Find),
R"#(None)#" , py::arg("RI")
)
.def("Find",
(const TopoDS_Shape & (StepToTopoDS_NMTool::*)( const TCollection_AsciiString & ) ) static_cast<const TopoDS_Shape & (StepToTopoDS_NMTool::*)( const TCollection_AsciiString & ) >(&StepToTopoDS_NMTool::Find),
R"#(None)#" , py::arg("RIName")
)
.def("RegisterNMEdge",
(void (StepToTopoDS_NMTool::*)( const TopoDS_Shape & ) ) static_cast<void (StepToTopoDS_NMTool::*)( const TopoDS_Shape & ) >(&StepToTopoDS_NMTool::RegisterNMEdge),
R"#(None)#" , py::arg("Edge")
)
.def("IsSuspectedAsClosing",
(Standard_Boolean (StepToTopoDS_NMTool::*)( const TopoDS_Shape & , const TopoDS_Shape & ) ) static_cast<Standard_Boolean (StepToTopoDS_NMTool::*)( const TopoDS_Shape & , const TopoDS_Shape & ) >(&StepToTopoDS_NMTool::IsSuspectedAsClosing),
R"#(None)#" , py::arg("BaseShell"), py::arg("SuspectedShell")
)
.def("IsPureNMShell",
(Standard_Boolean (StepToTopoDS_NMTool::*)( const TopoDS_Shape & ) ) static_cast<Standard_Boolean (StepToTopoDS_NMTool::*)( const TopoDS_Shape & ) >(&StepToTopoDS_NMTool::IsPureNMShell),
R"#(None)#" , py::arg("Shell")
)
.def("SetIDEASCase",
(void (StepToTopoDS_NMTool::*)( const Standard_Boolean ) ) static_cast<void (StepToTopoDS_NMTool::*)( const Standard_Boolean ) >(&StepToTopoDS_NMTool::SetIDEASCase),
R"#(None)#" , py::arg("IDEASCase")
)
.def("IsIDEASCase",
(Standard_Boolean (StepToTopoDS_NMTool::*)() ) static_cast<Standard_Boolean (StepToTopoDS_NMTool::*)() >(&StepToTopoDS_NMTool::IsIDEASCase),
R"#(None)#"
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class StepToTopoDS_PointPair from ./opencascade/StepToTopoDS_PointPair.hxx
klass = m.attr("StepToTopoDS_PointPair");
// nested enums
static_cast<py::class_<StepToTopoDS_PointPair , shared_ptr<StepToTopoDS_PointPair> >>(klass)
// constructors
.def(py::init< const opencascade::handle<StepGeom_CartesianPoint> &,const opencascade::handle<StepGeom_CartesianPoint> & >() , py::arg("P1"), py::arg("P2") )
// custom constructors
// methods
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("GetPoint1",
(const opencascade::handle<StepGeom_CartesianPoint> & (StepToTopoDS_PointPair::*)() const) static_cast<const opencascade::handle<StepGeom_CartesianPoint> & (StepToTopoDS_PointPair::*)() const>(&StepToTopoDS_PointPair::GetPoint1),
R"#(None)#"
)
.def("GetPoint2",
(const opencascade::handle<StepGeom_CartesianPoint> & (StepToTopoDS_PointPair::*)() const) static_cast<const opencascade::handle<StepGeom_CartesianPoint> & (StepToTopoDS_PointPair::*)() const>(&StepToTopoDS_PointPair::GetPoint2),
R"#(None)#"
)
;
// Class StepToTopoDS_Root from ./opencascade/StepToTopoDS_Root.hxx
klass = m.attr("StepToTopoDS_Root");
// nested enums
static_cast<py::class_<StepToTopoDS_Root , shared_ptr<StepToTopoDS_Root> >>(klass)
// constructors
// custom constructors
// methods
.def("IsDone",
(Standard_Boolean (StepToTopoDS_Root::*)() const) static_cast<Standard_Boolean (StepToTopoDS_Root::*)() const>(&StepToTopoDS_Root::IsDone),
R"#(None)#"
)
.def("Precision",
(Standard_Real (StepToTopoDS_Root::*)() const) static_cast<Standard_Real (StepToTopoDS_Root::*)() const>(&StepToTopoDS_Root::Precision),
R"#(Returns the value of "MyPrecision")#"
)
.def("SetPrecision",
(void (StepToTopoDS_Root::*)( const Standard_Real ) ) static_cast<void (StepToTopoDS_Root::*)( const Standard_Real ) >(&StepToTopoDS_Root::SetPrecision),
R"#(Sets the value of "MyPrecision")#" , py::arg("preci")
)
.def("MaxTol",
(Standard_Real (StepToTopoDS_Root::*)() const) static_cast<Standard_Real (StepToTopoDS_Root::*)() const>(&StepToTopoDS_Root::MaxTol),
R"#(Returns the value of "MaxTol")#"
)
.def("SetMaxTol",
(void (StepToTopoDS_Root::*)( const Standard_Real ) ) static_cast<void (StepToTopoDS_Root::*)( const Standard_Real ) >(&StepToTopoDS_Root::SetMaxTol),
R"#(Sets the value of MaxTol)#" , py::arg("maxpreci")
)
.def("IsDone",
(Standard_Boolean (StepToTopoDS_Root::*)() const) static_cast<Standard_Boolean (StepToTopoDS_Root::*)() const>(&StepToTopoDS_Root::IsDone),
R"#(None)#"
)
.def("Precision",
(Standard_Real (StepToTopoDS_Root::*)() const) static_cast<Standard_Real (StepToTopoDS_Root::*)() const>(&StepToTopoDS_Root::Precision),
R"#(Returns the value of "MyPrecision")#"
)
.def("SetPrecision",
(void (StepToTopoDS_Root::*)( const Standard_Real ) ) static_cast<void (StepToTopoDS_Root::*)( const Standard_Real ) >(&StepToTopoDS_Root::SetPrecision),
R"#(Sets the value of "MyPrecision")#" , py::arg("preci")
)
.def("MaxTol",
(Standard_Real (StepToTopoDS_Root::*)() const) static_cast<Standard_Real (StepToTopoDS_Root::*)() const>(&StepToTopoDS_Root::MaxTol),
R"#(Returns the value of "MaxTol")#"
)
.def("SetMaxTol",
(void (StepToTopoDS_Root::*)( const Standard_Real ) ) static_cast<void (StepToTopoDS_Root::*)( const Standard_Real ) >(&StepToTopoDS_Root::SetMaxTol),
R"#(Sets the value of MaxTol)#" , py::arg("maxpreci")
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class StepToTopoDS_Tool from ./opencascade/StepToTopoDS_Tool.hxx
klass = m.attr("StepToTopoDS_Tool");
// nested enums
static_cast<py::class_<StepToTopoDS_Tool , shared_ptr<StepToTopoDS_Tool> >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const NCollection_DataMap<opencascade::handle<StepShape_TopologicalRepresentationItem>, TopoDS_Shape> &,const opencascade::handle<Transfer_TransientProcess> & >() , py::arg("Map"), py::arg("TP") )
// custom constructors
// methods
.def("Init",
(void (StepToTopoDS_Tool::*)( const NCollection_DataMap<opencascade::handle<StepShape_TopologicalRepresentationItem>, TopoDS_Shape> & , const opencascade::handle<Transfer_TransientProcess> & ) ) static_cast<void (StepToTopoDS_Tool::*)( const NCollection_DataMap<opencascade::handle<StepShape_TopologicalRepresentationItem>, TopoDS_Shape> & , const opencascade::handle<Transfer_TransientProcess> & ) >(&StepToTopoDS_Tool::Init),
R"#(None)#" , py::arg("Map"), py::arg("TP")
)
.def("IsBound",
(Standard_Boolean (StepToTopoDS_Tool::*)( const opencascade::handle<StepShape_TopologicalRepresentationItem> & ) ) static_cast<Standard_Boolean (StepToTopoDS_Tool::*)( const opencascade::handle<StepShape_TopologicalRepresentationItem> & ) >(&StepToTopoDS_Tool::IsBound),
R"#(None)#" , py::arg("TRI")
)
.def("Bind",
(void (StepToTopoDS_Tool::*)( const opencascade::handle<StepShape_TopologicalRepresentationItem> & , const TopoDS_Shape & ) ) static_cast<void (StepToTopoDS_Tool::*)( const opencascade::handle<StepShape_TopologicalRepresentationItem> & , const TopoDS_Shape & ) >(&StepToTopoDS_Tool::Bind),
R"#(None)#" , py::arg("TRI"), py::arg("S")
)
.def("Find",
(const TopoDS_Shape & (StepToTopoDS_Tool::*)( const opencascade::handle<StepShape_TopologicalRepresentationItem> & ) ) static_cast<const TopoDS_Shape & (StepToTopoDS_Tool::*)( const opencascade::handle<StepShape_TopologicalRepresentationItem> & ) >(&StepToTopoDS_Tool::Find),
R"#(None)#" , py::arg("TRI")
)
.def("ClearEdgeMap",
(void (StepToTopoDS_Tool::*)() ) static_cast<void (StepToTopoDS_Tool::*)() >(&StepToTopoDS_Tool::ClearEdgeMap),
R"#(None)#"
)
.def("IsEdgeBound",
(Standard_Boolean (StepToTopoDS_Tool::*)( const StepToTopoDS_PointPair & ) ) static_cast<Standard_Boolean (StepToTopoDS_Tool::*)( const StepToTopoDS_PointPair & ) >(&StepToTopoDS_Tool::IsEdgeBound),
R"#(None)#" , py::arg("PP")
)
.def("BindEdge",
(void (StepToTopoDS_Tool::*)( const StepToTopoDS_PointPair & , const TopoDS_Edge & ) ) static_cast<void (StepToTopoDS_Tool::*)( const StepToTopoDS_PointPair & , const TopoDS_Edge & ) >(&StepToTopoDS_Tool::BindEdge),
R"#(None)#" , py::arg("PP"), py::arg("E")
)
.def("FindEdge",
(const TopoDS_Edge & (StepToTopoDS_Tool::*)( const StepToTopoDS_PointPair & ) ) static_cast<const TopoDS_Edge & (StepToTopoDS_Tool::*)( const StepToTopoDS_PointPair & ) >(&StepToTopoDS_Tool::FindEdge),
R"#(None)#" , py::arg("PP")
)
.def("ClearVertexMap",
(void (StepToTopoDS_Tool::*)() ) static_cast<void (StepToTopoDS_Tool::*)() >(&StepToTopoDS_Tool::ClearVertexMap),
R"#(None)#"
)
.def("IsVertexBound",
(Standard_Boolean (StepToTopoDS_Tool::*)( const opencascade::handle<StepGeom_CartesianPoint> & ) ) static_cast<Standard_Boolean (StepToTopoDS_Tool::*)( const opencascade::handle<StepGeom_CartesianPoint> & ) >(&StepToTopoDS_Tool::IsVertexBound),
R"#(None)#" , py::arg("PG")
)
.def("BindVertex",
(void (StepToTopoDS_Tool::*)( const opencascade::handle<StepGeom_CartesianPoint> & , const TopoDS_Vertex & ) ) static_cast<void (StepToTopoDS_Tool::*)( const opencascade::handle<StepGeom_CartesianPoint> & , const TopoDS_Vertex & ) >(&StepToTopoDS_Tool::BindVertex),
R"#(None)#" , py::arg("P"), py::arg("V")
)
.def("FindVertex",
(const TopoDS_Vertex & (StepToTopoDS_Tool::*)( const opencascade::handle<StepGeom_CartesianPoint> & ) ) static_cast<const TopoDS_Vertex & (StepToTopoDS_Tool::*)( const opencascade::handle<StepGeom_CartesianPoint> & ) >(&StepToTopoDS_Tool::FindVertex),
R"#(None)#" , py::arg("P")
)
.def("ComputePCurve",
(void (StepToTopoDS_Tool::*)( const Standard_Boolean ) ) static_cast<void (StepToTopoDS_Tool::*)( const Standard_Boolean ) >(&StepToTopoDS_Tool::ComputePCurve),
R"#(None)#" , py::arg("B")
)
.def("ComputePCurve",
(Standard_Boolean (StepToTopoDS_Tool::*)() const) static_cast<Standard_Boolean (StepToTopoDS_Tool::*)() const>(&StepToTopoDS_Tool::ComputePCurve),
R"#(None)#"
)
.def("TransientProcess",
(opencascade::handle<Transfer_TransientProcess> (StepToTopoDS_Tool::*)() const) static_cast<opencascade::handle<Transfer_TransientProcess> (StepToTopoDS_Tool::*)() const>(&StepToTopoDS_Tool::TransientProcess),
R"#(None)#"
)
.def("AddContinuity",
(void (StepToTopoDS_Tool::*)( const opencascade::handle<Geom_Surface> & ) ) static_cast<void (StepToTopoDS_Tool::*)( const opencascade::handle<Geom_Surface> & ) >(&StepToTopoDS_Tool::AddContinuity),
R"#(None)#" , py::arg("GeomSurf")
)
.def("AddContinuity",
(void (StepToTopoDS_Tool::*)( const opencascade::handle<Geom_Curve> & ) ) static_cast<void (StepToTopoDS_Tool::*)( const opencascade::handle<Geom_Curve> & ) >(&StepToTopoDS_Tool::AddContinuity),
R"#(None)#" , py::arg("GeomCurve")
)
.def("AddContinuity",
(void (StepToTopoDS_Tool::*)( const opencascade::handle<Geom2d_Curve> & ) ) static_cast<void (StepToTopoDS_Tool::*)( const opencascade::handle<Geom2d_Curve> & ) >(&StepToTopoDS_Tool::AddContinuity),
R"#(None)#" , py::arg("GeomCur2d")
)
.def("C0Surf",
(Standard_Integer (StepToTopoDS_Tool::*)() const) static_cast<Standard_Integer (StepToTopoDS_Tool::*)() const>(&StepToTopoDS_Tool::C0Surf),
R"#(None)#"
)
.def("C1Surf",
(Standard_Integer (StepToTopoDS_Tool::*)() const) static_cast<Standard_Integer (StepToTopoDS_Tool::*)() const>(&StepToTopoDS_Tool::C1Surf),
R"#(None)#"
)
.def("C2Surf",
(Standard_Integer (StepToTopoDS_Tool::*)() const) static_cast<Standard_Integer (StepToTopoDS_Tool::*)() const>(&StepToTopoDS_Tool::C2Surf),
R"#(None)#"
)
.def("C0Cur2",
(Standard_Integer (StepToTopoDS_Tool::*)() const) static_cast<Standard_Integer (StepToTopoDS_Tool::*)() const>(&StepToTopoDS_Tool::C0Cur2),
R"#(None)#"
)
.def("C1Cur2",
(Standard_Integer (StepToTopoDS_Tool::*)() const) static_cast<Standard_Integer (StepToTopoDS_Tool::*)() const>(&StepToTopoDS_Tool::C1Cur2),
R"#(None)#"
)
.def("C2Cur2",
(Standard_Integer (StepToTopoDS_Tool::*)() const) static_cast<Standard_Integer (StepToTopoDS_Tool::*)() const>(&StepToTopoDS_Tool::C2Cur2),
R"#(None)#"
)
.def("C0Cur3",
(Standard_Integer (StepToTopoDS_Tool::*)() const) static_cast<Standard_Integer (StepToTopoDS_Tool::*)() const>(&StepToTopoDS_Tool::C0Cur3),
R"#(None)#"
)
.def("C1Cur3",
(Standard_Integer (StepToTopoDS_Tool::*)() const) static_cast<Standard_Integer (StepToTopoDS_Tool::*)() const>(&StepToTopoDS_Tool::C1Cur3),
R"#(None)#"
)
.def("C2Cur3",
(Standard_Integer (StepToTopoDS_Tool::*)() const) static_cast<Standard_Integer (StepToTopoDS_Tool::*)() const>(&StepToTopoDS_Tool::C2Cur3),
R"#(None)#"
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
;
// Class StepToTopoDS_Builder from ./opencascade/StepToTopoDS_Builder.hxx
klass = m.attr("StepToTopoDS_Builder");
// nested enums
static_cast<py::class_<StepToTopoDS_Builder , shared_ptr<StepToTopoDS_Builder> , StepToTopoDS_Root >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepToTopoDS_Builder::*)( const opencascade::handle<StepShape_ManifoldSolidBrep> & , const opencascade::handle<Transfer_TransientProcess> & , const StepData_Factors & , const Message_ProgressRange & ) ) static_cast<void (StepToTopoDS_Builder::*)( const opencascade::handle<StepShape_ManifoldSolidBrep> & , const opencascade::handle<Transfer_TransientProcess> & , const StepData_Factors & , const Message_ProgressRange & ) >(&StepToTopoDS_Builder::Init),
R"#(None)#" , py::arg("theManifoldSolid"), py::arg("theTP"), py::arg("theLocalFactors"), py::arg("theProgress")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
)
.def("Init",
(void (StepToTopoDS_Builder::*)( const opencascade::handle<StepShape_BrepWithVoids> & , const opencascade::handle<Transfer_TransientProcess> & , const StepData_Factors & , const Message_ProgressRange & ) ) static_cast<void (StepToTopoDS_Builder::*)( const opencascade::handle<StepShape_BrepWithVoids> & , const opencascade::handle<Transfer_TransientProcess> & , const StepData_Factors & , const Message_ProgressRange & ) >(&StepToTopoDS_Builder::Init),
R"#(None)#" , py::arg("theBRepWithVoids"), py::arg("theTP"), py::arg("theLocalFactors"), py::arg("theProgress")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
)
.def("Init",
(void (StepToTopoDS_Builder::*)( const opencascade::handle<StepShape_FacetedBrep> & , const opencascade::handle<Transfer_TransientProcess> & , const StepData_Factors & , const Message_ProgressRange & ) ) static_cast<void (StepToTopoDS_Builder::*)( const opencascade::handle<StepShape_FacetedBrep> & , const opencascade::handle<Transfer_TransientProcess> & , const StepData_Factors & , const Message_ProgressRange & ) >(&StepToTopoDS_Builder::Init),
R"#(None)#" , py::arg("theFB"), py::arg("theTP"), py::arg("theLocalFactors"), py::arg("theProgress")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
)
.def("Init",
(void (StepToTopoDS_Builder::*)( const opencascade::handle<StepShape_FacetedBrepAndBrepWithVoids> & , const opencascade::handle<Transfer_TransientProcess> & , const StepData_Factors & , const Message_ProgressRange & ) ) static_cast<void (StepToTopoDS_Builder::*)( const opencascade::handle<StepShape_FacetedBrepAndBrepWithVoids> & , const opencascade::handle<Transfer_TransientProcess> & , const StepData_Factors & , const Message_ProgressRange & ) >(&StepToTopoDS_Builder::Init),
R"#(None)#" , py::arg("theFBABWV"), py::arg("theTP"), py::arg("theLocalFactors"), py::arg("theProgress")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
)
.def("Init",
(void (StepToTopoDS_Builder::*)( const opencascade::handle<StepShape_ShellBasedSurfaceModel> & , const opencascade::handle<Transfer_TransientProcess> & , StepToTopoDS_NMTool & , const StepData_Factors & , const Message_ProgressRange & ) ) static_cast<void (StepToTopoDS_Builder::*)( const opencascade::handle<StepShape_ShellBasedSurfaceModel> & , const opencascade::handle<Transfer_TransientProcess> & , StepToTopoDS_NMTool & , const StepData_Factors & , const Message_ProgressRange & ) >(&StepToTopoDS_Builder::Init),
R"#(None)#" , py::arg("S"), py::arg("TP"), py::arg("NMTool"), py::arg("theLocalFactors"), py::arg("theProgress")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
)
.def("Init",
(void (StepToTopoDS_Builder::*)( const opencascade::handle<StepShape_EdgeBasedWireframeModel> & , const opencascade::handle<Transfer_TransientProcess> & , const StepData_Factors & ) ) static_cast<void (StepToTopoDS_Builder::*)( const opencascade::handle<StepShape_EdgeBasedWireframeModel> & , const opencascade::handle<Transfer_TransientProcess> & , const StepData_Factors & ) >(&StepToTopoDS_Builder::Init),
R"#(None)#" , py::arg("S"), py::arg("TP"), py::arg("theLocalFactors")
)
.def("Init",
(void (StepToTopoDS_Builder::*)( const opencascade::handle<StepShape_FaceBasedSurfaceModel> & , const opencascade::handle<Transfer_TransientProcess> & , const StepData_Factors & ) ) static_cast<void (StepToTopoDS_Builder::*)( const opencascade::handle<StepShape_FaceBasedSurfaceModel> & , const opencascade::handle<Transfer_TransientProcess> & , const StepData_Factors & ) >(&StepToTopoDS_Builder::Init),
R"#(None)#" , py::arg("S"), py::arg("TP"), py::arg("theLocalFactors")
)
.def("Init",
(void (StepToTopoDS_Builder::*)( const opencascade::handle<StepShape_GeometricSet> & , const opencascade::handle<Transfer_TransientProcess> & , const StepData_Factors & , const opencascade::handle<Transfer_ActorOfTransientProcess> & , const Standard_Boolean , const Message_ProgressRange & ) ) static_cast<void (StepToTopoDS_Builder::*)( const opencascade::handle<StepShape_GeometricSet> & , const opencascade::handle<Transfer_TransientProcess> & , const StepData_Factors & , const opencascade::handle<Transfer_ActorOfTransientProcess> & , const Standard_Boolean , const Message_ProgressRange & ) >(&StepToTopoDS_Builder::Init),
R"#(None)#" , py::arg("S"), py::arg("TP"), py::arg("theLocalFactors"), py::arg("RA")=static_cast<const opencascade::handle<Transfer_ActorOfTransientProcess> &>(NULL), py::arg("isManifold")=static_cast<const Standard_Boolean>(Standard_False), py::arg("theProgress")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
)
.def("Error",
(StepToTopoDS_BuilderError (StepToTopoDS_Builder::*)() const) static_cast<StepToTopoDS_BuilderError (StepToTopoDS_Builder::*)() const>(&StepToTopoDS_Builder::Error),
R"#(None)#"
)
// methods using call by reference i.s.o. return
.def("Init",
[]( StepToTopoDS_Builder &self , const opencascade::handle<StepVisual_TessellatedSolid> & theTSo,const opencascade::handle<Transfer_TransientProcess> & theTP,const Standard_Boolean theReadTessellatedWhenNoBRepOnly,const StepData_Factors & theLocalFactors,const Message_ProgressRange & theProgress ){
Standard_Boolean theHasGeom;
self.Init(theTSo,theTP,theReadTessellatedWhenNoBRepOnly,theHasGeom,theLocalFactors,theProgress);
return std::make_tuple(theHasGeom); },
R"#(None)#" , py::arg("theTSo"), py::arg("theTP"), py::arg("theReadTessellatedWhenNoBRepOnly"), py::arg("theLocalFactors"), py::arg("theProgress")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
)
.def("Init",
[]( StepToTopoDS_Builder &self , const opencascade::handle<StepVisual_TessellatedShell> & theTSh,const opencascade::handle<Transfer_TransientProcess> & theTP,const Standard_Boolean theReadTessellatedWhenNoBRepOnly,const StepData_Factors & theLocalFactors,const Message_ProgressRange & theProgress ){
Standard_Boolean theHasGeom;
self.Init(theTSh,theTP,theReadTessellatedWhenNoBRepOnly,theHasGeom,theLocalFactors,theProgress);
return std::make_tuple(theHasGeom); },
R"#(None)#" , py::arg("theTSh"), py::arg("theTP"), py::arg("theReadTessellatedWhenNoBRepOnly"), py::arg("theLocalFactors"), py::arg("theProgress")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
)
.def("Init",
[]( StepToTopoDS_Builder &self , const opencascade::handle<StepVisual_TessellatedFace> & theTF,const opencascade::handle<Transfer_TransientProcess> & theTP,const Standard_Boolean theReadTessellatedWhenNoBRepOnly,const StepData_Factors & theLocalFactors ){
Standard_Boolean theHasGeom;
self.Init(theTF,theTP,theReadTessellatedWhenNoBRepOnly,theHasGeom,theLocalFactors);
return std::make_tuple(theHasGeom); },
R"#(None)#" , py::arg("theTF"), py::arg("theTP"), py::arg("theReadTessellatedWhenNoBRepOnly"), py::arg("theLocalFactors")
)
.def("Init",
[]( StepToTopoDS_Builder &self , const opencascade::handle<StepVisual_TessellatedSurfaceSet> & theTSS,const opencascade::handle<Transfer_TransientProcess> & theTP,const StepData_Factors & theLocalFactors ){
Standard_Boolean theHasGeom;
self.Init(theTSS,theTP,theLocalFactors,theHasGeom);
return std::make_tuple(theHasGeom); },
R"#(None)#" , py::arg("theTSS"), py::arg("theTP"), py::arg("theLocalFactors")
)
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("Value",
(const TopoDS_Shape & (StepToTopoDS_Builder::*)() const) static_cast<const TopoDS_Shape & (StepToTopoDS_Builder::*)() const>(&StepToTopoDS_Builder::Value),
R"#(None)#"
)
;
// Class StepToTopoDS_MakeTransformed from ./opencascade/StepToTopoDS_MakeTransformed.hxx
klass = m.attr("StepToTopoDS_MakeTransformed");
// nested enums
static_cast<py::class_<StepToTopoDS_MakeTransformed , shared_ptr<StepToTopoDS_MakeTransformed> , StepToTopoDS_Root >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Compute",
(Standard_Boolean (StepToTopoDS_MakeTransformed::*)( const opencascade::handle<StepGeom_Axis2Placement3d> & , const opencascade::handle<StepGeom_Axis2Placement3d> & , const StepData_Factors & ) ) static_cast<Standard_Boolean (StepToTopoDS_MakeTransformed::*)( const opencascade::handle<StepGeom_Axis2Placement3d> & , const opencascade::handle<StepGeom_Axis2Placement3d> & , const StepData_Factors & ) >(&StepToTopoDS_MakeTransformed::Compute),
R"#(Computes a transformation to pass from an Origin placement to a Target placement. Returns True when done If not done, the transformation will by Identity)#" , py::arg("Origin"), py::arg("Target"), py::arg("theLocalFactors")
)
.def("Compute",
(Standard_Boolean (StepToTopoDS_MakeTransformed::*)( const opencascade::handle<StepGeom_CartesianTransformationOperator3d> & , const StepData_Factors & ) ) static_cast<Standard_Boolean (StepToTopoDS_MakeTransformed::*)( const opencascade::handle<StepGeom_CartesianTransformationOperator3d> & , const StepData_Factors & ) >(&StepToTopoDS_MakeTransformed::Compute),
R"#(Computes a transformation defined by an operator 3D)#" , py::arg("Operator"), py::arg("theLocalFactors")
)
.def("Transform",
(Standard_Boolean (StepToTopoDS_MakeTransformed::*)( TopoDS_Shape & ) const) static_cast<Standard_Boolean (StepToTopoDS_MakeTransformed::*)( TopoDS_Shape & ) const>(&StepToTopoDS_MakeTransformed::Transform),
R"#(Applies the computed transformation to a shape Returns False if the transformation is Identity)#" , py::arg("shape")
)
.def("TranslateMappedItem",
(TopoDS_Shape (StepToTopoDS_MakeTransformed::*)( const opencascade::handle<StepRepr_MappedItem> & , const opencascade::handle<Transfer_TransientProcess> & , const StepData_Factors & , const Message_ProgressRange & ) ) static_cast<TopoDS_Shape (StepToTopoDS_MakeTransformed::*)( const opencascade::handle<StepRepr_MappedItem> & , const opencascade::handle<Transfer_TransientProcess> & , const StepData_Factors & , const Message_ProgressRange & ) >(&StepToTopoDS_MakeTransformed::TranslateMappedItem),
R"#(Translates a MappedItem. More precisely A MappedItem has a MappingSource and a MappingTarget MappingSource has a MappedRepresentation and a MappingOrigin MappedRepresentation is the basic item to be instanced MappingOrigin is the starting placement MappingTarget is the final placement)#" , py::arg("mapit"), py::arg("TP"), py::arg("theLocalFactors"), py::arg("theProgress")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("Transformation",
(const gp_Trsf & (StepToTopoDS_MakeTransformed::*)() const) static_cast<const gp_Trsf & (StepToTopoDS_MakeTransformed::*)() const>(&StepToTopoDS_MakeTransformed::Transformation),
R"#(Returns the computed transformation (Identity if not yet or if failed))#"
)
;
// Class StepToTopoDS_TranslateCompositeCurve from ./opencascade/StepToTopoDS_TranslateCompositeCurve.hxx
klass = m.attr("StepToTopoDS_TranslateCompositeCurve");
// nested enums
static_cast<py::class_<StepToTopoDS_TranslateCompositeCurve , shared_ptr<StepToTopoDS_TranslateCompositeCurve> , StepToTopoDS_Root >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const opencascade::handle<StepGeom_CompositeCurve> &,const opencascade::handle<Transfer_TransientProcess> &,const StepData_Factors & >() , py::arg("CC"), py::arg("TP"), py::arg("theLocalFactors") )
.def(py::init< const opencascade::handle<StepGeom_CompositeCurve> &,const opencascade::handle<Transfer_TransientProcess> &,const opencascade::handle<StepGeom_Surface> &,const opencascade::handle<Geom_Surface> &,const StepData_Factors & >() , py::arg("CC"), py::arg("TP"), py::arg("S"), py::arg("Surf"), py::arg("theLocalFactors") )
// custom constructors
// methods
.def("Init",
(Standard_Boolean (StepToTopoDS_TranslateCompositeCurve::*)( const opencascade::handle<StepGeom_CompositeCurve> & , const opencascade::handle<Transfer_TransientProcess> & , const StepData_Factors & ) ) static_cast<Standard_Boolean (StepToTopoDS_TranslateCompositeCurve::*)( const opencascade::handle<StepGeom_CompositeCurve> & , const opencascade::handle<Transfer_TransientProcess> & , const StepData_Factors & ) >(&StepToTopoDS_TranslateCompositeCurve::Init),
R"#(Translates standalone composite_curve)#" , py::arg("CC"), py::arg("TP"), py::arg("theLocalFactors")
)
.def("Init",
(Standard_Boolean (StepToTopoDS_TranslateCompositeCurve::*)( const opencascade::handle<StepGeom_CompositeCurve> & , const opencascade::handle<Transfer_TransientProcess> & , const opencascade::handle<StepGeom_Surface> & , const opencascade::handle<Geom_Surface> & , const StepData_Factors & ) ) static_cast<Standard_Boolean (StepToTopoDS_TranslateCompositeCurve::*)( const opencascade::handle<StepGeom_CompositeCurve> & , const opencascade::handle<Transfer_TransientProcess> & , const opencascade::handle<StepGeom_Surface> & , const opencascade::handle<Geom_Surface> & , const StepData_Factors & ) >(&StepToTopoDS_TranslateCompositeCurve::Init),
R"#(Translates composite_curve lying on surface)#" , py::arg("CC"), py::arg("TP"), py::arg("S"), py::arg("Surf"), py::arg("theLocalFactors")
)
.def("IsInfiniteSegment",
(Standard_Boolean (StepToTopoDS_TranslateCompositeCurve::*)() const) static_cast<Standard_Boolean (StepToTopoDS_TranslateCompositeCurve::*)() const>(&StepToTopoDS_TranslateCompositeCurve::IsInfiniteSegment),
R"#(Returns True if composite_curve contains a segment with infinite parameters.)#"
)
.def("IsInfiniteSegment",
(Standard_Boolean (StepToTopoDS_TranslateCompositeCurve::*)() const) static_cast<Standard_Boolean (StepToTopoDS_TranslateCompositeCurve::*)() const>(&StepToTopoDS_TranslateCompositeCurve::IsInfiniteSegment),
R"#(Returns True if composite_curve contains a segment with infinite parameters.)#"
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("Value",
(const TopoDS_Wire & (StepToTopoDS_TranslateCompositeCurve::*)() const) static_cast<const TopoDS_Wire & (StepToTopoDS_TranslateCompositeCurve::*)() const>(&StepToTopoDS_TranslateCompositeCurve::Value),
R"#(Returns result of last translation or null wire if failed.)#"
)
;
// Class StepToTopoDS_TranslateCurveBoundedSurface from ./opencascade/StepToTopoDS_TranslateCurveBoundedSurface.hxx
klass = m.attr("StepToTopoDS_TranslateCurveBoundedSurface");
// nested enums
static_cast<py::class_<StepToTopoDS_TranslateCurveBoundedSurface , shared_ptr<StepToTopoDS_TranslateCurveBoundedSurface> , StepToTopoDS_Root >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const opencascade::handle<StepGeom_CurveBoundedSurface> &,const opencascade::handle<Transfer_TransientProcess> &,const StepData_Factors & >() , py::arg("CBS"), py::arg("TP"), py::arg("theLocalFactors") )
// custom constructors
// methods
.def("Init",
(Standard_Boolean (StepToTopoDS_TranslateCurveBoundedSurface::*)( const opencascade::handle<StepGeom_CurveBoundedSurface> & , const opencascade::handle<Transfer_TransientProcess> & , const StepData_Factors & ) ) static_cast<Standard_Boolean (StepToTopoDS_TranslateCurveBoundedSurface::*)( const opencascade::handle<StepGeom_CurveBoundedSurface> & , const opencascade::handle<Transfer_TransientProcess> & , const StepData_Factors & ) >(&StepToTopoDS_TranslateCurveBoundedSurface::Init),
R"#(Translate surface)#" , py::arg("CBS"), py::arg("TP"), py::arg("theLocalFactors")
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("Value",
(const TopoDS_Face & (StepToTopoDS_TranslateCurveBoundedSurface::*)() const) static_cast<const TopoDS_Face & (StepToTopoDS_TranslateCurveBoundedSurface::*)() const>(&StepToTopoDS_TranslateCurveBoundedSurface::Value),
R"#(Returns result of last translation or null wire if failed.)#"
)
;
// Class StepToTopoDS_TranslateEdge from ./opencascade/StepToTopoDS_TranslateEdge.hxx
klass = m.attr("StepToTopoDS_TranslateEdge");
// nested enums
static_cast<py::class_<StepToTopoDS_TranslateEdge , shared_ptr<StepToTopoDS_TranslateEdge> , StepToTopoDS_Root >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const opencascade::handle<StepShape_Edge> &,StepToTopoDS_Tool &,StepToTopoDS_NMTool &,const StepData_Factors & >() , py::arg("E"), py::arg("T"), py::arg("NMTool"), py::arg("theLocalFactors") )
// custom constructors
// methods
.def("Init",
(void (StepToTopoDS_TranslateEdge::*)( const opencascade::handle<StepShape_Edge> & , StepToTopoDS_Tool & , StepToTopoDS_NMTool & , const StepData_Factors & ) ) static_cast<void (StepToTopoDS_TranslateEdge::*)( const opencascade::handle<StepShape_Edge> & , StepToTopoDS_Tool & , StepToTopoDS_NMTool & , const StepData_Factors & ) >(&StepToTopoDS_TranslateEdge::Init),
R"#(None)#" , py::arg("E"), py::arg("T"), py::arg("NMTool"), py::arg("theLocalFactors")
)
.def("MakeFromCurve3D",
(void (StepToTopoDS_TranslateEdge::*)( const opencascade::handle<StepGeom_Curve> & , const opencascade::handle<StepShape_EdgeCurve> & , const opencascade::handle<StepShape_Vertex> & , const Standard_Real , TopoDS_Edge & , TopoDS_Vertex & , TopoDS_Vertex & , StepToTopoDS_Tool & , const StepData_Factors & ) ) static_cast<void (StepToTopoDS_TranslateEdge::*)( const opencascade::handle<StepGeom_Curve> & , const opencascade::handle<StepShape_EdgeCurve> & , const opencascade::handle<StepShape_Vertex> & , const Standard_Real , TopoDS_Edge & , TopoDS_Vertex & , TopoDS_Vertex & , StepToTopoDS_Tool & , const StepData_Factors & ) >(&StepToTopoDS_TranslateEdge::MakeFromCurve3D),
R"#(Warning! C3D is assumed to be a Curve 3D ... other cases to checked before calling this)#" , py::arg("C3D"), py::arg("EC"), py::arg("Vend"), py::arg("preci"), py::arg("E"), py::arg("V1"), py::arg("V2"), py::arg("T"), py::arg("theLocalFactors")
)
.def("MakePCurve",
(opencascade::handle<Geom2d_Curve> (StepToTopoDS_TranslateEdge::*)( const opencascade::handle<StepGeom_Pcurve> & , const opencascade::handle<Geom_Surface> & , const StepData_Factors & ) const) static_cast<opencascade::handle<Geom2d_Curve> (StepToTopoDS_TranslateEdge::*)( const opencascade::handle<StepGeom_Pcurve> & , const opencascade::handle<Geom_Surface> & , const StepData_Factors & ) const>(&StepToTopoDS_TranslateEdge::MakePCurve),
R"#(None)#" , py::arg("PCU"), py::arg("ConvSurf"), py::arg("theLocalFactors")
)
.def("Error",
(StepToTopoDS_TranslateEdgeError (StepToTopoDS_TranslateEdge::*)() const) static_cast<StepToTopoDS_TranslateEdgeError (StepToTopoDS_TranslateEdge::*)() const>(&StepToTopoDS_TranslateEdge::Error),
R"#(None)#"
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("Value",
(const TopoDS_Shape & (StepToTopoDS_TranslateEdge::*)() const) static_cast<const TopoDS_Shape & (StepToTopoDS_TranslateEdge::*)() const>(&StepToTopoDS_TranslateEdge::Value),
R"#(None)#"
)
;
// Class StepToTopoDS_TranslateEdgeLoop from ./opencascade/StepToTopoDS_TranslateEdgeLoop.hxx
klass = m.attr("StepToTopoDS_TranslateEdgeLoop");
// nested enums
static_cast<py::class_<StepToTopoDS_TranslateEdgeLoop , shared_ptr<StepToTopoDS_TranslateEdgeLoop> , StepToTopoDS_Root >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const opencascade::handle<StepShape_FaceBound> &,const TopoDS_Face &,const opencascade::handle<Geom_Surface> &,const opencascade::handle<StepGeom_Surface> &,const Standard_Boolean,StepToTopoDS_Tool &,StepToTopoDS_NMTool &,const StepData_Factors & >() , py::arg("FB"), py::arg("F"), py::arg("S"), py::arg("SS"), py::arg("ss"), py::arg("T"), py::arg("NMTool"), py::arg("theLocalFactors") )
// custom constructors
// methods
.def("Init",
(void (StepToTopoDS_TranslateEdgeLoop::*)( const opencascade::handle<StepShape_FaceBound> & , const TopoDS_Face & , const opencascade::handle<Geom_Surface> & , const opencascade::handle<StepGeom_Surface> & , const Standard_Boolean , StepToTopoDS_Tool & , StepToTopoDS_NMTool & , const StepData_Factors & ) ) static_cast<void (StepToTopoDS_TranslateEdgeLoop::*)( const opencascade::handle<StepShape_FaceBound> & , const TopoDS_Face & , const opencascade::handle<Geom_Surface> & , const opencascade::handle<StepGeom_Surface> & , const Standard_Boolean , StepToTopoDS_Tool & , StepToTopoDS_NMTool & , const StepData_Factors & ) >(&StepToTopoDS_TranslateEdgeLoop::Init),
R"#(None)#" , py::arg("FB"), py::arg("F"), py::arg("S"), py::arg("SS"), py::arg("ss"), py::arg("T"), py::arg("NMTool"), py::arg("theLocalFactors")
)
.def("Error",
(StepToTopoDS_TranslateEdgeLoopError (StepToTopoDS_TranslateEdgeLoop::*)() const) static_cast<StepToTopoDS_TranslateEdgeLoopError (StepToTopoDS_TranslateEdgeLoop::*)() const>(&StepToTopoDS_TranslateEdgeLoop::Error),
R"#(None)#"
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("Value",
(const TopoDS_Shape & (StepToTopoDS_TranslateEdgeLoop::*)() const) static_cast<const TopoDS_Shape & (StepToTopoDS_TranslateEdgeLoop::*)() const>(&StepToTopoDS_TranslateEdgeLoop::Value),
R"#(None)#"
)
;
// Class StepToTopoDS_TranslateFace from ./opencascade/StepToTopoDS_TranslateFace.hxx
klass = m.attr("StepToTopoDS_TranslateFace");
// nested enums
static_cast<py::class_<StepToTopoDS_TranslateFace , shared_ptr<StepToTopoDS_TranslateFace> , StepToTopoDS_Root >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const opencascade::handle<StepShape_FaceSurface> &,StepToTopoDS_Tool &,StepToTopoDS_NMTool &,const StepData_Factors & >() , py::arg("FS"), py::arg("T"), py::arg("NMTool"), py::arg("theLocalFactors") )
.def(py::init< const opencascade::handle<StepVisual_TessellatedFace> &,StepToTopoDS_Tool &,StepToTopoDS_NMTool &,const Standard_Boolean,Standard_Boolean &,const StepData_Factors & >() , py::arg("theTF"), py::arg("theTool"), py::arg("theNMTool"), py::arg("theReadTessellatedWhenNoBRepOnly"), py::arg("theHasGeom"), py::arg("theLocalFactors") )
.def(py::init< const opencascade::handle<StepVisual_TessellatedSurfaceSet> &,StepToTopoDS_Tool &,StepToTopoDS_NMTool &,const StepData_Factors & >() , py::arg("theTSS"), py::arg("theTool"), py::arg("theNMTool"), py::arg("theLocalFactors") )
// custom constructors
// methods
.def("Init",
(void (StepToTopoDS_TranslateFace::*)( const opencascade::handle<StepShape_FaceSurface> & , StepToTopoDS_Tool & , StepToTopoDS_NMTool & , const StepData_Factors & ) ) static_cast<void (StepToTopoDS_TranslateFace::*)( const opencascade::handle<StepShape_FaceSurface> & , StepToTopoDS_Tool & , StepToTopoDS_NMTool & , const StepData_Factors & ) >(&StepToTopoDS_TranslateFace::Init),
R"#(None)#" , py::arg("FS"), py::arg("T"), py::arg("NMTool"), py::arg("theLocalFactors")
)
.def("Init",
(void (StepToTopoDS_TranslateFace::*)( const opencascade::handle<StepVisual_TessellatedSurfaceSet> & , StepToTopoDS_Tool & , StepToTopoDS_NMTool & , const StepData_Factors & ) ) static_cast<void (StepToTopoDS_TranslateFace::*)( const opencascade::handle<StepVisual_TessellatedSurfaceSet> & , StepToTopoDS_Tool & , StepToTopoDS_NMTool & , const StepData_Factors & ) >(&StepToTopoDS_TranslateFace::Init),
R"#(None)#" , py::arg("theTSS"), py::arg("theTool"), py::arg("theNMTool"), py::arg("theLocalFactors")
)
.def("Error",
(StepToTopoDS_TranslateFaceError (StepToTopoDS_TranslateFace::*)() const) static_cast<StepToTopoDS_TranslateFaceError (StepToTopoDS_TranslateFace::*)() const>(&StepToTopoDS_TranslateFace::Error),
R"#(None)#"
)
// methods using call by reference i.s.o. return
.def("Init",
[]( StepToTopoDS_TranslateFace &self , const opencascade::handle<StepVisual_TessellatedFace> & theTF,StepToTopoDS_Tool & theTool,StepToTopoDS_NMTool & theNMTool,const Standard_Boolean theReadTessellatedWhenNoBRepOnly,const StepData_Factors & theLocalFactors ){
Standard_Boolean theHasGeom;
self.Init(theTF,theTool,theNMTool,theReadTessellatedWhenNoBRepOnly,theHasGeom,theLocalFactors);
return std::make_tuple(theHasGeom); },
R"#(None)#" , py::arg("theTF"), py::arg("theTool"), py::arg("theNMTool"), py::arg("theReadTessellatedWhenNoBRepOnly"), py::arg("theLocalFactors")
)
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("Value",
(const TopoDS_Shape & (StepToTopoDS_TranslateFace::*)() const) static_cast<const TopoDS_Shape & (StepToTopoDS_TranslateFace::*)() const>(&StepToTopoDS_TranslateFace::Value),
R"#(None)#"
)
;
// Class StepToTopoDS_TranslatePolyLoop from ./opencascade/StepToTopoDS_TranslatePolyLoop.hxx
klass = m.attr("StepToTopoDS_TranslatePolyLoop");
// nested enums
static_cast<py::class_<StepToTopoDS_TranslatePolyLoop , shared_ptr<StepToTopoDS_TranslatePolyLoop> , StepToTopoDS_Root >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const opencascade::handle<StepShape_PolyLoop> &,StepToTopoDS_Tool &,const opencascade::handle<Geom_Surface> &,const TopoDS_Face &,const StepData_Factors & >() , py::arg("PL"), py::arg("T"), py::arg("S"), py::arg("F"), py::arg("theLocalFactors") )
// custom constructors
// methods
.def("Init",
(void (StepToTopoDS_TranslatePolyLoop::*)( const opencascade::handle<StepShape_PolyLoop> & , StepToTopoDS_Tool & , const opencascade::handle<Geom_Surface> & , const TopoDS_Face & , const StepData_Factors & ) ) static_cast<void (StepToTopoDS_TranslatePolyLoop::*)( const opencascade::handle<StepShape_PolyLoop> & , StepToTopoDS_Tool & , const opencascade::handle<Geom_Surface> & , const TopoDS_Face & , const StepData_Factors & ) >(&StepToTopoDS_TranslatePolyLoop::Init),
R"#(None)#" , py::arg("PL"), py::arg("T"), py::arg("S"), py::arg("F"), py::arg("theLocalFactors")
)
.def("Error",
(StepToTopoDS_TranslatePolyLoopError (StepToTopoDS_TranslatePolyLoop::*)() const) static_cast<StepToTopoDS_TranslatePolyLoopError (StepToTopoDS_TranslatePolyLoop::*)() const>(&StepToTopoDS_TranslatePolyLoop::Error),
R"#(None)#"
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("Value",
(const TopoDS_Shape & (StepToTopoDS_TranslatePolyLoop::*)() const) static_cast<const TopoDS_Shape & (StepToTopoDS_TranslatePolyLoop::*)() const>(&StepToTopoDS_TranslatePolyLoop::Value),
R"#(None)#"
)
;
// Class StepToTopoDS_TranslateShell from ./opencascade/StepToTopoDS_TranslateShell.hxx
klass = m.attr("StepToTopoDS_TranslateShell");
// nested enums
static_cast<py::class_<StepToTopoDS_TranslateShell , shared_ptr<StepToTopoDS_TranslateShell> , StepToTopoDS_Root >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (StepToTopoDS_TranslateShell::*)( const opencascade::handle<StepShape_ConnectedFaceSet> & , StepToTopoDS_Tool & , StepToTopoDS_NMTool & , const StepData_Factors & , const Message_ProgressRange & ) ) static_cast<void (StepToTopoDS_TranslateShell::*)( const opencascade::handle<StepShape_ConnectedFaceSet> & , StepToTopoDS_Tool & , StepToTopoDS_NMTool & , const StepData_Factors & , const Message_ProgressRange & ) >(&StepToTopoDS_TranslateShell::Init),
R"#(None)#" , py::arg("CFS"), py::arg("T"), py::arg("NMTool"), py::arg("theLocalFactors"), py::arg("theProgress")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
)
.def("Error",
(StepToTopoDS_TranslateShellError (StepToTopoDS_TranslateShell::*)() const) static_cast<StepToTopoDS_TranslateShellError (StepToTopoDS_TranslateShell::*)() const>(&StepToTopoDS_TranslateShell::Error),
R"#(None)#"
)
// methods using call by reference i.s.o. return
.def("Init",
[]( StepToTopoDS_TranslateShell &self , const opencascade::handle<StepVisual_TessellatedShell> & theTSh,StepToTopoDS_Tool & theTool,StepToTopoDS_NMTool & theNMTool,const Standard_Boolean theReadTessellatedWhenNoBRepOnly,const StepData_Factors & theLocalFactors,const Message_ProgressRange & theProgress ){
Standard_Boolean theHasGeom;
self.Init(theTSh,theTool,theNMTool,theReadTessellatedWhenNoBRepOnly,theHasGeom,theLocalFactors,theProgress);
return std::make_tuple(theHasGeom); },
R"#(None)#" , py::arg("theTSh"), py::arg("theTool"), py::arg("theNMTool"), py::arg("theReadTessellatedWhenNoBRepOnly"), py::arg("theLocalFactors"), py::arg("theProgress")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
)
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("Value",
(const TopoDS_Shape & (StepToTopoDS_TranslateShell::*)() const) static_cast<const TopoDS_Shape & (StepToTopoDS_TranslateShell::*)() const>(&StepToTopoDS_TranslateShell::Value),
R"#(None)#"
)
;
// Class StepToTopoDS_TranslateSolid from ./opencascade/StepToTopoDS_TranslateSolid.hxx
klass = m.attr("StepToTopoDS_TranslateSolid");
// nested enums
static_cast<py::class_<StepToTopoDS_TranslateSolid , shared_ptr<StepToTopoDS_TranslateSolid> , StepToTopoDS_Root >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Error",
(StepToTopoDS_TranslateSolidError (StepToTopoDS_TranslateSolid::*)() const) static_cast<StepToTopoDS_TranslateSolidError (StepToTopoDS_TranslateSolid::*)() const>(&StepToTopoDS_TranslateSolid::Error),
R"#(None)#"
)
// methods using call by reference i.s.o. return
.def("Init",
[]( StepToTopoDS_TranslateSolid &self , const opencascade::handle<StepVisual_TessellatedSolid> & theTSo,const opencascade::handle<Transfer_TransientProcess> & theTP,StepToTopoDS_Tool & theTool,StepToTopoDS_NMTool & theNMTool,const Standard_Boolean theReadTessellatedWhenNoBRepOnly,const StepData_Factors & theLocalFactors,const Message_ProgressRange & theProgress ){
Standard_Boolean theHasGeom;
self.Init(theTSo,theTP,theTool,theNMTool,theReadTessellatedWhenNoBRepOnly,theHasGeom,theLocalFactors,theProgress);
return std::make_tuple(theHasGeom); },
R"#(None)#" , py::arg("theTSo"), py::arg("theTP"), py::arg("theTool"), py::arg("theNMTool"), py::arg("theReadTessellatedWhenNoBRepOnly"), py::arg("theLocalFactors"), py::arg("theProgress")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
)
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("Value",
(const TopoDS_Shape & (StepToTopoDS_TranslateSolid::*)() const) static_cast<const TopoDS_Shape & (StepToTopoDS_TranslateSolid::*)() const>(&StepToTopoDS_TranslateSolid::Value),
R"#(None)#"
)
;
// Class StepToTopoDS_TranslateVertex from ./opencascade/StepToTopoDS_TranslateVertex.hxx
klass = m.attr("StepToTopoDS_TranslateVertex");
// nested enums
static_cast<py::class_<StepToTopoDS_TranslateVertex , shared_ptr<StepToTopoDS_TranslateVertex> , StepToTopoDS_Root >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const opencascade::handle<StepShape_Vertex> &,StepToTopoDS_Tool &,StepToTopoDS_NMTool &,const StepData_Factors & >() , py::arg("V"), py::arg("T"), py::arg("NMTool"), py::arg("theLocalFactors") )
// custom constructors
// methods
.def("Init",
(void (StepToTopoDS_TranslateVertex::*)( const opencascade::handle<StepShape_Vertex> & , StepToTopoDS_Tool & , StepToTopoDS_NMTool & , const StepData_Factors & ) ) static_cast<void (StepToTopoDS_TranslateVertex::*)( const opencascade::handle<StepShape_Vertex> & , StepToTopoDS_Tool & , StepToTopoDS_NMTool & , const StepData_Factors & ) >(&StepToTopoDS_TranslateVertex::Init),
R"#(None)#" , py::arg("V"), py::arg("T"), py::arg("NMTool"), py::arg("theLocalFactors")
)
.def("Error",
(StepToTopoDS_TranslateVertexError (StepToTopoDS_TranslateVertex::*)() const) static_cast<StepToTopoDS_TranslateVertexError (StepToTopoDS_TranslateVertex::*)() const>(&StepToTopoDS_TranslateVertex::Error),
R"#(None)#"
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("Value",
(const TopoDS_Shape & (StepToTopoDS_TranslateVertex::*)() const) static_cast<const TopoDS_Shape & (StepToTopoDS_TranslateVertex::*)() const>(&StepToTopoDS_TranslateVertex::Value),
R"#(None)#"
)
;
// Class StepToTopoDS_TranslateVertexLoop from ./opencascade/StepToTopoDS_TranslateVertexLoop.hxx
klass = m.attr("StepToTopoDS_TranslateVertexLoop");
// nested enums
static_cast<py::class_<StepToTopoDS_TranslateVertexLoop , shared_ptr<StepToTopoDS_TranslateVertexLoop> , StepToTopoDS_Root >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const opencascade::handle<StepShape_VertexLoop> &,StepToTopoDS_Tool &,StepToTopoDS_NMTool &,const StepData_Factors & >() , py::arg("VL"), py::arg("T"), py::arg("NMTool"), py::arg("theLocalFactors") )
// custom constructors
// methods
.def("Init",
(void (StepToTopoDS_TranslateVertexLoop::*)( const opencascade::handle<StepShape_VertexLoop> & , StepToTopoDS_Tool & , StepToTopoDS_NMTool & , const StepData_Factors & ) ) static_cast<void (StepToTopoDS_TranslateVertexLoop::*)( const opencascade::handle<StepShape_VertexLoop> & , StepToTopoDS_Tool & , StepToTopoDS_NMTool & , const StepData_Factors & ) >(&StepToTopoDS_TranslateVertexLoop::Init),
R"#(None)#" , py::arg("VL"), py::arg("T"), py::arg("NMTool"), py::arg("theLocalFactors")
)
.def("Error",
(StepToTopoDS_TranslateVertexLoopError (StepToTopoDS_TranslateVertexLoop::*)() const) static_cast<StepToTopoDS_TranslateVertexLoopError (StepToTopoDS_TranslateVertexLoop::*)() const>(&StepToTopoDS_TranslateVertexLoop::Error),
R"#(None)#"
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("Value",
(const TopoDS_Shape & (StepToTopoDS_TranslateVertexLoop::*)() const) static_cast<const TopoDS_Shape & (StepToTopoDS_TranslateVertexLoop::*)() const>(&StepToTopoDS_TranslateVertexLoop::Value),
R"#(None)#"
)
;
// functions
// ./opencascade/StepToTopoDS.hxx
// ./opencascade/StepToTopoDS_Builder.hxx
// ./opencascade/StepToTopoDS_BuilderError.hxx
// ./opencascade/StepToTopoDS_DataMapIteratorOfDataMapOfRI.hxx
// ./opencascade/StepToTopoDS_DataMapIteratorOfDataMapOfRINames.hxx
// ./opencascade/StepToTopoDS_DataMapIteratorOfDataMapOfTRI.hxx
// ./opencascade/StepToTopoDS_DataMapIteratorOfPointEdgeMap.hxx
// ./opencascade/StepToTopoDS_DataMapIteratorOfPointVertexMap.hxx
// ./opencascade/StepToTopoDS_DataMapOfRI.hxx
// ./opencascade/StepToTopoDS_DataMapOfRINames.hxx
// ./opencascade/StepToTopoDS_DataMapOfTRI.hxx
// ./opencascade/StepToTopoDS_GeometricTool.hxx
// ./opencascade/StepToTopoDS_GeometricToolError.hxx
// ./opencascade/StepToTopoDS_MakeTransformed.hxx
// ./opencascade/StepToTopoDS_NMTool.hxx
// ./opencascade/StepToTopoDS_PointEdgeMap.hxx
// ./opencascade/StepToTopoDS_PointPair.hxx
// ./opencascade/StepToTopoDS_PointVertexMap.hxx
// ./opencascade/StepToTopoDS_Root.hxx
// ./opencascade/StepToTopoDS_Tool.hxx
// ./opencascade/StepToTopoDS_TranslateCompositeCurve.hxx
// ./opencascade/StepToTopoDS_TranslateCurveBoundedSurface.hxx
// ./opencascade/StepToTopoDS_TranslateEdge.hxx
// ./opencascade/StepToTopoDS_TranslateEdgeError.hxx
// ./opencascade/StepToTopoDS_TranslateEdgeLoop.hxx
// ./opencascade/StepToTopoDS_TranslateEdgeLoopError.hxx
// ./opencascade/StepToTopoDS_TranslateFace.hxx
// ./opencascade/StepToTopoDS_TranslateFaceError.hxx
// ./opencascade/StepToTopoDS_TranslatePolyLoop.hxx
// ./opencascade/StepToTopoDS_TranslatePolyLoopError.hxx
// ./opencascade/StepToTopoDS_TranslateShell.hxx
// ./opencascade/StepToTopoDS_TranslateShellError.hxx
// ./opencascade/StepToTopoDS_TranslateSolid.hxx
// ./opencascade/StepToTopoDS_TranslateSolidError.hxx
// ./opencascade/StepToTopoDS_TranslateVertex.hxx
// ./opencascade/StepToTopoDS_TranslateVertexError.hxx
// ./opencascade/StepToTopoDS_TranslateVertexLoop.hxx
// ./opencascade/StepToTopoDS_TranslateVertexLoopError.hxx
// Additional functions
// operators
// register typdefs
register_template_NCollection_DataMap<opencascade::handle<StepRepr_RepresentationItem>, TopoDS_Shape>(m,"StepToTopoDS_DataMapOfRI");
register_template_NCollection_DataMap<TCollection_AsciiString, TopoDS_Shape>(m,"StepToTopoDS_DataMapOfRINames");
register_template_NCollection_DataMap<opencascade::handle<StepShape_TopologicalRepresentationItem>, TopoDS_Shape>(m,"StepToTopoDS_DataMapOfTRI");
register_template_NCollection_DataMap<StepToTopoDS_PointPair, TopoDS_Edge>(m,"StepToTopoDS_PointEdgeMap");
register_template_NCollection_DataMap<opencascade::handle<StepGeom_CartesianPoint>, TopoDS_Vertex>(m,"StepToTopoDS_PointVertexMap");
// exceptions
// user-defined post-inclusion per module in the body
};
// user-defined post-inclusion per module
// user-defined post
|