1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481
|
// 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 <IGESDefs_Protocol.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 <IGESBasic_HArray1OfHArray1OfInteger.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <TCollection_HAsciiString.hxx>
#include <IGESDefs_HArray1OfHArray1OfTextDisplayTemplate.hxx>
#include <IGESGraph_TextDisplayTemplate.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESDefs_AttributeDef.hxx>
#include <TCollection_HAsciiString.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESData_IGESEntity.hxx>
#include <Interface_EntityIterator.hxx>
#include <IGESData_DirChecker.hxx>
#include <Interface_ShareTool.hxx>
#include <Interface_Check.hxx>
#include <Interface_CopyTool.hxx>
#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 <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 <IGESData_IGESEntity.hxx>
#include <IGESData_IGESReaderData.hxx>
#include <IGESData_ParamReader.hxx>
#include <IGESData_IGESWriter.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESData_IGESEntity.hxx>
#include <IGESData_IGESDumper.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESBasic_HArray1OfHArray1OfReal.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESDefs_AssociativityDef.hxx>
#include <IGESData_IGESReaderData.hxx>
#include <IGESData_ParamReader.hxx>
#include <IGESData_IGESWriter.hxx>
#include <Interface_EntityIterator.hxx>
#include <IGESData_DirChecker.hxx>
#include <Interface_ShareTool.hxx>
#include <Interface_Check.hxx>
#include <Interface_CopyTool.hxx>
#include <IGESData_IGESDumper.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESDefs_AttributeDef.hxx>
#include <IGESData_IGESReaderData.hxx>
#include <IGESData_ParamReader.hxx>
#include <IGESData_IGESWriter.hxx>
#include <Interface_EntityIterator.hxx>
#include <IGESData_DirChecker.hxx>
#include <Interface_ShareTool.hxx>
#include <Interface_Check.hxx>
#include <Interface_CopyTool.hxx>
#include <IGESData_IGESDumper.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESDefs_AttributeTable.hxx>
#include <IGESData_IGESReaderData.hxx>
#include <IGESData_ParamReader.hxx>
#include <IGESData_IGESWriter.hxx>
#include <Interface_EntityIterator.hxx>
#include <IGESData_DirChecker.hxx>
#include <Interface_ShareTool.hxx>
#include <Interface_Check.hxx>
#include <Interface_CopyTool.hxx>
#include <IGESData_IGESDumper.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESDefs_GenericData.hxx>
#include <IGESData_IGESReaderData.hxx>
#include <IGESData_ParamReader.hxx>
#include <IGESData_IGESWriter.hxx>
#include <Interface_EntityIterator.hxx>
#include <IGESData_DirChecker.hxx>
#include <Interface_ShareTool.hxx>
#include <Interface_Check.hxx>
#include <Interface_CopyTool.hxx>
#include <IGESData_IGESDumper.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESDefs_MacroDef.hxx>
#include <IGESData_IGESReaderData.hxx>
#include <IGESData_ParamReader.hxx>
#include <IGESData_IGESWriter.hxx>
#include <Interface_EntityIterator.hxx>
#include <IGESData_DirChecker.hxx>
#include <Interface_ShareTool.hxx>
#include <Interface_Check.hxx>
#include <Interface_CopyTool.hxx>
#include <IGESData_IGESDumper.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESDefs_TabularData.hxx>
#include <IGESData_IGESReaderData.hxx>
#include <IGESData_ParamReader.hxx>
#include <IGESData_IGESWriter.hxx>
#include <Interface_EntityIterator.hxx>
#include <IGESData_DirChecker.hxx>
#include <Interface_ShareTool.hxx>
#include <Interface_Check.hxx>
#include <Interface_CopyTool.hxx>
#include <IGESData_IGESDumper.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESDefs_UnitsData.hxx>
#include <IGESData_IGESReaderData.hxx>
#include <IGESData_ParamReader.hxx>
#include <IGESData_IGESWriter.hxx>
#include <Interface_EntityIterator.hxx>
#include <IGESData_DirChecker.hxx>
#include <Interface_ShareTool.hxx>
#include <Interface_Check.hxx>
#include <Interface_CopyTool.hxx>
#include <IGESData_IGESDumper.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
// module includes
#include <IGESDefs.hxx>
#include <IGESDefs_Array1OfTabularData.hxx>
#include <IGESDefs_AssociativityDef.hxx>
#include <IGESDefs_AttributeDef.hxx>
#include <IGESDefs_AttributeTable.hxx>
#include <IGESDefs_GeneralModule.hxx>
#include <IGESDefs_GenericData.hxx>
#include <IGESDefs_HArray1OfHArray1OfTextDisplayTemplate.hxx>
#include <IGESDefs_HArray1OfTabularData.hxx>
#include <IGESDefs_MacroDef.hxx>
#include <IGESDefs_Protocol.hxx>
#include <IGESDefs_ReadWriteModule.hxx>
#include <IGESDefs_SpecificModule.hxx>
#include <IGESDefs_TabularData.hxx>
#include <IGESDefs_ToolAssociativityDef.hxx>
#include <IGESDefs_ToolAttributeDef.hxx>
#include <IGESDefs_ToolAttributeTable.hxx>
#include <IGESDefs_ToolGenericData.hxx>
#include <IGESDefs_ToolMacroDef.hxx>
#include <IGESDefs_ToolTabularData.hxx>
#include <IGESDefs_ToolUnitsData.hxx>
#include <IGESDefs_UnitsData.hxx>
// template related includes
// ./opencascade/IGESDefs_Array1OfTabularData.hxx
#include "NCollection_tmpl.hxx"
// user-defined pre
#include "OCP_specific.inc"
// user-defined inclusion per module
// Module definiiton
void register_IGESDefs(py::module &main_module) {
py::module m = static_cast<py::module>(main_module.attr("IGESDefs"));
py::object klass;
//Python trampoline classes
// classes
// Class IGESDefs from ./opencascade/IGESDefs.hxx
klass = m.attr("IGESDefs");
// default constructor
register_default_constructor<IGESDefs , shared_ptr<IGESDefs>>(m,"IGESDefs");
// nested enums
static_cast<py::class_<IGESDefs , shared_ptr<IGESDefs> >>(klass)
// constructors
// custom constructors
// methods
// methods using call by reference i.s.o. return
// static methods
.def_static("Init_s",
(void (*)() ) static_cast<void (*)() >(&IGESDefs::Init),
R"#(Prepares dynamic data (Protocol, Modules) for this package)#"
)
.def_static("Protocol_s",
(opencascade::handle<IGESDefs_Protocol> (*)() ) static_cast<opencascade::handle<IGESDefs_Protocol> (*)() >(&IGESDefs::Protocol),
R"#(Returns the Protocol for this Package)#"
)
// 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 IGESDefs_AssociativityDef from ./opencascade/IGESDefs_AssociativityDef.hxx
klass = m.attr("IGESDefs_AssociativityDef");
// nested enums
static_cast<py::class_<IGESDefs_AssociativityDef ,opencascade::handle<IGESDefs_AssociativityDef> , IGESData_IGESEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESDefs_AssociativityDef::*)( const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<IGESBasic_HArray1OfHArray1OfInteger> & ) ) static_cast<void (IGESDefs_AssociativityDef::*)( const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<IGESBasic_HArray1OfHArray1OfInteger> & ) >(&IGESDefs_AssociativityDef::Init),
R"#(This method is used to set the fields of the class AssociativityDef - requirements : Back Pointers requirements - orders : Class Orders - numItems : Number of Items per Class - items : Items in each class raises exception if lengths of the arrays are not the same.)#" , py::arg("requirements"), py::arg("orders"), py::arg("numItems"), py::arg("items")
)
.def("SetFormNumber",
(void (IGESDefs_AssociativityDef::*)( const Standard_Integer ) ) static_cast<void (IGESDefs_AssociativityDef::*)( const Standard_Integer ) >(&IGESDefs_AssociativityDef::SetFormNumber),
R"#(None)#" , py::arg("form")
)
.def("NbClassDefs",
(Standard_Integer (IGESDefs_AssociativityDef::*)() const) static_cast<Standard_Integer (IGESDefs_AssociativityDef::*)() const>(&IGESDefs_AssociativityDef::NbClassDefs),
R"#(returns the Number of class definitions)#"
)
.def("IsBackPointerReq",
(Standard_Boolean (IGESDefs_AssociativityDef::*)( const Standard_Integer ) const) static_cast<Standard_Boolean (IGESDefs_AssociativityDef::*)( const Standard_Integer ) const>(&IGESDefs_AssociativityDef::IsBackPointerReq),
R"#(returns 1 if the theBackPointerReqs(ClassNum) = 1 returns 0 if the theBackPointerReqs(ClassNum) = 2 raises exception if ClassNum <= 0 or ClassNum > NbClassDefs())#" , py::arg("ClassNum")
)
.def("BackPointerReq",
(Standard_Integer (IGESDefs_AssociativityDef::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IGESDefs_AssociativityDef::*)( const Standard_Integer ) const>(&IGESDefs_AssociativityDef::BackPointerReq),
R"#(returns 1 or 2 raises exception if ClassNum <= 0 or ClassNum > NbClassDefs())#" , py::arg("ClassNum")
)
.def("IsOrdered",
(Standard_Boolean (IGESDefs_AssociativityDef::*)( const Standard_Integer ) const) static_cast<Standard_Boolean (IGESDefs_AssociativityDef::*)( const Standard_Integer ) const>(&IGESDefs_AssociativityDef::IsOrdered),
R"#(returns 1 if theClassOrders(ClassNum) = 1 (ordered class) returns 0 if theClassOrders(ClassNum) = 2 (unordered class) raises exception if ClassNum <= 0 or ClassNum > NbClassDefs())#" , py::arg("ClassNum")
)
.def("ClassOrder",
(Standard_Integer (IGESDefs_AssociativityDef::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IGESDefs_AssociativityDef::*)( const Standard_Integer ) const>(&IGESDefs_AssociativityDef::ClassOrder),
R"#(returns 1 or 2 raises exception if ClassNum <= 0 or ClassNum > NbClassDefs())#" , py::arg("ClassNum")
)
.def("NbItemsPerClass",
(Standard_Integer (IGESDefs_AssociativityDef::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IGESDefs_AssociativityDef::*)( const Standard_Integer ) const>(&IGESDefs_AssociativityDef::NbItemsPerClass),
R"#(returns no. of items per class entry raises exception if ClassNum <= 0 or ClassNum > NbClassDefs())#" , py::arg("ClassNum")
)
.def("Item",
(Standard_Integer (IGESDefs_AssociativityDef::*)( const Standard_Integer , const Standard_Integer ) const) static_cast<Standard_Integer (IGESDefs_AssociativityDef::*)( const Standard_Integer , const Standard_Integer ) const>(&IGESDefs_AssociativityDef::Item),
R"#(returns ItemNum'th Item of ClassNum'th Class raises exception if ClassNum <= 0 or ClassNum > NbClassDefs() ItemNum <= 0 or ItemNum > NbItemsPerClass(ClassNum))#" , py::arg("ClassNum"), py::arg("ItemNum")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDefs_AssociativityDef::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDefs_AssociativityDef::get_type_descriptor),
R"#(None)#"
)
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESDefs_AssociativityDef::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDefs_AssociativityDef::*)() const>(&IGESDefs_AssociativityDef::DynamicType),
R"#(None)#"
)
;
// Class IGESDefs_AttributeDef from ./opencascade/IGESDefs_AttributeDef.hxx
klass = m.attr("IGESDefs_AttributeDef");
// nested enums
static_cast<py::class_<IGESDefs_AttributeDef ,opencascade::handle<IGESDefs_AttributeDef> , IGESData_IGESEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESDefs_AttributeDef::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfTransient> & , const opencascade::handle<IGESDefs_HArray1OfHArray1OfTextDisplayTemplate> & ) ) static_cast<void (IGESDefs_AttributeDef::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfTransient> & , const opencascade::handle<IGESDefs_HArray1OfHArray1OfTextDisplayTemplate> & ) >(&IGESDefs_AttributeDef::Init),
R"#(None)#" , py::arg("aName"), py::arg("aListType"), py::arg("attrTypes"), py::arg("attrValueDataTypes"), py::arg("attrValueCounts"), py::arg("attrValues"), py::arg("attrValuePointers")
)
.def("HasTableName",
(Standard_Boolean (IGESDefs_AttributeDef::*)() const) static_cast<Standard_Boolean (IGESDefs_AttributeDef::*)() const>(&IGESDefs_AttributeDef::HasTableName),
R"#(Returns True if a Table Name is defined)#"
)
.def("TableName",
(opencascade::handle<TCollection_HAsciiString> (IGESDefs_AttributeDef::*)() const) static_cast<opencascade::handle<TCollection_HAsciiString> (IGESDefs_AttributeDef::*)() const>(&IGESDefs_AttributeDef::TableName),
R"#(returns the Attribute Table name, or comment (default = null, no name : seeHasTableName))#"
)
.def("ListType",
(Standard_Integer (IGESDefs_AttributeDef::*)() const) static_cast<Standard_Integer (IGESDefs_AttributeDef::*)() const>(&IGESDefs_AttributeDef::ListType),
R"#(returns the Attribute List Type)#"
)
.def("NbAttributes",
(Standard_Integer (IGESDefs_AttributeDef::*)() const) static_cast<Standard_Integer (IGESDefs_AttributeDef::*)() const>(&IGESDefs_AttributeDef::NbAttributes),
R"#(returns the Number of Attributes)#"
)
.def("AttributeType",
(Standard_Integer (IGESDefs_AttributeDef::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IGESDefs_AttributeDef::*)( const Standard_Integer ) const>(&IGESDefs_AttributeDef::AttributeType),
R"#(returns the num'th Attribute Type raises exception if num <= 0 or num > NbAttributes())#" , py::arg("num")
)
.def("AttributeValueDataType",
(Standard_Integer (IGESDefs_AttributeDef::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IGESDefs_AttributeDef::*)( const Standard_Integer ) const>(&IGESDefs_AttributeDef::AttributeValueDataType),
R"#(returns the num'th Attribute value data type raises exception if num <= 0 or num > NbAttributes())#" , py::arg("num")
)
.def("AttributeValueCount",
(Standard_Integer (IGESDefs_AttributeDef::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IGESDefs_AttributeDef::*)( const Standard_Integer ) const>(&IGESDefs_AttributeDef::AttributeValueCount),
R"#(returns the num'th Attribute value count raises exception if num <= 0 or num > NbAttributes())#" , py::arg("num")
)
.def("HasValues",
(Standard_Boolean (IGESDefs_AttributeDef::*)() const) static_cast<Standard_Boolean (IGESDefs_AttributeDef::*)() const>(&IGESDefs_AttributeDef::HasValues),
R"#(returns false if Values are defined (i.e. for Form = 1 or 2))#"
)
.def("HasTextDisplay",
(Standard_Boolean (IGESDefs_AttributeDef::*)() const) static_cast<Standard_Boolean (IGESDefs_AttributeDef::*)() const>(&IGESDefs_AttributeDef::HasTextDisplay),
R"#(returns false if TextDisplays are defined (i.e. for Form = 2))#"
)
.def("AttributeTextDisplay",
(opencascade::handle<IGESGraph_TextDisplayTemplate> (IGESDefs_AttributeDef::*)( const Standard_Integer , const Standard_Integer ) const) static_cast<opencascade::handle<IGESGraph_TextDisplayTemplate> (IGESDefs_AttributeDef::*)( const Standard_Integer , const Standard_Integer ) const>(&IGESDefs_AttributeDef::AttributeTextDisplay),
R"#(None)#" , py::arg("AttrNum"), py::arg("PointerNum")
)
.def("AttributeList",
(opencascade::handle<Standard_Transient> (IGESDefs_AttributeDef::*)( const Standard_Integer ) const) static_cast<opencascade::handle<Standard_Transient> (IGESDefs_AttributeDef::*)( const Standard_Integer ) const>(&IGESDefs_AttributeDef::AttributeList),
R"#(Returns the List of Attributes <AttrNum>, as a Transient. Its effective Type depends of the Type of Attribute : HArray1OfInteger for Integer, Logical(0-1), HArray1OfReal for Real, HArray1OfHSaciiString for String, HArray1OfIGESEntity for Entity (Pointer) See methods AttributeAs... for an accurate access)#" , py::arg("AttrNum")
)
.def("AttributeAsInteger",
(Standard_Integer (IGESDefs_AttributeDef::*)( const Standard_Integer , const Standard_Integer ) const) static_cast<Standard_Integer (IGESDefs_AttributeDef::*)( const Standard_Integer , const Standard_Integer ) const>(&IGESDefs_AttributeDef::AttributeAsInteger),
R"#(Returns Attribute Value <AttrNum, rank ValueNum> as an Integer Error if Indices out of Range, or no Value defined, or not an Integer)#" , py::arg("AttrNum"), py::arg("ValueNum")
)
.def("AttributeAsReal",
(Standard_Real (IGESDefs_AttributeDef::*)( const Standard_Integer , const Standard_Integer ) const) static_cast<Standard_Real (IGESDefs_AttributeDef::*)( const Standard_Integer , const Standard_Integer ) const>(&IGESDefs_AttributeDef::AttributeAsReal),
R"#(Returns Attribute Value <AttrNum, rank ValueNum> as a Real Error if Indices out of Range, or no Value defined, or not a Real)#" , py::arg("AttrNum"), py::arg("ValueNum")
)
.def("AttributeAsString",
(opencascade::handle<TCollection_HAsciiString> (IGESDefs_AttributeDef::*)( const Standard_Integer , const Standard_Integer ) const) static_cast<opencascade::handle<TCollection_HAsciiString> (IGESDefs_AttributeDef::*)( const Standard_Integer , const Standard_Integer ) const>(&IGESDefs_AttributeDef::AttributeAsString),
R"#(Returns Attribute Value <AttrNum, rank ValueNum> as an Integer)#" , py::arg("AttrNum"), py::arg("ValueNum")
)
.def("AttributeAsEntity",
(opencascade::handle<IGESData_IGESEntity> (IGESDefs_AttributeDef::*)( const Standard_Integer , const Standard_Integer ) const) static_cast<opencascade::handle<IGESData_IGESEntity> (IGESDefs_AttributeDef::*)( const Standard_Integer , const Standard_Integer ) const>(&IGESDefs_AttributeDef::AttributeAsEntity),
R"#(Returns Attribute Value <AttrNum, rank ValueNum> as an Entity Error if Indices out of Range, or no Value defined, or not a Entity)#" , py::arg("AttrNum"), py::arg("ValueNum")
)
.def("AttributeAsLogical",
(Standard_Boolean (IGESDefs_AttributeDef::*)( const Standard_Integer , const Standard_Integer ) const) static_cast<Standard_Boolean (IGESDefs_AttributeDef::*)( const Standard_Integer , const Standard_Integer ) const>(&IGESDefs_AttributeDef::AttributeAsLogical),
R"#(Returns Attribute Value <AttrNum, rank ValueNum> as a Boolean Error if Indices out of Range, or no Value defined, or not a Logical)#" , py::arg("AttrNum"), py::arg("ValueNum")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDefs_AttributeDef::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDefs_AttributeDef::get_type_descriptor),
R"#(None)#"
)
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESDefs_AttributeDef::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDefs_AttributeDef::*)() const>(&IGESDefs_AttributeDef::DynamicType),
R"#(None)#"
)
;
// Class IGESDefs_AttributeTable from ./opencascade/IGESDefs_AttributeTable.hxx
klass = m.attr("IGESDefs_AttributeTable");
// nested enums
static_cast<py::class_<IGESDefs_AttributeTable ,opencascade::handle<IGESDefs_AttributeTable> , IGESData_IGESEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESDefs_AttributeTable::*)( const opencascade::handle<TColStd_HArray2OfTransient> & ) ) static_cast<void (IGESDefs_AttributeTable::*)( const opencascade::handle<TColStd_HArray2OfTransient> & ) >(&IGESDefs_AttributeTable::Init),
R"#(This method is used to set the fields of the class AttributeTable - attributes : Attribute instances, created as (1,NbAttributes,1,NbRows) - NbRows = 1 is a particular case (Form 0))#" , py::arg("attributes")
)
.def("SetDefinition",
(void (IGESDefs_AttributeTable::*)( const opencascade::handle<IGESDefs_AttributeDef> & ) ) static_cast<void (IGESDefs_AttributeTable::*)( const opencascade::handle<IGESDefs_AttributeDef> & ) >(&IGESDefs_AttributeTable::SetDefinition),
R"#(Sets a Definition as Structure information (works by calling InitMisc))#" , py::arg("def")
)
.def("Definition",
(opencascade::handle<IGESDefs_AttributeDef> (IGESDefs_AttributeTable::*)() const) static_cast<opencascade::handle<IGESDefs_AttributeDef> (IGESDefs_AttributeTable::*)() const>(&IGESDefs_AttributeTable::Definition),
R"#(Return the Structure information in Directory Entry, casted as an AttributeDef)#"
)
.def("NbRows",
(Standard_Integer (IGESDefs_AttributeTable::*)() const) static_cast<Standard_Integer (IGESDefs_AttributeTable::*)() const>(&IGESDefs_AttributeTable::NbRows),
R"#(returns Number of Rows. Remark that it is always 1 if Form = 0 It means that the list of Attributes (by their number, and for each one its type and ValueCount) is repeated <NbRows> times)#"
)
.def("NbAttributes",
(Standard_Integer (IGESDefs_AttributeTable::*)() const) static_cast<Standard_Integer (IGESDefs_AttributeTable::*)() const>(&IGESDefs_AttributeTable::NbAttributes),
R"#(returns Number of Attributes)#"
)
.def("DataType",
(Standard_Integer (IGESDefs_AttributeTable::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IGESDefs_AttributeTable::*)( const Standard_Integer ) const>(&IGESDefs_AttributeTable::DataType),
R"#(returns the Type of an Attribute, given its No. : it is read in the Definition. (1 : Integer, 2 : Real, 3 : String, 4 : Entity, 6 : Logical))#" , py::arg("Atnum")
)
.def("ValueCount",
(Standard_Integer (IGESDefs_AttributeTable::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IGESDefs_AttributeTable::*)( const Standard_Integer ) const>(&IGESDefs_AttributeTable::ValueCount),
R"#(returns the Count of Value for an Attribute, given its No. : it is read in the Definition.)#" , py::arg("Atnum")
)
.def("AttributeList",
(opencascade::handle<Standard_Transient> (IGESDefs_AttributeTable::*)( const Standard_Integer , const Standard_Integer ) const) static_cast<opencascade::handle<Standard_Transient> (IGESDefs_AttributeTable::*)( const Standard_Integer , const Standard_Integer ) const>(&IGESDefs_AttributeTable::AttributeList),
R"#(None)#" , py::arg("Attribnum"), py::arg("Rownum")
)
.def("AttributeAsInteger",
(Standard_Integer (IGESDefs_AttributeTable::*)( const Standard_Integer , const Standard_Integer , const Standard_Integer ) const) static_cast<Standard_Integer (IGESDefs_AttributeTable::*)( const Standard_Integer , const Standard_Integer , const Standard_Integer ) const>(&IGESDefs_AttributeTable::AttributeAsInteger),
R"#(Returns Attribute Value <AtNum, Rownum, rank ValNum> as an Integer Error if Indices out of Range, or no Value defined, or not an Integer)#" , py::arg("AtNum"), py::arg("Rownum"), py::arg("ValNum")
)
.def("AttributeAsReal",
(Standard_Real (IGESDefs_AttributeTable::*)( const Standard_Integer , const Standard_Integer , const Standard_Integer ) const) static_cast<Standard_Real (IGESDefs_AttributeTable::*)( const Standard_Integer , const Standard_Integer , const Standard_Integer ) const>(&IGESDefs_AttributeTable::AttributeAsReal),
R"#(Returns Attribute Value <AtNum, Rownum, rank ValNum> as a Real Error if Indices out of Range, or no Value defined, or not a Real)#" , py::arg("AtNum"), py::arg("Rownum"), py::arg("ValNum")
)
.def("AttributeAsString",
(opencascade::handle<TCollection_HAsciiString> (IGESDefs_AttributeTable::*)( const Standard_Integer , const Standard_Integer , const Standard_Integer ) const) static_cast<opencascade::handle<TCollection_HAsciiString> (IGESDefs_AttributeTable::*)( const Standard_Integer , const Standard_Integer , const Standard_Integer ) const>(&IGESDefs_AttributeTable::AttributeAsString),
R"#(Returns Attribute Value <AtNum, Rownum, rank ValNum> as an Integer)#" , py::arg("AtNum"), py::arg("Rownum"), py::arg("ValNum")
)
.def("AttributeAsEntity",
(opencascade::handle<IGESData_IGESEntity> (IGESDefs_AttributeTable::*)( const Standard_Integer , const Standard_Integer , const Standard_Integer ) const) static_cast<opencascade::handle<IGESData_IGESEntity> (IGESDefs_AttributeTable::*)( const Standard_Integer , const Standard_Integer , const Standard_Integer ) const>(&IGESDefs_AttributeTable::AttributeAsEntity),
R"#(Returns Attribute Value <AtNum, Rownum, rank ValNum> as an Entity Error if Indices out of Range, or no Value defined, or not an Entity)#" , py::arg("AtNum"), py::arg("Rownum"), py::arg("ValNum")
)
.def("AttributeAsLogical",
(Standard_Boolean (IGESDefs_AttributeTable::*)( const Standard_Integer , const Standard_Integer , const Standard_Integer ) const) static_cast<Standard_Boolean (IGESDefs_AttributeTable::*)( const Standard_Integer , const Standard_Integer , const Standard_Integer ) const>(&IGESDefs_AttributeTable::AttributeAsLogical),
R"#(Returns Attribute Value <AtNum, Rownum, rank ValNum> as a Boolean Error if Indices out of Range, or no Value defined, or not a Logical)#" , py::arg("AtNum"), py::arg("Rownum"), py::arg("ValNum")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDefs_AttributeTable::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDefs_AttributeTable::get_type_descriptor),
R"#(None)#"
)
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESDefs_AttributeTable::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDefs_AttributeTable::*)() const>(&IGESDefs_AttributeTable::DynamicType),
R"#(None)#"
)
;
// Class IGESDefs_GeneralModule from ./opencascade/IGESDefs_GeneralModule.hxx
klass = m.attr("IGESDefs_GeneralModule");
// nested enums
static_cast<py::class_<IGESDefs_GeneralModule ,opencascade::handle<IGESDefs_GeneralModule> , IGESData_GeneralModule >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("OwnSharedCase",
(void (IGESDefs_GeneralModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , Interface_EntityIterator & ) const) static_cast<void (IGESDefs_GeneralModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , Interface_EntityIterator & ) const>(&IGESDefs_GeneralModule::OwnSharedCase),
R"#(Lists the Entities shared by a given IGESEntity <ent>, from its specific parameters : specific for each type)#" , py::arg("CN"), py::arg("ent"), py::arg("iter")
)
.def("DirChecker",
(IGESData_DirChecker (IGESDefs_GeneralModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & ) const) static_cast<IGESData_DirChecker (IGESDefs_GeneralModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & ) const>(&IGESDefs_GeneralModule::DirChecker),
R"#(Returns a DirChecker, specific for each type of Entity (identified by its Case Number) : this DirChecker defines constraints which must be respected by the DirectoryPart)#" , py::arg("CN"), py::arg("ent")
)
.def("NewVoid",
(Standard_Boolean (IGESDefs_GeneralModule::*)( const Standard_Integer , opencascade::handle<Standard_Transient> & ) const) static_cast<Standard_Boolean (IGESDefs_GeneralModule::*)( const Standard_Integer , opencascade::handle<Standard_Transient> & ) const>(&IGESDefs_GeneralModule::NewVoid),
R"#(Specific creation of a new void entity)#" , py::arg("CN"), py::arg("entto")
)
.def("OwnCopyCase",
(void (IGESDefs_GeneralModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , const opencascade::handle<IGESData_IGESEntity> & , Interface_CopyTool & ) const) static_cast<void (IGESDefs_GeneralModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , const opencascade::handle<IGESData_IGESEntity> & , Interface_CopyTool & ) const>(&IGESDefs_GeneralModule::OwnCopyCase),
R"#(Copies parameters which are specific of each Type of Entity)#" , py::arg("CN"), py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("CategoryNumber",
(Standard_Integer (IGESDefs_GeneralModule::*)( const Standard_Integer , const opencascade::handle<Standard_Transient> & , const Interface_ShareTool & ) const) static_cast<Standard_Integer (IGESDefs_GeneralModule::*)( const Standard_Integer , const opencascade::handle<Standard_Transient> & , const Interface_ShareTool & ) const>(&IGESDefs_GeneralModule::CategoryNumber),
R"#(Returns a category number which characterizes an entity Auxiliary for all)#" , py::arg("CN"), py::arg("ent"), py::arg("shares")
)
// methods using call by reference i.s.o. return
.def("OwnCheckCase",
[]( IGESDefs_GeneralModule &self , const Standard_Integer CN,const opencascade::handle<IGESData_IGESEntity> & ent,const Interface_ShareTool & shares,Interface_Check& ach ){
opencascade::handle<Interface_Check> ach_ptr; ach_ptr = &ach;
self.OwnCheckCase(CN,ent,shares,ach_ptr);
if ( ach_ptr.get() != &ach ) copy_if_copy_constructible(ach, *ach_ptr);
return std::make_tuple(); },
R"#(Performs Specific Semantic Check for each type of Entity)#" , py::arg("CN"), py::arg("ent"), py::arg("shares"), py::arg("ach")
)
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDefs_GeneralModule::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDefs_GeneralModule::get_type_descriptor),
R"#(None)#"
)
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESDefs_GeneralModule::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDefs_GeneralModule::*)() const>(&IGESDefs_GeneralModule::DynamicType),
R"#(None)#"
)
;
// Class IGESDefs_GenericData from ./opencascade/IGESDefs_GenericData.hxx
klass = m.attr("IGESDefs_GenericData");
// nested enums
static_cast<py::class_<IGESDefs_GenericData ,opencascade::handle<IGESDefs_GenericData> , IGESData_IGESEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESDefs_GenericData::*)( const Standard_Integer , const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfTransient> & ) ) static_cast<void (IGESDefs_GenericData::*)( const Standard_Integer , const opencascade::handle<TCollection_HAsciiString> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfTransient> & ) >(&IGESDefs_GenericData::Init),
R"#(This method is used to set the fields of the class GenericData - nbPropVal : Number of property values - aName : Property Name - allTypes : Property Types - allValues : Property Values)#" , py::arg("nbPropVal"), py::arg("aName"), py::arg("allTypes"), py::arg("allValues")
)
.def("NbPropertyValues",
(Standard_Integer (IGESDefs_GenericData::*)() const) static_cast<Standard_Integer (IGESDefs_GenericData::*)() const>(&IGESDefs_GenericData::NbPropertyValues),
R"#(returns the number of property values)#"
)
.def("Name",
(opencascade::handle<TCollection_HAsciiString> (IGESDefs_GenericData::*)() const) static_cast<opencascade::handle<TCollection_HAsciiString> (IGESDefs_GenericData::*)() const>(&IGESDefs_GenericData::Name),
R"#(returns property name)#"
)
.def("NbTypeValuePairs",
(Standard_Integer (IGESDefs_GenericData::*)() const) static_cast<Standard_Integer (IGESDefs_GenericData::*)() const>(&IGESDefs_GenericData::NbTypeValuePairs),
R"#(returns the number of TYPE/VALUE pairs)#"
)
.def("Type",
(Standard_Integer (IGESDefs_GenericData::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IGESDefs_GenericData::*)( const Standard_Integer ) const>(&IGESDefs_GenericData::Type),
R"#(returns the Index'th property value data type raises exception if Index <= 0 or Index > NbTypeValuePairs())#" , py::arg("Index")
)
.def("Value",
(opencascade::handle<Standard_Transient> (IGESDefs_GenericData::*)( const Standard_Integer ) const) static_cast<opencascade::handle<Standard_Transient> (IGESDefs_GenericData::*)( const Standard_Integer ) const>(&IGESDefs_GenericData::Value),
R"#(HArray1OfInteger (length 1), HArray1OfReal (length 1) for Integer, Real, Boolean (= Integer 0/1), HAsciiString for String (the value itself), IGESEntity for Entity (the value itself))#" , py::arg("Index")
)
.def("ValueAsInteger",
(Standard_Integer (IGESDefs_GenericData::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IGESDefs_GenericData::*)( const Standard_Integer ) const>(&IGESDefs_GenericData::ValueAsInteger),
R"#(Returns Attribute Value <AttrNum, rank ValueNum> as an Integer Error if Index out of Range, or not an Integer)#" , py::arg("ValueNum")
)
.def("ValueAsReal",
(Standard_Real (IGESDefs_GenericData::*)( const Standard_Integer ) const) static_cast<Standard_Real (IGESDefs_GenericData::*)( const Standard_Integer ) const>(&IGESDefs_GenericData::ValueAsReal),
R"#(Returns Attribute Value <AttrNum, rank ValueNum> as a Real Error if Index out of Range, or not a Real)#" , py::arg("ValueNum")
)
.def("ValueAsString",
(opencascade::handle<TCollection_HAsciiString> (IGESDefs_GenericData::*)( const Standard_Integer ) const) static_cast<opencascade::handle<TCollection_HAsciiString> (IGESDefs_GenericData::*)( const Standard_Integer ) const>(&IGESDefs_GenericData::ValueAsString),
R"#(Returns Attribute Value <AttrNum, rank ValueNum> as an Integer)#" , py::arg("ValueNum")
)
.def("ValueAsEntity",
(opencascade::handle<IGESData_IGESEntity> (IGESDefs_GenericData::*)( const Standard_Integer ) const) static_cast<opencascade::handle<IGESData_IGESEntity> (IGESDefs_GenericData::*)( const Standard_Integer ) const>(&IGESDefs_GenericData::ValueAsEntity),
R"#(Returns Attribute Value <AttrNum, rank ValueNum> as an Entity Error if Index out of Range, or not a Entity)#" , py::arg("ValueNum")
)
.def("ValueAsLogical",
(Standard_Boolean (IGESDefs_GenericData::*)( const Standard_Integer ) const) static_cast<Standard_Boolean (IGESDefs_GenericData::*)( const Standard_Integer ) const>(&IGESDefs_GenericData::ValueAsLogical),
R"#(Returns Attribute Value <AttrNum, rank ValueNum> as a Boolean Error if Index out of Range, or not a Logical)#" , py::arg("ValueNum")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDefs_GenericData::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDefs_GenericData::get_type_descriptor),
R"#(None)#"
)
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESDefs_GenericData::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDefs_GenericData::*)() const>(&IGESDefs_GenericData::DynamicType),
R"#(None)#"
)
;
// Class IGESDefs_HArray1OfHArray1OfTextDisplayTemplate from ./opencascade/IGESDefs_HArray1OfHArray1OfTextDisplayTemplate.hxx
klass = m.attr("IGESDefs_HArray1OfHArray1OfTextDisplayTemplate");
// nested enums
static_cast<py::class_<IGESDefs_HArray1OfHArray1OfTextDisplayTemplate ,opencascade::handle<IGESDefs_HArray1OfHArray1OfTextDisplayTemplate> , Standard_Transient >>(klass)
// constructors
.def(py::init< const Standard_Integer,const Standard_Integer >() , py::arg("low"), py::arg("up") )
// custom constructors
// methods
.def("Lower",
(Standard_Integer (IGESDefs_HArray1OfHArray1OfTextDisplayTemplate::*)() const) static_cast<Standard_Integer (IGESDefs_HArray1OfHArray1OfTextDisplayTemplate::*)() const>(&IGESDefs_HArray1OfHArray1OfTextDisplayTemplate::Lower),
R"#(None)#"
)
.def("Upper",
(Standard_Integer (IGESDefs_HArray1OfHArray1OfTextDisplayTemplate::*)() const) static_cast<Standard_Integer (IGESDefs_HArray1OfHArray1OfTextDisplayTemplate::*)() const>(&IGESDefs_HArray1OfHArray1OfTextDisplayTemplate::Upper),
R"#(None)#"
)
.def("Length",
(Standard_Integer (IGESDefs_HArray1OfHArray1OfTextDisplayTemplate::*)() const) static_cast<Standard_Integer (IGESDefs_HArray1OfHArray1OfTextDisplayTemplate::*)() const>(&IGESDefs_HArray1OfHArray1OfTextDisplayTemplate::Length),
R"#(None)#"
)
.def("SetValue",
(void (IGESDefs_HArray1OfHArray1OfTextDisplayTemplate::*)( const Standard_Integer , const opencascade::handle<IGESGraph_HArray1OfTextDisplayTemplate> & ) ) static_cast<void (IGESDefs_HArray1OfHArray1OfTextDisplayTemplate::*)( const Standard_Integer , const opencascade::handle<IGESGraph_HArray1OfTextDisplayTemplate> & ) >(&IGESDefs_HArray1OfHArray1OfTextDisplayTemplate::SetValue),
R"#(None)#" , py::arg("num"), py::arg("val")
)
.def("Value",
(opencascade::handle<IGESGraph_HArray1OfTextDisplayTemplate> (IGESDefs_HArray1OfHArray1OfTextDisplayTemplate::*)( const Standard_Integer ) const) static_cast<opencascade::handle<IGESGraph_HArray1OfTextDisplayTemplate> (IGESDefs_HArray1OfHArray1OfTextDisplayTemplate::*)( const Standard_Integer ) const>(&IGESDefs_HArray1OfHArray1OfTextDisplayTemplate::Value),
R"#(None)#" , py::arg("num")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDefs_HArray1OfHArray1OfTextDisplayTemplate::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDefs_HArray1OfHArray1OfTextDisplayTemplate::get_type_descriptor),
R"#(None)#"
)
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESDefs_HArray1OfHArray1OfTextDisplayTemplate::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDefs_HArray1OfHArray1OfTextDisplayTemplate::*)() const>(&IGESDefs_HArray1OfHArray1OfTextDisplayTemplate::DynamicType),
R"#(None)#"
)
;
// Class IGESDefs_HArray1OfTabularData from ./opencascade/IGESDefs_HArray1OfTabularData.hxx
klass = m.attr("IGESDefs_HArray1OfTabularData");
// nested enums
static_cast<py::class_<IGESDefs_HArray1OfTabularData ,opencascade::handle<IGESDefs_HArray1OfTabularData> , IGESDefs_Array1OfTabularData , Standard_Transient >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const Standard_Integer,const Standard_Integer >() , py::arg("theLower"), py::arg("theUpper") )
.def(py::init< const Standard_Integer,const Standard_Integer, const opencascade::handle<IGESDefs_TabularData> & >() , py::arg("theLower"), py::arg("theUpper"), py::arg("theValue") )
.def(py::init< const opencascade::handle<IGESDefs_TabularData> &,const Standard_Integer,const Standard_Integer,const bool >() , py::arg("theBegin"), py::arg("theLower"), py::arg("theUpper"), py::arg("arg") )
.def(py::init< const NCollection_Array1<opencascade::handle<IGESDefs_TabularData>> & >() , py::arg("theOther") )
// custom constructors
// methods
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDefs_HArray1OfTabularData::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDefs_HArray1OfTabularData::get_type_descriptor),
R"#(None)#"
)
// 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("Array1",
(const IGESDefs_Array1OfTabularData & (IGESDefs_HArray1OfTabularData::*)() const) static_cast<const IGESDefs_Array1OfTabularData & (IGESDefs_HArray1OfTabularData::*)() const>(&IGESDefs_HArray1OfTabularData::Array1),
R"#(None)#"
)
.def("ChangeArray1",
(IGESDefs_Array1OfTabularData & (IGESDefs_HArray1OfTabularData::*)() ) static_cast<IGESDefs_Array1OfTabularData & (IGESDefs_HArray1OfTabularData::*)() >(&IGESDefs_HArray1OfTabularData::ChangeArray1),
R"#(None)#"
, py::return_value_policy::reference_internal
)
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESDefs_HArray1OfTabularData::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDefs_HArray1OfTabularData::*)() const>(&IGESDefs_HArray1OfTabularData::DynamicType),
R"#(None)#"
)
;
// Class IGESDefs_MacroDef from ./opencascade/IGESDefs_MacroDef.hxx
klass = m.attr("IGESDefs_MacroDef");
// nested enums
static_cast<py::class_<IGESDefs_MacroDef ,opencascade::handle<IGESDefs_MacroDef> , IGESData_IGESEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESDefs_MacroDef::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<Interface_HArray1OfHAsciiString> & , const opencascade::handle<TCollection_HAsciiString> & ) ) static_cast<void (IGESDefs_MacroDef::*)( const opencascade::handle<TCollection_HAsciiString> & , const Standard_Integer , const opencascade::handle<Interface_HArray1OfHAsciiString> & , const opencascade::handle<TCollection_HAsciiString> & ) >(&IGESDefs_MacroDef::Init),
R"#(This method is used to set the fields of the class MacroDef - macro : MACRO - entityTypeID : Entity Type ID - langStatements : Language Statements - endMacro : END MACRO)#" , py::arg("macro"), py::arg("entityTypeID"), py::arg("langStatements"), py::arg("endMacro")
)
.def("NbStatements",
(Standard_Integer (IGESDefs_MacroDef::*)() const) static_cast<Standard_Integer (IGESDefs_MacroDef::*)() const>(&IGESDefs_MacroDef::NbStatements),
R"#(returns the number of language statements)#"
)
.def("MACRO",
(opencascade::handle<TCollection_HAsciiString> (IGESDefs_MacroDef::*)() const) static_cast<opencascade::handle<TCollection_HAsciiString> (IGESDefs_MacroDef::*)() const>(&IGESDefs_MacroDef::MACRO),
R"#(returns the MACRO(Literal))#"
)
.def("EntityTypeID",
(Standard_Integer (IGESDefs_MacroDef::*)() const) static_cast<Standard_Integer (IGESDefs_MacroDef::*)() const>(&IGESDefs_MacroDef::EntityTypeID),
R"#(returns the Entity Type ID)#"
)
.def("LanguageStatement",
(opencascade::handle<TCollection_HAsciiString> (IGESDefs_MacroDef::*)( const Standard_Integer ) const) static_cast<opencascade::handle<TCollection_HAsciiString> (IGESDefs_MacroDef::*)( const Standard_Integer ) const>(&IGESDefs_MacroDef::LanguageStatement),
R"#(None)#" , py::arg("StatNum")
)
.def("ENDMACRO",
(opencascade::handle<TCollection_HAsciiString> (IGESDefs_MacroDef::*)() const) static_cast<opencascade::handle<TCollection_HAsciiString> (IGESDefs_MacroDef::*)() const>(&IGESDefs_MacroDef::ENDMACRO),
R"#(returns the ENDM(Literal))#"
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDefs_MacroDef::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDefs_MacroDef::get_type_descriptor),
R"#(None)#"
)
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESDefs_MacroDef::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDefs_MacroDef::*)() const>(&IGESDefs_MacroDef::DynamicType),
R"#(None)#"
)
;
// Class IGESDefs_Protocol from ./opencascade/IGESDefs_Protocol.hxx
klass = m.attr("IGESDefs_Protocol");
// nested enums
static_cast<py::class_<IGESDefs_Protocol ,opencascade::handle<IGESDefs_Protocol> , IGESData_Protocol >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("NbResources",
(Standard_Integer (IGESDefs_Protocol::*)() const) static_cast<Standard_Integer (IGESDefs_Protocol::*)() const>(&IGESDefs_Protocol::NbResources),
R"#(Gives the count of Resource Protocol. Here, one (Protocol from IGESGraph))#"
)
.def("Resource",
(opencascade::handle<Interface_Protocol> (IGESDefs_Protocol::*)( const Standard_Integer ) const) static_cast<opencascade::handle<Interface_Protocol> (IGESDefs_Protocol::*)( const Standard_Integer ) const>(&IGESDefs_Protocol::Resource),
R"#(Returns a Resource, given a rank.)#" , py::arg("num")
)
.def("TypeNumber",
(Standard_Integer (IGESDefs_Protocol::*)( const opencascade::handle<Standard_Type> & ) const) static_cast<Standard_Integer (IGESDefs_Protocol::*)( const opencascade::handle<Standard_Type> & ) const>(&IGESDefs_Protocol::TypeNumber),
R"#(Returns a Case Number, specific of each recognized Type This Case Number is then used in Libraries : the various Modules attached to this class of Protocol must use them in accordance (for a given value of TypeNumber, they must consider the same Type as the Protocol defines))#" , py::arg("atype")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDefs_Protocol::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDefs_Protocol::get_type_descriptor),
R"#(None)#"
)
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESDefs_Protocol::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDefs_Protocol::*)() const>(&IGESDefs_Protocol::DynamicType),
R"#(None)#"
)
;
// Class IGESDefs_ReadWriteModule from ./opencascade/IGESDefs_ReadWriteModule.hxx
klass = m.attr("IGESDefs_ReadWriteModule");
// nested enums
static_cast<py::class_<IGESDefs_ReadWriteModule ,opencascade::handle<IGESDefs_ReadWriteModule> , IGESData_ReadWriteModule >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("CaseIGES",
(Standard_Integer (IGESDefs_ReadWriteModule::*)( const Standard_Integer , const Standard_Integer ) const) static_cast<Standard_Integer (IGESDefs_ReadWriteModule::*)( const Standard_Integer , const Standard_Integer ) const>(&IGESDefs_ReadWriteModule::CaseIGES),
R"#(Defines Case Numbers for Entities of IGESDefs)#" , py::arg("typenum"), py::arg("formnum")
)
.def("ReadOwnParams",
(void (IGESDefs_ReadWriteModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESDefs_ReadWriteModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESDefs_ReadWriteModule::ReadOwnParams),
R"#(Reads own parameters from file for an Entity of IGESDefs)#" , py::arg("CN"), py::arg("ent"), py::arg("IR"), py::arg("PR")
)
.def("WriteOwnParams",
(void (IGESDefs_ReadWriteModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , IGESData_IGESWriter & ) const) static_cast<void (IGESDefs_ReadWriteModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , IGESData_IGESWriter & ) const>(&IGESDefs_ReadWriteModule::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("CN"), py::arg("ent"), py::arg("IW")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDefs_ReadWriteModule::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDefs_ReadWriteModule::get_type_descriptor),
R"#(None)#"
)
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESDefs_ReadWriteModule::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDefs_ReadWriteModule::*)() const>(&IGESDefs_ReadWriteModule::DynamicType),
R"#(None)#"
)
;
// Class IGESDefs_SpecificModule from ./opencascade/IGESDefs_SpecificModule.hxx
klass = m.attr("IGESDefs_SpecificModule");
// nested enums
static_cast<py::class_<IGESDefs_SpecificModule ,opencascade::handle<IGESDefs_SpecificModule> , IGESData_SpecificModule >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("OwnDump",
(void (IGESDefs_SpecificModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESDefs_SpecificModule::*)( const Standard_Integer , const opencascade::handle<IGESData_IGESEntity> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESDefs_SpecificModule::OwnDump),
R"#(Specific Dump (own parameters) for IGESDefs)#" , py::arg("CN"), py::arg("ent"), py::arg("dumper"), py::arg("S"), py::arg("own")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDefs_SpecificModule::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDefs_SpecificModule::get_type_descriptor),
R"#(None)#"
)
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESDefs_SpecificModule::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDefs_SpecificModule::*)() const>(&IGESDefs_SpecificModule::DynamicType),
R"#(None)#"
)
;
// Class IGESDefs_TabularData from ./opencascade/IGESDefs_TabularData.hxx
klass = m.attr("IGESDefs_TabularData");
// nested enums
static_cast<py::class_<IGESDefs_TabularData ,opencascade::handle<IGESDefs_TabularData> , IGESData_IGESEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESDefs_TabularData::*)( const Standard_Integer , const Standard_Integer , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<IGESBasic_HArray1OfHArray1OfReal> & , const opencascade::handle<IGESBasic_HArray1OfHArray1OfReal> & ) ) static_cast<void (IGESDefs_TabularData::*)( const Standard_Integer , const Standard_Integer , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<TColStd_HArray1OfInteger> & , const opencascade::handle<IGESBasic_HArray1OfHArray1OfReal> & , const opencascade::handle<IGESBasic_HArray1OfHArray1OfReal> & ) >(&IGESDefs_TabularData::Init),
R"#(This method is used to set the fields of the class TabularData - nbProps : Number of property values - propType : Property Type - typesInd : Type of independent variables - nbValuesInd : Number of values of independent variables - valuesInd : Values of independent variables - valuesDep : Values of dependent variables raises exception if lengths of typeInd and nbValuesInd are not same)#" , py::arg("nbProps"), py::arg("propType"), py::arg("typesInd"), py::arg("nbValuesInd"), py::arg("valuesInd"), py::arg("valuesDep")
)
.def("NbPropertyValues",
(Standard_Integer (IGESDefs_TabularData::*)() const) static_cast<Standard_Integer (IGESDefs_TabularData::*)() const>(&IGESDefs_TabularData::NbPropertyValues),
R"#(returns the number of property values (recorded))#"
)
.def("ComputedNbPropertyValues",
(Standard_Integer (IGESDefs_TabularData::*)() const) static_cast<Standard_Integer (IGESDefs_TabularData::*)() const>(&IGESDefs_TabularData::ComputedNbPropertyValues),
R"#(determines the number of property values required)#"
)
.def("OwnCorrect",
(Standard_Boolean (IGESDefs_TabularData::*)() ) static_cast<Standard_Boolean (IGESDefs_TabularData::*)() >(&IGESDefs_TabularData::OwnCorrect),
R"#(checks, and correct as necessary, the number of property values. Returns True if corrected, False if already OK)#"
)
.def("PropertyType",
(Standard_Integer (IGESDefs_TabularData::*)() const) static_cast<Standard_Integer (IGESDefs_TabularData::*)() const>(&IGESDefs_TabularData::PropertyType),
R"#(returns the property type)#"
)
.def("NbDependents",
(Standard_Integer (IGESDefs_TabularData::*)() const) static_cast<Standard_Integer (IGESDefs_TabularData::*)() const>(&IGESDefs_TabularData::NbDependents),
R"#(returns the number of dependent variables)#"
)
.def("NbIndependents",
(Standard_Integer (IGESDefs_TabularData::*)() const) static_cast<Standard_Integer (IGESDefs_TabularData::*)() const>(&IGESDefs_TabularData::NbIndependents),
R"#(returns the number of independent variables)#"
)
.def("TypeOfIndependents",
(Standard_Integer (IGESDefs_TabularData::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IGESDefs_TabularData::*)( const Standard_Integer ) const>(&IGESDefs_TabularData::TypeOfIndependents),
R"#(returns the type of the num'th independent variable raises exception if num <= 0 or num > NbIndependents())#" , py::arg("num")
)
.def("NbValues",
(Standard_Integer (IGESDefs_TabularData::*)( const Standard_Integer ) const) static_cast<Standard_Integer (IGESDefs_TabularData::*)( const Standard_Integer ) const>(&IGESDefs_TabularData::NbValues),
R"#(returns the number of different values of the num'th indep. variable raises exception if num <= 0 or num > NbIndependents())#" , py::arg("num")
)
.def("IndependentValue",
(Standard_Real (IGESDefs_TabularData::*)( const Standard_Integer , const Standard_Integer ) const) static_cast<Standard_Real (IGESDefs_TabularData::*)( const Standard_Integer , const Standard_Integer ) const>(&IGESDefs_TabularData::IndependentValue),
R"#(None)#" , py::arg("variablenum"), py::arg("valuenum")
)
.def("DependentValues",
(opencascade::handle<TColStd_HArray1OfReal> (IGESDefs_TabularData::*)( const Standard_Integer ) const) static_cast<opencascade::handle<TColStd_HArray1OfReal> (IGESDefs_TabularData::*)( const Standard_Integer ) const>(&IGESDefs_TabularData::DependentValues),
R"#(None)#" , py::arg("num")
)
.def("DependentValue",
(Standard_Real (IGESDefs_TabularData::*)( const Standard_Integer , const Standard_Integer ) const) static_cast<Standard_Real (IGESDefs_TabularData::*)( const Standard_Integer , const Standard_Integer ) const>(&IGESDefs_TabularData::DependentValue),
R"#(None)#" , py::arg("variablenum"), py::arg("valuenum")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDefs_TabularData::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDefs_TabularData::get_type_descriptor),
R"#(None)#"
)
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESDefs_TabularData::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDefs_TabularData::*)() const>(&IGESDefs_TabularData::DynamicType),
R"#(None)#"
)
;
// Class IGESDefs_ToolAssociativityDef from ./opencascade/IGESDefs_ToolAssociativityDef.hxx
klass = m.attr("IGESDefs_ToolAssociativityDef");
// nested enums
static_cast<py::class_<IGESDefs_ToolAssociativityDef , shared_ptr<IGESDefs_ToolAssociativityDef> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESDefs_ToolAssociativityDef::*)( const opencascade::handle<IGESDefs_AssociativityDef> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESDefs_ToolAssociativityDef::*)( const opencascade::handle<IGESDefs_AssociativityDef> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESDefs_ToolAssociativityDef::ReadOwnParams),
R"#(Reads own parameters from file. <PR> gives access to them, <IR> detains parameter types and values)#" , py::arg("ent"), py::arg("IR"), py::arg("PR")
)
.def("WriteOwnParams",
(void (IGESDefs_ToolAssociativityDef::*)( const opencascade::handle<IGESDefs_AssociativityDef> & , IGESData_IGESWriter & ) const) static_cast<void (IGESDefs_ToolAssociativityDef::*)( const opencascade::handle<IGESDefs_AssociativityDef> & , IGESData_IGESWriter & ) const>(&IGESDefs_ToolAssociativityDef::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESDefs_ToolAssociativityDef::*)( const opencascade::handle<IGESDefs_AssociativityDef> & , Interface_EntityIterator & ) const) static_cast<void (IGESDefs_ToolAssociativityDef::*)( const opencascade::handle<IGESDefs_AssociativityDef> & , Interface_EntityIterator & ) const>(&IGESDefs_ToolAssociativityDef::OwnShared),
R"#(Lists the Entities shared by a AssociativityDef <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("DirChecker",
(IGESData_DirChecker (IGESDefs_ToolAssociativityDef::*)( const opencascade::handle<IGESDefs_AssociativityDef> & ) const) static_cast<IGESData_DirChecker (IGESDefs_ToolAssociativityDef::*)( const opencascade::handle<IGESDefs_AssociativityDef> & ) const>(&IGESDefs_ToolAssociativityDef::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESDefs_ToolAssociativityDef::*)( const opencascade::handle<IGESDefs_AssociativityDef> & , const opencascade::handle<IGESDefs_AssociativityDef> & , Interface_CopyTool & ) const) static_cast<void (IGESDefs_ToolAssociativityDef::*)( const opencascade::handle<IGESDefs_AssociativityDef> & , const opencascade::handle<IGESDefs_AssociativityDef> & , Interface_CopyTool & ) const>(&IGESDefs_ToolAssociativityDef::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESDefs_ToolAssociativityDef::*)( const opencascade::handle<IGESDefs_AssociativityDef> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESDefs_ToolAssociativityDef::*)( const opencascade::handle<IGESDefs_AssociativityDef> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESDefs_ToolAssociativityDef::OwnDump),
R"#(Dump of Specific Parameters)#" , py::arg("ent"), py::arg("dumper"), py::arg("S"), py::arg("own")
)
// methods using call by reference i.s.o. return
.def("OwnCheck",
[]( IGESDefs_ToolAssociativityDef &self , const opencascade::handle<IGESDefs_AssociativityDef> & ent,const Interface_ShareTool & shares,Interface_Check& ach ){
opencascade::handle<Interface_Check> ach_ptr; ach_ptr = &ach;
self.OwnCheck(ent,shares,ach_ptr);
if ( ach_ptr.get() != &ach ) copy_if_copy_constructible(ach, *ach_ptr);
return std::make_tuple(); },
R"#(Performs Specific Semantic Check)#" , py::arg("ent"), py::arg("shares"), py::arg("ach")
)
// 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 IGESDefs_ToolAttributeDef from ./opencascade/IGESDefs_ToolAttributeDef.hxx
klass = m.attr("IGESDefs_ToolAttributeDef");
// nested enums
static_cast<py::class_<IGESDefs_ToolAttributeDef , shared_ptr<IGESDefs_ToolAttributeDef> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESDefs_ToolAttributeDef::*)( const opencascade::handle<IGESDefs_AttributeDef> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESDefs_ToolAttributeDef::*)( const opencascade::handle<IGESDefs_AttributeDef> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESDefs_ToolAttributeDef::ReadOwnParams),
R"#(Reads own parameters from file. <PR> gives access to them, <IR> detains parameter types and values)#" , py::arg("ent"), py::arg("IR"), py::arg("PR")
)
.def("WriteOwnParams",
(void (IGESDefs_ToolAttributeDef::*)( const opencascade::handle<IGESDefs_AttributeDef> & , IGESData_IGESWriter & ) const) static_cast<void (IGESDefs_ToolAttributeDef::*)( const opencascade::handle<IGESDefs_AttributeDef> & , IGESData_IGESWriter & ) const>(&IGESDefs_ToolAttributeDef::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESDefs_ToolAttributeDef::*)( const opencascade::handle<IGESDefs_AttributeDef> & , Interface_EntityIterator & ) const) static_cast<void (IGESDefs_ToolAttributeDef::*)( const opencascade::handle<IGESDefs_AttributeDef> & , Interface_EntityIterator & ) const>(&IGESDefs_ToolAttributeDef::OwnShared),
R"#(Lists the Entities shared by a AttributeDef <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("DirChecker",
(IGESData_DirChecker (IGESDefs_ToolAttributeDef::*)( const opencascade::handle<IGESDefs_AttributeDef> & ) const) static_cast<IGESData_DirChecker (IGESDefs_ToolAttributeDef::*)( const opencascade::handle<IGESDefs_AttributeDef> & ) const>(&IGESDefs_ToolAttributeDef::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESDefs_ToolAttributeDef::*)( const opencascade::handle<IGESDefs_AttributeDef> & , const opencascade::handle<IGESDefs_AttributeDef> & , Interface_CopyTool & ) const) static_cast<void (IGESDefs_ToolAttributeDef::*)( const opencascade::handle<IGESDefs_AttributeDef> & , const opencascade::handle<IGESDefs_AttributeDef> & , Interface_CopyTool & ) const>(&IGESDefs_ToolAttributeDef::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESDefs_ToolAttributeDef::*)( const opencascade::handle<IGESDefs_AttributeDef> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESDefs_ToolAttributeDef::*)( const opencascade::handle<IGESDefs_AttributeDef> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESDefs_ToolAttributeDef::OwnDump),
R"#(Dump of Specific Parameters)#" , py::arg("ent"), py::arg("dumper"), py::arg("S"), py::arg("own")
)
// methods using call by reference i.s.o. return
.def("OwnCheck",
[]( IGESDefs_ToolAttributeDef &self , const opencascade::handle<IGESDefs_AttributeDef> & ent,const Interface_ShareTool & shares,Interface_Check& ach ){
opencascade::handle<Interface_Check> ach_ptr; ach_ptr = &ach;
self.OwnCheck(ent,shares,ach_ptr);
if ( ach_ptr.get() != &ach ) copy_if_copy_constructible(ach, *ach_ptr);
return std::make_tuple(); },
R"#(Performs Specific Semantic Check)#" , py::arg("ent"), py::arg("shares"), py::arg("ach")
)
// 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 IGESDefs_ToolAttributeTable from ./opencascade/IGESDefs_ToolAttributeTable.hxx
klass = m.attr("IGESDefs_ToolAttributeTable");
// nested enums
static_cast<py::class_<IGESDefs_ToolAttributeTable , shared_ptr<IGESDefs_ToolAttributeTable> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESDefs_ToolAttributeTable::*)( const opencascade::handle<IGESDefs_AttributeTable> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESDefs_ToolAttributeTable::*)( const opencascade::handle<IGESDefs_AttributeTable> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESDefs_ToolAttributeTable::ReadOwnParams),
R"#(Reads own parameters from file. <PR> gives access to them, <IR> detains parameter types and values)#" , py::arg("ent"), py::arg("IR"), py::arg("PR")
)
.def("WriteOwnParams",
(void (IGESDefs_ToolAttributeTable::*)( const opencascade::handle<IGESDefs_AttributeTable> & , IGESData_IGESWriter & ) const) static_cast<void (IGESDefs_ToolAttributeTable::*)( const opencascade::handle<IGESDefs_AttributeTable> & , IGESData_IGESWriter & ) const>(&IGESDefs_ToolAttributeTable::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESDefs_ToolAttributeTable::*)( const opencascade::handle<IGESDefs_AttributeTable> & , Interface_EntityIterator & ) const) static_cast<void (IGESDefs_ToolAttributeTable::*)( const opencascade::handle<IGESDefs_AttributeTable> & , Interface_EntityIterator & ) const>(&IGESDefs_ToolAttributeTable::OwnShared),
R"#(Lists the Entities shared by a AttributeTable <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("DirChecker",
(IGESData_DirChecker (IGESDefs_ToolAttributeTable::*)( const opencascade::handle<IGESDefs_AttributeTable> & ) const) static_cast<IGESData_DirChecker (IGESDefs_ToolAttributeTable::*)( const opencascade::handle<IGESDefs_AttributeTable> & ) const>(&IGESDefs_ToolAttributeTable::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESDefs_ToolAttributeTable::*)( const opencascade::handle<IGESDefs_AttributeTable> & , const opencascade::handle<IGESDefs_AttributeTable> & , Interface_CopyTool & ) const) static_cast<void (IGESDefs_ToolAttributeTable::*)( const opencascade::handle<IGESDefs_AttributeTable> & , const opencascade::handle<IGESDefs_AttributeTable> & , Interface_CopyTool & ) const>(&IGESDefs_ToolAttributeTable::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESDefs_ToolAttributeTable::*)( const opencascade::handle<IGESDefs_AttributeTable> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESDefs_ToolAttributeTable::*)( const opencascade::handle<IGESDefs_AttributeTable> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESDefs_ToolAttributeTable::OwnDump),
R"#(Dump of Specific Parameters)#" , py::arg("ent"), py::arg("dumper"), py::arg("S"), py::arg("own")
)
// methods using call by reference i.s.o. return
.def("OwnCheck",
[]( IGESDefs_ToolAttributeTable &self , const opencascade::handle<IGESDefs_AttributeTable> & ent,const Interface_ShareTool & shares,Interface_Check& ach ){
opencascade::handle<Interface_Check> ach_ptr; ach_ptr = &ach;
self.OwnCheck(ent,shares,ach_ptr);
if ( ach_ptr.get() != &ach ) copy_if_copy_constructible(ach, *ach_ptr);
return std::make_tuple(); },
R"#(Performs Specific Semantic Check)#" , py::arg("ent"), py::arg("shares"), py::arg("ach")
)
// 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 IGESDefs_ToolGenericData from ./opencascade/IGESDefs_ToolGenericData.hxx
klass = m.attr("IGESDefs_ToolGenericData");
// nested enums
static_cast<py::class_<IGESDefs_ToolGenericData , shared_ptr<IGESDefs_ToolGenericData> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESDefs_ToolGenericData::*)( const opencascade::handle<IGESDefs_GenericData> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESDefs_ToolGenericData::*)( const opencascade::handle<IGESDefs_GenericData> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESDefs_ToolGenericData::ReadOwnParams),
R"#(Reads own parameters from file. <PR> gives access to them, <IR> detains parameter types and values)#" , py::arg("ent"), py::arg("IR"), py::arg("PR")
)
.def("WriteOwnParams",
(void (IGESDefs_ToolGenericData::*)( const opencascade::handle<IGESDefs_GenericData> & , IGESData_IGESWriter & ) const) static_cast<void (IGESDefs_ToolGenericData::*)( const opencascade::handle<IGESDefs_GenericData> & , IGESData_IGESWriter & ) const>(&IGESDefs_ToolGenericData::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESDefs_ToolGenericData::*)( const opencascade::handle<IGESDefs_GenericData> & , Interface_EntityIterator & ) const) static_cast<void (IGESDefs_ToolGenericData::*)( const opencascade::handle<IGESDefs_GenericData> & , Interface_EntityIterator & ) const>(&IGESDefs_ToolGenericData::OwnShared),
R"#(Lists the Entities shared by a GenericData <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("DirChecker",
(IGESData_DirChecker (IGESDefs_ToolGenericData::*)( const opencascade::handle<IGESDefs_GenericData> & ) const) static_cast<IGESData_DirChecker (IGESDefs_ToolGenericData::*)( const opencascade::handle<IGESDefs_GenericData> & ) const>(&IGESDefs_ToolGenericData::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESDefs_ToolGenericData::*)( const opencascade::handle<IGESDefs_GenericData> & , const opencascade::handle<IGESDefs_GenericData> & , Interface_CopyTool & ) const) static_cast<void (IGESDefs_ToolGenericData::*)( const opencascade::handle<IGESDefs_GenericData> & , const opencascade::handle<IGESDefs_GenericData> & , Interface_CopyTool & ) const>(&IGESDefs_ToolGenericData::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESDefs_ToolGenericData::*)( const opencascade::handle<IGESDefs_GenericData> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESDefs_ToolGenericData::*)( const opencascade::handle<IGESDefs_GenericData> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESDefs_ToolGenericData::OwnDump),
R"#(Dump of Specific Parameters)#" , py::arg("ent"), py::arg("dumper"), py::arg("S"), py::arg("own")
)
// methods using call by reference i.s.o. return
.def("OwnCheck",
[]( IGESDefs_ToolGenericData &self , const opencascade::handle<IGESDefs_GenericData> & ent,const Interface_ShareTool & shares,Interface_Check& ach ){
opencascade::handle<Interface_Check> ach_ptr; ach_ptr = &ach;
self.OwnCheck(ent,shares,ach_ptr);
if ( ach_ptr.get() != &ach ) copy_if_copy_constructible(ach, *ach_ptr);
return std::make_tuple(); },
R"#(Performs Specific Semantic Check)#" , py::arg("ent"), py::arg("shares"), py::arg("ach")
)
// 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 IGESDefs_ToolMacroDef from ./opencascade/IGESDefs_ToolMacroDef.hxx
klass = m.attr("IGESDefs_ToolMacroDef");
// nested enums
static_cast<py::class_<IGESDefs_ToolMacroDef , shared_ptr<IGESDefs_ToolMacroDef> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESDefs_ToolMacroDef::*)( const opencascade::handle<IGESDefs_MacroDef> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESDefs_ToolMacroDef::*)( const opencascade::handle<IGESDefs_MacroDef> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESDefs_ToolMacroDef::ReadOwnParams),
R"#(Reads own parameters from file. <PR> gives access to them, <IR> detains parameter types and values)#" , py::arg("ent"), py::arg("IR"), py::arg("PR")
)
.def("WriteOwnParams",
(void (IGESDefs_ToolMacroDef::*)( const opencascade::handle<IGESDefs_MacroDef> & , IGESData_IGESWriter & ) const) static_cast<void (IGESDefs_ToolMacroDef::*)( const opencascade::handle<IGESDefs_MacroDef> & , IGESData_IGESWriter & ) const>(&IGESDefs_ToolMacroDef::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESDefs_ToolMacroDef::*)( const opencascade::handle<IGESDefs_MacroDef> & , Interface_EntityIterator & ) const) static_cast<void (IGESDefs_ToolMacroDef::*)( const opencascade::handle<IGESDefs_MacroDef> & , Interface_EntityIterator & ) const>(&IGESDefs_ToolMacroDef::OwnShared),
R"#(Lists the Entities shared by a MacroDef <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("DirChecker",
(IGESData_DirChecker (IGESDefs_ToolMacroDef::*)( const opencascade::handle<IGESDefs_MacroDef> & ) const) static_cast<IGESData_DirChecker (IGESDefs_ToolMacroDef::*)( const opencascade::handle<IGESDefs_MacroDef> & ) const>(&IGESDefs_ToolMacroDef::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESDefs_ToolMacroDef::*)( const opencascade::handle<IGESDefs_MacroDef> & , const opencascade::handle<IGESDefs_MacroDef> & , Interface_CopyTool & ) const) static_cast<void (IGESDefs_ToolMacroDef::*)( const opencascade::handle<IGESDefs_MacroDef> & , const opencascade::handle<IGESDefs_MacroDef> & , Interface_CopyTool & ) const>(&IGESDefs_ToolMacroDef::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESDefs_ToolMacroDef::*)( const opencascade::handle<IGESDefs_MacroDef> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESDefs_ToolMacroDef::*)( const opencascade::handle<IGESDefs_MacroDef> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESDefs_ToolMacroDef::OwnDump),
R"#(Dump of Specific Parameters)#" , py::arg("ent"), py::arg("dumper"), py::arg("S"), py::arg("own")
)
// methods using call by reference i.s.o. return
.def("OwnCheck",
[]( IGESDefs_ToolMacroDef &self , const opencascade::handle<IGESDefs_MacroDef> & ent,const Interface_ShareTool & shares,Interface_Check& ach ){
opencascade::handle<Interface_Check> ach_ptr; ach_ptr = &ach;
self.OwnCheck(ent,shares,ach_ptr);
if ( ach_ptr.get() != &ach ) copy_if_copy_constructible(ach, *ach_ptr);
return std::make_tuple(); },
R"#(Performs Specific Semantic Check)#" , py::arg("ent"), py::arg("shares"), py::arg("ach")
)
// 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 IGESDefs_ToolTabularData from ./opencascade/IGESDefs_ToolTabularData.hxx
klass = m.attr("IGESDefs_ToolTabularData");
// nested enums
static_cast<py::class_<IGESDefs_ToolTabularData , shared_ptr<IGESDefs_ToolTabularData> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESDefs_ToolTabularData::*)( const opencascade::handle<IGESDefs_TabularData> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESDefs_ToolTabularData::*)( const opencascade::handle<IGESDefs_TabularData> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESDefs_ToolTabularData::ReadOwnParams),
R"#(Reads own parameters from file. <PR> gives access to them, <IR> detains parameter types and values)#" , py::arg("ent"), py::arg("IR"), py::arg("PR")
)
.def("WriteOwnParams",
(void (IGESDefs_ToolTabularData::*)( const opencascade::handle<IGESDefs_TabularData> & , IGESData_IGESWriter & ) const) static_cast<void (IGESDefs_ToolTabularData::*)( const opencascade::handle<IGESDefs_TabularData> & , IGESData_IGESWriter & ) const>(&IGESDefs_ToolTabularData::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESDefs_ToolTabularData::*)( const opencascade::handle<IGESDefs_TabularData> & , Interface_EntityIterator & ) const) static_cast<void (IGESDefs_ToolTabularData::*)( const opencascade::handle<IGESDefs_TabularData> & , Interface_EntityIterator & ) const>(&IGESDefs_ToolTabularData::OwnShared),
R"#(Lists the Entities shared by a TabularData <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("DirChecker",
(IGESData_DirChecker (IGESDefs_ToolTabularData::*)( const opencascade::handle<IGESDefs_TabularData> & ) const) static_cast<IGESData_DirChecker (IGESDefs_ToolTabularData::*)( const opencascade::handle<IGESDefs_TabularData> & ) const>(&IGESDefs_ToolTabularData::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESDefs_ToolTabularData::*)( const opencascade::handle<IGESDefs_TabularData> & , const opencascade::handle<IGESDefs_TabularData> & , Interface_CopyTool & ) const) static_cast<void (IGESDefs_ToolTabularData::*)( const opencascade::handle<IGESDefs_TabularData> & , const opencascade::handle<IGESDefs_TabularData> & , Interface_CopyTool & ) const>(&IGESDefs_ToolTabularData::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESDefs_ToolTabularData::*)( const opencascade::handle<IGESDefs_TabularData> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESDefs_ToolTabularData::*)( const opencascade::handle<IGESDefs_TabularData> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESDefs_ToolTabularData::OwnDump),
R"#(Dump of Specific Parameters)#" , py::arg("ent"), py::arg("dumper"), py::arg("S"), py::arg("own")
)
// methods using call by reference i.s.o. return
.def("OwnCheck",
[]( IGESDefs_ToolTabularData &self , const opencascade::handle<IGESDefs_TabularData> & ent,const Interface_ShareTool & shares,Interface_Check& ach ){
opencascade::handle<Interface_Check> ach_ptr; ach_ptr = &ach;
self.OwnCheck(ent,shares,ach_ptr);
if ( ach_ptr.get() != &ach ) copy_if_copy_constructible(ach, *ach_ptr);
return std::make_tuple(); },
R"#(Performs Specific Semantic Check)#" , py::arg("ent"), py::arg("shares"), py::arg("ach")
)
// 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 IGESDefs_ToolUnitsData from ./opencascade/IGESDefs_ToolUnitsData.hxx
klass = m.attr("IGESDefs_ToolUnitsData");
// nested enums
static_cast<py::class_<IGESDefs_ToolUnitsData , shared_ptr<IGESDefs_ToolUnitsData> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("ReadOwnParams",
(void (IGESDefs_ToolUnitsData::*)( const opencascade::handle<IGESDefs_UnitsData> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const) static_cast<void (IGESDefs_ToolUnitsData::*)( const opencascade::handle<IGESDefs_UnitsData> & , const opencascade::handle<IGESData_IGESReaderData> & , IGESData_ParamReader & ) const>(&IGESDefs_ToolUnitsData::ReadOwnParams),
R"#(Reads own parameters from file. <PR> gives access to them, <IR> detains parameter types and values)#" , py::arg("ent"), py::arg("IR"), py::arg("PR")
)
.def("WriteOwnParams",
(void (IGESDefs_ToolUnitsData::*)( const opencascade::handle<IGESDefs_UnitsData> & , IGESData_IGESWriter & ) const) static_cast<void (IGESDefs_ToolUnitsData::*)( const opencascade::handle<IGESDefs_UnitsData> & , IGESData_IGESWriter & ) const>(&IGESDefs_ToolUnitsData::WriteOwnParams),
R"#(Writes own parameters to IGESWriter)#" , py::arg("ent"), py::arg("IW")
)
.def("OwnShared",
(void (IGESDefs_ToolUnitsData::*)( const opencascade::handle<IGESDefs_UnitsData> & , Interface_EntityIterator & ) const) static_cast<void (IGESDefs_ToolUnitsData::*)( const opencascade::handle<IGESDefs_UnitsData> & , Interface_EntityIterator & ) const>(&IGESDefs_ToolUnitsData::OwnShared),
R"#(Lists the Entities shared by a UnitsData <ent>, from its specific (own) parameters)#" , py::arg("ent"), py::arg("iter")
)
.def("DirChecker",
(IGESData_DirChecker (IGESDefs_ToolUnitsData::*)( const opencascade::handle<IGESDefs_UnitsData> & ) const) static_cast<IGESData_DirChecker (IGESDefs_ToolUnitsData::*)( const opencascade::handle<IGESDefs_UnitsData> & ) const>(&IGESDefs_ToolUnitsData::DirChecker),
R"#(Returns specific DirChecker)#" , py::arg("ent")
)
.def("OwnCopy",
(void (IGESDefs_ToolUnitsData::*)( const opencascade::handle<IGESDefs_UnitsData> & , const opencascade::handle<IGESDefs_UnitsData> & , Interface_CopyTool & ) const) static_cast<void (IGESDefs_ToolUnitsData::*)( const opencascade::handle<IGESDefs_UnitsData> & , const opencascade::handle<IGESDefs_UnitsData> & , Interface_CopyTool & ) const>(&IGESDefs_ToolUnitsData::OwnCopy),
R"#(Copies Specific Parameters)#" , py::arg("entfrom"), py::arg("entto"), py::arg("TC")
)
.def("OwnDump",
(void (IGESDefs_ToolUnitsData::*)( const opencascade::handle<IGESDefs_UnitsData> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const) static_cast<void (IGESDefs_ToolUnitsData::*)( const opencascade::handle<IGESDefs_UnitsData> & , const IGESData_IGESDumper & , std::ostream & , const Standard_Integer ) const>(&IGESDefs_ToolUnitsData::OwnDump),
R"#(Dump of Specific Parameters)#" , py::arg("ent"), py::arg("dumper"), py::arg("S"), py::arg("own")
)
// methods using call by reference i.s.o. return
.def("OwnCheck",
[]( IGESDefs_ToolUnitsData &self , const opencascade::handle<IGESDefs_UnitsData> & ent,const Interface_ShareTool & shares,Interface_Check& ach ){
opencascade::handle<Interface_Check> ach_ptr; ach_ptr = &ach;
self.OwnCheck(ent,shares,ach_ptr);
if ( ach_ptr.get() != &ach ) copy_if_copy_constructible(ach, *ach_ptr);
return std::make_tuple(); },
R"#(Performs Specific Semantic Check)#" , py::arg("ent"), py::arg("shares"), py::arg("ach")
)
// 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 IGESDefs_UnitsData from ./opencascade/IGESDefs_UnitsData.hxx
klass = m.attr("IGESDefs_UnitsData");
// nested enums
static_cast<py::class_<IGESDefs_UnitsData ,opencascade::handle<IGESDefs_UnitsData> , IGESData_IGESEntity >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (IGESDefs_UnitsData::*)( const opencascade::handle<Interface_HArray1OfHAsciiString> & , const opencascade::handle<Interface_HArray1OfHAsciiString> & , const opencascade::handle<TColStd_HArray1OfReal> & ) ) static_cast<void (IGESDefs_UnitsData::*)( const opencascade::handle<Interface_HArray1OfHAsciiString> & , const opencascade::handle<Interface_HArray1OfHAsciiString> & , const opencascade::handle<TColStd_HArray1OfReal> & ) >(&IGESDefs_UnitsData::Init),
R"#(This method is used to set the fields of the class UnitsData - unitTypes : Types of the units being defined - unitValues : Unit Values of the units - unitScales : Multiplicative Scale Factors raises exception if lengths of unitTypes, unitValues and unitScale are not same)#" , py::arg("unitTypes"), py::arg("unitValues"), py::arg("unitScales")
)
.def("NbUnits",
(Standard_Integer (IGESDefs_UnitsData::*)() const) static_cast<Standard_Integer (IGESDefs_UnitsData::*)() const>(&IGESDefs_UnitsData::NbUnits),
R"#(returns the Number of units defined by this entity)#"
)
.def("UnitType",
(opencascade::handle<TCollection_HAsciiString> (IGESDefs_UnitsData::*)( const Standard_Integer ) const) static_cast<opencascade::handle<TCollection_HAsciiString> (IGESDefs_UnitsData::*)( const Standard_Integer ) const>(&IGESDefs_UnitsData::UnitType),
R"#(returns the Type of the UnitNum'th unit being defined raises exception if UnitNum <= 0 or UnitNum > NbUnits())#" , py::arg("UnitNum")
)
.def("UnitValue",
(opencascade::handle<TCollection_HAsciiString> (IGESDefs_UnitsData::*)( const Standard_Integer ) const) static_cast<opencascade::handle<TCollection_HAsciiString> (IGESDefs_UnitsData::*)( const Standard_Integer ) const>(&IGESDefs_UnitsData::UnitValue),
R"#(returns the Units of the UnitNum'th unit being defined raises exception if UnitNum <= 0 or UnitNum > NbUnits())#" , py::arg("UnitNum")
)
.def("ScaleFactor",
(Standard_Real (IGESDefs_UnitsData::*)( const Standard_Integer ) const) static_cast<Standard_Real (IGESDefs_UnitsData::*)( const Standard_Integer ) const>(&IGESDefs_UnitsData::ScaleFactor),
R"#(returns the multiplicative scale factor to be applied to the UnitNum'th unit being defined raises exception if UnitNum <= 0 or UnitNum > NbUnits())#" , py::arg("UnitNum")
)
// methods using call by reference i.s.o. return
// static methods
.def_static("get_type_name_s",
(const char * (*)() ) static_cast<const char * (*)() >(&IGESDefs_UnitsData::get_type_name),
R"#(None)#"
)
.def_static("get_type_descriptor_s",
(const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IGESDefs_UnitsData::get_type_descriptor),
R"#(None)#"
)
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("DynamicType",
(const opencascade::handle<Standard_Type> & (IGESDefs_UnitsData::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IGESDefs_UnitsData::*)() const>(&IGESDefs_UnitsData::DynamicType),
R"#(None)#"
)
;
// functions
// ./opencascade/IGESDefs.hxx
// ./opencascade/IGESDefs_Array1OfTabularData.hxx
// ./opencascade/IGESDefs_AssociativityDef.hxx
// ./opencascade/IGESDefs_AttributeDef.hxx
// ./opencascade/IGESDefs_AttributeTable.hxx
// ./opencascade/IGESDefs_GeneralModule.hxx
// ./opencascade/IGESDefs_GenericData.hxx
// ./opencascade/IGESDefs_HArray1OfHArray1OfTextDisplayTemplate.hxx
// ./opencascade/IGESDefs_HArray1OfTabularData.hxx
// ./opencascade/IGESDefs_MacroDef.hxx
// ./opencascade/IGESDefs_Protocol.hxx
// ./opencascade/IGESDefs_ReadWriteModule.hxx
// ./opencascade/IGESDefs_SpecificModule.hxx
// ./opencascade/IGESDefs_TabularData.hxx
// ./opencascade/IGESDefs_ToolAssociativityDef.hxx
// ./opencascade/IGESDefs_ToolAttributeDef.hxx
// ./opencascade/IGESDefs_ToolAttributeTable.hxx
// ./opencascade/IGESDefs_ToolGenericData.hxx
// ./opencascade/IGESDefs_ToolMacroDef.hxx
// ./opencascade/IGESDefs_ToolTabularData.hxx
// ./opencascade/IGESDefs_ToolUnitsData.hxx
// ./opencascade/IGESDefs_UnitsData.hxx
// Additional functions
// operators
// register typdefs
register_template_NCollection_Array1<opencascade::handle<IGESDefs_TabularData>>(m,"IGESDefs_Array1OfTabularData");
// exceptions
// user-defined post-inclusion per module in the body
};
// user-defined post-inclusion per module
// user-defined post
|