1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618
|
# This file was automatically generated by SWIG (http://www.swig.org).
# Version 3.0.12
#
# Do not make changes to this file unless you know what you are doing--modify
# the SWIG interface file instead.
from sys import version_info as _swig_python_version_info
if _swig_python_version_info >= (2, 7, 0):
def swig_import_helper():
import importlib
pkg = __name__.rpartition('.')[0]
mname = '.'.join((pkg, '_medmesh')).lstrip('.')
try:
return importlib.import_module(mname)
except ImportError:
return importlib.import_module('_medmesh')
_medmesh = swig_import_helper()
del swig_import_helper
elif _swig_python_version_info >= (2, 6, 0):
def swig_import_helper():
from os.path import dirname
import imp
fp = None
try:
fp, pathname, description = imp.find_module('_medmesh', [dirname(__file__)])
except ImportError:
import _medmesh
return _medmesh
try:
_mod = imp.load_module('_medmesh', fp, pathname, description)
finally:
if fp is not None:
fp.close()
return _mod
_medmesh = swig_import_helper()
del swig_import_helper
else:
import _medmesh
del _swig_python_version_info
try:
_swig_property = property
except NameError:
pass # Python < 2.2 doesn't have 'property'.
try:
import builtins as __builtin__
except ImportError:
import __builtin__
def _swig_setattr_nondynamic(self, class_type, name, value, static=1):
if (name == "thisown"):
return self.this.own(value)
if (name == "this"):
if type(value).__name__ == 'SwigPyObject':
self.__dict__[name] = value
return
method = class_type.__swig_setmethods__.get(name, None)
if method:
return method(self, value)
if (not static):
if _newclass:
object.__setattr__(self, name, value)
else:
self.__dict__[name] = value
else:
raise AttributeError("You cannot add attributes to %s" % self)
def _swig_setattr(self, class_type, name, value):
return _swig_setattr_nondynamic(self, class_type, name, value, 0)
def _swig_getattr(self, class_type, name):
if (name == "thisown"):
return self.this.own()
method = class_type.__swig_getmethods__.get(name, None)
if method:
return method(self)
raise AttributeError("'%s' object has no attribute '%s'" % (class_type.__name__, name))
def _swig_repr(self):
try:
strthis = "proxy of " + self.this.__repr__()
except __builtin__.Exception:
strthis = ""
return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,)
try:
_object = object
_newclass = 1
except __builtin__.Exception:
class _object:
pass
_newclass = 0
class SwigPyIterator_medmesh_module(_object):
__swig_setmethods__ = {}
__setattr__ = lambda self, name, value: _swig_setattr(self, SwigPyIterator_medmesh_module, name, value)
__swig_getmethods__ = {}
__getattr__ = lambda self, name: _swig_getattr(self, SwigPyIterator_medmesh_module, name)
def __init__(self, *args, **kwargs):
raise AttributeError("No constructor defined - class is abstract")
__repr__ = _swig_repr
__swig_destroy__ = _medmesh.delete_SwigPyIterator_medmesh_module
__del__ = lambda self: None
def value(self):
return _medmesh.SwigPyIterator_medmesh_module_value(self)
def incr(self, n=1):
return _medmesh.SwigPyIterator_medmesh_module_incr(self, n)
def decr(self, n=1):
return _medmesh.SwigPyIterator_medmesh_module_decr(self, n)
def distance(self, x):
return _medmesh.SwigPyIterator_medmesh_module_distance(self, x)
def equal(self, x):
return _medmesh.SwigPyIterator_medmesh_module_equal(self, x)
def copy(self):
return _medmesh.SwigPyIterator_medmesh_module_copy(self)
def next(self):
return _medmesh.SwigPyIterator_medmesh_module_next(self)
def __next__(self):
return _medmesh.SwigPyIterator_medmesh_module___next__(self)
def previous(self):
return _medmesh.SwigPyIterator_medmesh_module_previous(self)
def advance(self, n):
return _medmesh.SwigPyIterator_medmesh_module_advance(self, n)
def __eq__(self, x):
return _medmesh.SwigPyIterator_medmesh_module___eq__(self, x)
def __ne__(self, x):
return _medmesh.SwigPyIterator_medmesh_module___ne__(self, x)
def __iadd__(self, n):
return _medmesh.SwigPyIterator_medmesh_module___iadd__(self, n)
def __isub__(self, n):
return _medmesh.SwigPyIterator_medmesh_module___isub__(self, n)
def __add__(self, n):
return _medmesh.SwigPyIterator_medmesh_module___add__(self, n)
def __sub__(self, *args):
return _medmesh.SwigPyIterator_medmesh_module___sub__(self, *args)
def __iter__(self): return self
def __iter__(self):
return self
SwigPyIterator_medmesh_module_swigregister = _medmesh.SwigPyIterator_medmesh_module_swigregister
SwigPyIterator_medmesh_module_swigregister(SwigPyIterator_medmesh_module)
ABSOLUTE_H5IPUBLIC_H = _medmesh.ABSOLUTE_H5IPUBLIC_H
ABSOLUTE_H5PUBLIC_H = _medmesh.ABSOLUTE_H5PUBLIC_H
HAVE_CC_C99 = _medmesh.HAVE_CC_C99
HAVE_CUSERID = _medmesh.HAVE_CUSERID
HAVE_DLFCN_H = _medmesh.HAVE_DLFCN_H
HAVE_FTIME = _medmesh.HAVE_FTIME
HAVE_GETEUID = _medmesh.HAVE_GETEUID
HAVE_GETPWUID = _medmesh.HAVE_GETPWUID
HAVE_GETTIMEOFDAY = _medmesh.HAVE_GETTIMEOFDAY
HAVE_H5IPUBLIC_H = _medmesh.HAVE_H5IPUBLIC_H
HAVE_H5PUBLIC_H = _medmesh.HAVE_H5PUBLIC_H
HAVE_INTTYPES_H = _medmesh.HAVE_INTTYPES_H
HAVE_LIBHDF5 = _medmesh.HAVE_LIBHDF5
HAVE_MALLOC_H = _medmesh.HAVE_MALLOC_H
HAVE_MEMORY_H = _medmesh.HAVE_MEMORY_H
HAVE_PWD_H = _medmesh.HAVE_PWD_H
HAVE_PYTHON = _medmesh.HAVE_PYTHON
HAVE_STDBOOL_H = _medmesh.HAVE_STDBOOL_H
HAVE_STDINT_H = _medmesh.HAVE_STDINT_H
HAVE_STDLIB_H = _medmesh.HAVE_STDLIB_H
HAVE_STRINGS_H = _medmesh.HAVE_STRINGS_H
HAVE_STRING_H = _medmesh.HAVE_STRING_H
HAVE_SYS_STAT_H = _medmesh.HAVE_SYS_STAT_H
HAVE_SYS_TIMEB_H = _medmesh.HAVE_SYS_TIMEB_H
HAVE_SYS_TIME_H = _medmesh.HAVE_SYS_TIME_H
HAVE_SYS_TYPES_H = _medmesh.HAVE_SYS_TYPES_H
HAVE_UNISTD_H = _medmesh.HAVE_UNISTD_H
HAVE__BOOL = _medmesh.HAVE__BOOL
LT_OBJDIR = _medmesh.LT_OBJDIR
MED_API_23 = _medmesh.MED_API_23
MED_CHECK_23FORMAT = _medmesh.MED_CHECK_23FORMAT
MED_HAVE_FORTRAN = _medmesh.MED_HAVE_FORTRAN
MED_HAVE_PYTHON = _medmesh.MED_HAVE_PYTHON
MESGERR = _medmesh.MESGERR
PACKAGE = _medmesh.PACKAGE
PACKAGE_BUGREPORT = _medmesh.PACKAGE_BUGREPORT
PACKAGE_NAME = _medmesh.PACKAGE_NAME
PACKAGE_STRING = _medmesh.PACKAGE_STRING
PACKAGE_TARNAME = _medmesh.PACKAGE_TARNAME
PACKAGE_URL = _medmesh.PACKAGE_URL
PACKAGE_VERSION = _medmesh.PACKAGE_VERSION
SIZEOF_FORTRAN_INTEGER = _medmesh.SIZEOF_FORTRAN_INTEGER
SIZEOF_FORTRAN_INTEGERp8 = _medmesh.SIZEOF_FORTRAN_INTEGERp8
SIZEOF_HID_T = _medmesh.SIZEOF_HID_T
SIZEOF_INT = _medmesh.SIZEOF_INT
SIZEOF_LONG = _medmesh.SIZEOF_LONG
SIZEOF_LONG_LONG = _medmesh.SIZEOF_LONG_LONG
STDC_HEADERS = _medmesh.STDC_HEADERS
TIME_WITH_SYS_TIME = _medmesh.TIME_WITH_SYS_TIME
VERSION = _medmesh.VERSION
HDF_VERSION_MAJOR_REF = _medmesh.HDF_VERSION_MAJOR_REF
HDF_VERSION_MINOR_REF = _medmesh.HDF_VERSION_MINOR_REF
HDF_VERSION_RELEASE_REF = _medmesh.HDF_VERSION_RELEASE_REF
HDF_VERSION_NUM_REF = _medmesh.HDF_VERSION_NUM_REF
H5F_LIBVER_18 = _medmesh.H5F_LIBVER_18
MED_MAJOR_NUM = _medmesh.MED_MAJOR_NUM
MED_MINOR_NUM = _medmesh.MED_MINOR_NUM
MED_RELEASE_NUM = _medmesh.MED_RELEASE_NUM
MED_3_LATEST_MINOR = _medmesh.MED_3_LATEST_MINOR
MED_4_LATEST_MINOR = _medmesh.MED_4_LATEST_MINOR
MED_NUM_MAJEUR = _medmesh.MED_NUM_MAJEUR
MED_NUM_MINEUR = _medmesh.MED_NUM_MINEUR
MED_NUM_RELEASE = _medmesh.MED_NUM_RELEASE
MED_VERSION_STR = _medmesh.MED_VERSION_STR
MED_MAX_PARA = _medmesh.MED_MAX_PARA
MED_COMMENT_SIZE = _medmesh.MED_COMMENT_SIZE
MED_IDENT_SIZE = _medmesh.MED_IDENT_SIZE
MED_NAME_SIZE = _medmesh.MED_NAME_SIZE
MED_SNAME_SIZE = _medmesh.MED_SNAME_SIZE
MED_LNAME_SIZE = _medmesh.MED_LNAME_SIZE
MED_SNAME_BLANK = _medmesh.MED_SNAME_BLANK
MED_NAME_BLANK = _medmesh.MED_NAME_BLANK
MED_PATHNAME_SIZE = _medmesh.MED_PATHNAME_SIZE
MED_MAX_CHFID_PATH = _medmesh.MED_MAX_CHFID_PATH
MED_FULL_INTERLACE = _medmesh.MED_FULL_INTERLACE
MED_NO_INTERLACE = _medmesh.MED_NO_INTERLACE
MED_UNDEF_INTERLACE = _medmesh.MED_UNDEF_INTERLACE
MED_UNDEF_STMODE = _medmesh.MED_UNDEF_STMODE
MED_GLOBAL_STMODE = _medmesh.MED_GLOBAL_STMODE
MED_COMPACT_STMODE = _medmesh.MED_COMPACT_STMODE
MED_GLOBAL_PFLMODE = _medmesh.MED_GLOBAL_PFLMODE
MED_COMPACT_PFLMODE = _medmesh.MED_COMPACT_PFLMODE
MED_UNDEF_PFLMODE = _medmesh.MED_UNDEF_PFLMODE
MED_ACC_RDONLY = _medmesh.MED_ACC_RDONLY
MED_ACC_RDWR = _medmesh.MED_ACC_RDWR
MED_ACC_RDEXT = _medmesh.MED_ACC_RDEXT
MED_ACC_CREAT = _medmesh.MED_ACC_CREAT
MED_ACC_UNDEF = _medmesh.MED_ACC_UNDEF
MED_UNSTRUCTURED_MESH = _medmesh.MED_UNSTRUCTURED_MESH
MED_STRUCTURED_MESH = _medmesh.MED_STRUCTURED_MESH
MED_UNDEF_MESH_TYPE = _medmesh.MED_UNDEF_MESH_TYPE
MED_CARTESIAN_GRID = _medmesh.MED_CARTESIAN_GRID
MED_POLAR_GRID = _medmesh.MED_POLAR_GRID
MED_CURVILINEAR_GRID = _medmesh.MED_CURVILINEAR_GRID
MED_UNDEF_GRID_TYPE = _medmesh.MED_UNDEF_GRID_TYPE
MED_CELL = _medmesh.MED_CELL
MED_DESCENDING_FACE = _medmesh.MED_DESCENDING_FACE
MED_DESCENDING_EDGE = _medmesh.MED_DESCENDING_EDGE
MED_NODE = _medmesh.MED_NODE
MED_NODE_ELEMENT = _medmesh.MED_NODE_ELEMENT
MED_STRUCT_ELEMENT = _medmesh.MED_STRUCT_ELEMENT
MED_ALL_ENTITY_TYPE = _medmesh.MED_ALL_ENTITY_TYPE
MED_UNDEF_ENTITY_TYPE = _medmesh.MED_UNDEF_ENTITY_TYPE
MED_N_ENTITY_TYPES = _medmesh.MED_N_ENTITY_TYPES
MED_COORDINATE = _medmesh.MED_COORDINATE
MED_CONNECTIVITY = _medmesh.MED_CONNECTIVITY
MED_NAME = _medmesh.MED_NAME
MED_NUMBER = _medmesh.MED_NUMBER
MED_FAMILY_NUMBER = _medmesh.MED_FAMILY_NUMBER
MED_COORDINATE_AXIS1 = _medmesh.MED_COORDINATE_AXIS1
MED_COORDINATE_AXIS2 = _medmesh.MED_COORDINATE_AXIS2
MED_COORDINATE_AXIS3 = _medmesh.MED_COORDINATE_AXIS3
MED_INDEX_FACE = _medmesh.MED_INDEX_FACE
MED_INDEX_NODE = _medmesh.MED_INDEX_NODE
MED_GLOBAL_NUMBER = _medmesh.MED_GLOBAL_NUMBER
MED_VARIABLE_ATTRIBUTE = _medmesh.MED_VARIABLE_ATTRIBUTE
MED_COORDINATE_TRSF = _medmesh.MED_COORDINATE_TRSF
MED_UNDEF_DATATYPE = _medmesh.MED_UNDEF_DATATYPE
MED_INTERNAL_FLOAT32 = _medmesh.MED_INTERNAL_FLOAT32
MED_INTERNAL_FLOAT64 = _medmesh.MED_INTERNAL_FLOAT64
MED_INTERNAL_INT32 = _medmesh.MED_INTERNAL_INT32
MED_INTERNAL_INT64 = _medmesh.MED_INTERNAL_INT64
MED_INTERNAL_INT = _medmesh.MED_INTERNAL_INT
MED_INTERNAL_NAME = _medmesh.MED_INTERNAL_NAME
MED_INTERNAL_SNAME = _medmesh.MED_INTERNAL_SNAME
MED_INTERNAL_LNAME = _medmesh.MED_INTERNAL_LNAME
MED_INTERNAL_IDENT = _medmesh.MED_INTERNAL_IDENT
MED_INTERNAL_CHAR = _medmesh.MED_INTERNAL_CHAR
MED_INTERNAL_UNDEF = _medmesh.MED_INTERNAL_UNDEF
MED_DOUBLE = _medmesh.MED_DOUBLE
MED_FLOAT64 = _medmesh.MED_FLOAT64
MED_FLOAT32 = _medmesh.MED_FLOAT32
MED_INT32 = _medmesh.MED_INT32
MED_INT64 = _medmesh.MED_INT64
MED_INT = _medmesh.MED_INT
MED_ATT_FLOAT64 = _medmesh.MED_ATT_FLOAT64
MED_ATT_INT = _medmesh.MED_ATT_INT
MED_ATT_NAME = _medmesh.MED_ATT_NAME
MED_ATT_UNDEF = _medmesh.MED_ATT_UNDEF
MED_MESH = _medmesh.MED_MESH
MED_FIELD = _medmesh.MED_FIELD
MED_LIBRARY = _medmesh.MED_LIBRARY
MED_FILE = _medmesh.MED_FILE
MED_MESH_SUPPORT = _medmesh.MED_MESH_SUPPORT
MED_ELSTRUCT = _medmesh.MED_ELSTRUCT
MED_FAMILY = _medmesh.MED_FAMILY
MED_EQUIVALENCE = _medmesh.MED_EQUIVALENCE
MED_GROUP = _medmesh.MED_GROUP
MED_JOINT = _medmesh.MED_JOINT
MED_LOCALIZATION = _medmesh.MED_LOCALIZATION
MED_PROFILE = _medmesh.MED_PROFILE
MED_FILTER = _medmesh.MED_FILTER
MED_INTERPOLATION = _medmesh.MED_INTERPOLATION
MED_NUMERICAL_DATA = _medmesh.MED_NUMERICAL_DATA
MED_LINK = _medmesh.MED_LINK
MED_CLASS_UNDEF = _medmesh.MED_CLASS_UNDEF
MED_CLASS_ALL = _medmesh.MED_CLASS_ALL
MED_POINT1 = _medmesh.MED_POINT1
MED_SEG2 = _medmesh.MED_SEG2
MED_SEG3 = _medmesh.MED_SEG3
MED_SEG4 = _medmesh.MED_SEG4
MED_TRIA3 = _medmesh.MED_TRIA3
MED_QUAD4 = _medmesh.MED_QUAD4
MED_TRIA6 = _medmesh.MED_TRIA6
MED_TRIA7 = _medmesh.MED_TRIA7
MED_QUAD8 = _medmesh.MED_QUAD8
MED_QUAD9 = _medmesh.MED_QUAD9
MED_TETRA4 = _medmesh.MED_TETRA4
MED_PYRA5 = _medmesh.MED_PYRA5
MED_PENTA6 = _medmesh.MED_PENTA6
MED_HEXA8 = _medmesh.MED_HEXA8
MED_TETRA10 = _medmesh.MED_TETRA10
MED_OCTA12 = _medmesh.MED_OCTA12
MED_PYRA13 = _medmesh.MED_PYRA13
MED_PENTA15 = _medmesh.MED_PENTA15
MED_PENTA18 = _medmesh.MED_PENTA18
MED_HEXA20 = _medmesh.MED_HEXA20
MED_HEXA27 = _medmesh.MED_HEXA27
MED_POLYGON = _medmesh.MED_POLYGON
MED_POLYGON2 = _medmesh.MED_POLYGON2
MED_POLYHEDRON = _medmesh.MED_POLYHEDRON
MED_STRUCT_GEO_INTERNAL = _medmesh.MED_STRUCT_GEO_INTERNAL
MED_STRUCT_GEO_SUP_INTERNAL = _medmesh.MED_STRUCT_GEO_SUP_INTERNAL
MED_NONE = _medmesh.MED_NONE
MED_NO_GEOTYPE = _medmesh.MED_NO_GEOTYPE
MED_UNDEF_GEOTYPE = _medmesh.MED_UNDEF_GEOTYPE
MED_UNDEF_GEOMETRY_TYPE = _medmesh.MED_UNDEF_GEOMETRY_TYPE
MED_ALL_GEOTYPE = _medmesh.MED_ALL_GEOTYPE
MED_GEO_ALL = _medmesh.MED_GEO_ALL
MED_N_CELL_GEO = _medmesh.MED_N_CELL_GEO
MED_N_CELL_FIXED_GEO = _medmesh.MED_N_CELL_FIXED_GEO
MED_N_CELL_GEO_FIXED_CON = _medmesh.MED_N_CELL_GEO_FIXED_CON
MED_N_FACE_GEO = _medmesh.MED_N_FACE_GEO
MED_N_FACE_FIXED_GEO = _medmesh.MED_N_FACE_FIXED_GEO
MED_N_FACE_GEO_FIXED_CON = _medmesh.MED_N_FACE_GEO_FIXED_CON
MED_N_EDGE_TYPES = _medmesh.MED_N_EDGE_TYPES
MED_N_EDGE_FIXED_GEO = _medmesh.MED_N_EDGE_FIXED_GEO
MED_N_EDGE_GEO_FIXED_CON = _medmesh.MED_N_EDGE_GEO_FIXED_CON
MED_N_NODE_GEO = _medmesh.MED_N_NODE_GEO
MED_N_NODE_FIXED_GEO = _medmesh.MED_N_NODE_FIXED_GEO
MED_N_NODE_GEO_FIXED_CON = _medmesh.MED_N_NODE_GEO_FIXED_CON
MED_NODAL = _medmesh.MED_NODAL
MED_DESCENDING = _medmesh.MED_DESCENDING
MED_UNDEF_CONNECTIVITY_MODE = _medmesh.MED_UNDEF_CONNECTIVITY_MODE
MED_NO_CMODE = _medmesh.MED_NO_CMODE
MED_CARTESIAN = _medmesh.MED_CARTESIAN
MED_CYLINDRICAL = _medmesh.MED_CYLINDRICAL
MED_SPHERICAL = _medmesh.MED_SPHERICAL
MED_UNDEF_AXIS_TYPE = _medmesh.MED_UNDEF_AXIS_TYPE
MED_FALSE = _medmesh.MED_FALSE
MED_TRUE = _medmesh.MED_TRUE
MED_GAUSS_ELNO = _medmesh.MED_GAUSS_ELNO
MED_IPOINT_ELNO = _medmesh.MED_IPOINT_ELNO
MED_NO_NAME = _medmesh.MED_NO_NAME
MED_NO_MESHNAME = _medmesh.MED_NO_MESHNAME
MED_NO_MESH = _medmesh.MED_NO_MESH
MED_NO_MESH_SUPPORT = _medmesh.MED_NO_MESH_SUPPORT
MED_NO_LOCALIZATION = _medmesh.MED_NO_LOCALIZATION
MED_NO_INTERPOLATION = _medmesh.MED_NO_INTERPOLATION
MED_NO_IPOINT_INTERNAL = _medmesh.MED_NO_IPOINT_INTERNAL
MED_NO_PROFILE = _medmesh.MED_NO_PROFILE
MED_NO_GROUP = _medmesh.MED_NO_GROUP
MED_ALLENTITIES_PROFILE = _medmesh.MED_ALLENTITIES_PROFILE
MED_NO_PROFILE_INTERNAL = _medmesh.MED_NO_PROFILE_INTERNAL
MED_SAME_PROFILE_INTERNAL = _medmesh.MED_SAME_PROFILE_INTERNAL
MED_ALL_CONSTITUENT = _medmesh.MED_ALL_CONSTITUENT
MED_UNDEF_SIZE = _medmesh.MED_UNDEF_SIZE
MED_NO_PROFILE_SIZE = _medmesh.MED_NO_PROFILE_SIZE
MED_SORT_DTIT = _medmesh.MED_SORT_DTIT
MED_SORT_ITDT = _medmesh.MED_SORT_ITDT
MED_SORT_UNDEF = _medmesh.MED_SORT_UNDEF
MED_NO_DT = _medmesh.MED_NO_DT
MED_NO_IT = _medmesh.MED_NO_IT
MED_UNDEF_DT = _medmesh.MED_UNDEF_DT
MED_ATT_NOT_FILLED = _medmesh.MED_ATT_NOT_FILLED
MED_MAX_FILTER_SPACES = _medmesh.MED_MAX_FILTER_SPACES
class med_filter(_object):
__swig_setmethods__ = {}
__setattr__ = lambda self, name, value: _swig_setattr(self, med_filter, name, value)
__swig_getmethods__ = {}
__getattr__ = lambda self, name: _swig_getattr(self, med_filter, name)
__repr__ = _swig_repr
__swig_setmethods__["nspaces"] = _medmesh.med_filter_nspaces_set
__swig_getmethods__["nspaces"] = _medmesh.med_filter_nspaces_get
if _newclass:
nspaces = _swig_property(_medmesh.med_filter_nspaces_get, _medmesh.med_filter_nspaces_set)
__swig_setmethods__["memspace"] = _medmesh.med_filter_memspace_set
__swig_getmethods__["memspace"] = _medmesh.med_filter_memspace_get
if _newclass:
memspace = _swig_property(_medmesh.med_filter_memspace_get, _medmesh.med_filter_memspace_set)
__swig_setmethods__["diskspace"] = _medmesh.med_filter_diskspace_set
__swig_getmethods__["diskspace"] = _medmesh.med_filter_diskspace_get
if _newclass:
diskspace = _swig_property(_medmesh.med_filter_diskspace_get, _medmesh.med_filter_diskspace_set)
__swig_setmethods__["nentity"] = _medmesh.med_filter_nentity_set
__swig_getmethods__["nentity"] = _medmesh.med_filter_nentity_get
if _newclass:
nentity = _swig_property(_medmesh.med_filter_nentity_get, _medmesh.med_filter_nentity_set)
__swig_setmethods__["nvaluesperentity"] = _medmesh.med_filter_nvaluesperentity_set
__swig_getmethods__["nvaluesperentity"] = _medmesh.med_filter_nvaluesperentity_get
if _newclass:
nvaluesperentity = _swig_property(_medmesh.med_filter_nvaluesperentity_get, _medmesh.med_filter_nvaluesperentity_set)
__swig_setmethods__["nconstituentpervalue"] = _medmesh.med_filter_nconstituentpervalue_set
__swig_getmethods__["nconstituentpervalue"] = _medmesh.med_filter_nconstituentpervalue_get
if _newclass:
nconstituentpervalue = _swig_property(_medmesh.med_filter_nconstituentpervalue_get, _medmesh.med_filter_nconstituentpervalue_set)
__swig_setmethods__["constituentselect"] = _medmesh.med_filter_constituentselect_set
__swig_getmethods__["constituentselect"] = _medmesh.med_filter_constituentselect_get
if _newclass:
constituentselect = _swig_property(_medmesh.med_filter_constituentselect_get, _medmesh.med_filter_constituentselect_set)
__swig_setmethods__["switchmode"] = _medmesh.med_filter_switchmode_set
__swig_getmethods__["switchmode"] = _medmesh.med_filter_switchmode_get
if _newclass:
switchmode = _swig_property(_medmesh.med_filter_switchmode_get, _medmesh.med_filter_switchmode_set)
__swig_setmethods__["filterarraysize"] = _medmesh.med_filter_filterarraysize_set
__swig_getmethods__["filterarraysize"] = _medmesh.med_filter_filterarraysize_get
if _newclass:
filterarraysize = _swig_property(_medmesh.med_filter_filterarraysize_get, _medmesh.med_filter_filterarraysize_set)
__swig_setmethods__["filterarray23v30"] = _medmesh.med_filter_filterarray23v30_set
__swig_getmethods__["filterarray23v30"] = _medmesh.med_filter_filterarray23v30_get
if _newclass:
filterarray23v30 = _swig_property(_medmesh.med_filter_filterarray23v30_get, _medmesh.med_filter_filterarray23v30_set)
__swig_setmethods__["profilearraysize"] = _medmesh.med_filter_profilearraysize_set
__swig_getmethods__["profilearraysize"] = _medmesh.med_filter_profilearraysize_get
if _newclass:
profilearraysize = _swig_property(_medmesh.med_filter_profilearraysize_get, _medmesh.med_filter_profilearraysize_set)
__swig_setmethods__["storagemode"] = _medmesh.med_filter_storagemode_set
__swig_getmethods__["storagemode"] = _medmesh.med_filter_storagemode_get
if _newclass:
storagemode = _swig_property(_medmesh.med_filter_storagemode_get, _medmesh.med_filter_storagemode_set)
__swig_setmethods__["profilename"] = _medmesh.med_filter_profilename_set
__swig_getmethods__["profilename"] = _medmesh.med_filter_profilename_get
if _newclass:
profilename = _swig_property(_medmesh.med_filter_profilename_get, _medmesh.med_filter_profilename_set)
def __init__(self):
"""__init__(self) -> med_filter"""
this = _medmesh.new_med_filter()
try:
self.this.append(this)
except __builtin__.Exception:
self.this = this
__swig_destroy__ = _medmesh.delete_med_filter
__del__ = lambda self: None
med_filter_swigregister = _medmesh.med_filter_swigregister
med_filter_swigregister(med_filter)
MED_NO_FILTER_SIZE = _medmesh.MED_NO_FILTER_SIZE
MED_NO_PROFILE_F = _medmesh.MED_NO_PROFILE_F
class med_file_version(_object):
__swig_setmethods__ = {}
__setattr__ = lambda self, name, value: _swig_setattr(self, med_file_version, name, value)
__swig_getmethods__ = {}
__getattr__ = lambda self, name: _swig_getattr(self, med_file_version, name)
__repr__ = _swig_repr
__swig_setmethods__["majeur"] = _medmesh.med_file_version_majeur_set
__swig_getmethods__["majeur"] = _medmesh.med_file_version_majeur_get
if _newclass:
majeur = _swig_property(_medmesh.med_file_version_majeur_get, _medmesh.med_file_version_majeur_set)
__swig_setmethods__["mineur"] = _medmesh.med_file_version_mineur_set
__swig_getmethods__["mineur"] = _medmesh.med_file_version_mineur_get
if _newclass:
mineur = _swig_property(_medmesh.med_file_version_mineur_get, _medmesh.med_file_version_mineur_set)
__swig_setmethods__["release"] = _medmesh.med_file_version_release_set
__swig_getmethods__["release"] = _medmesh.med_file_version_release_get
if _newclass:
release = _swig_property(_medmesh.med_file_version_release_get, _medmesh.med_file_version_release_set)
def __init__(self):
"""__init__(self) -> med_file_version"""
this = _medmesh.new_med_file_version()
try:
self.this.append(this)
except __builtin__.Exception:
self.this = this
__swig_destroy__ = _medmesh.delete_med_file_version
__del__ = lambda self: None
med_file_version_swigregister = _medmesh.med_file_version_swigregister
med_file_version_swigregister(med_file_version)
class med_memfile(_object):
__swig_setmethods__ = {}
__setattr__ = lambda self, name, value: _swig_setattr(self, med_memfile, name, value)
__swig_getmethods__ = {}
__getattr__ = lambda self, name: _swig_getattr(self, med_memfile, name)
__repr__ = _swig_repr
__swig_setmethods__["app_image_ptr"] = _medmesh.med_memfile_app_image_ptr_set
__swig_getmethods__["app_image_ptr"] = _medmesh.med_memfile_app_image_ptr_get
if _newclass:
app_image_ptr = _swig_property(_medmesh.med_memfile_app_image_ptr_get, _medmesh.med_memfile_app_image_ptr_set)
__swig_setmethods__["app_image_size"] = _medmesh.med_memfile_app_image_size_set
__swig_getmethods__["app_image_size"] = _medmesh.med_memfile_app_image_size_get
if _newclass:
app_image_size = _swig_property(_medmesh.med_memfile_app_image_size_get, _medmesh.med_memfile_app_image_size_set)
__swig_setmethods__["ref_count"] = _medmesh.med_memfile_ref_count_set
__swig_getmethods__["ref_count"] = _medmesh.med_memfile_ref_count_get
if _newclass:
ref_count = _swig_property(_medmesh.med_memfile_ref_count_get, _medmesh.med_memfile_ref_count_set)
__swig_setmethods__["fapl_image_ptr"] = _medmesh.med_memfile_fapl_image_ptr_set
__swig_getmethods__["fapl_image_ptr"] = _medmesh.med_memfile_fapl_image_ptr_get
if _newclass:
fapl_image_ptr = _swig_property(_medmesh.med_memfile_fapl_image_ptr_get, _medmesh.med_memfile_fapl_image_ptr_set)
__swig_setmethods__["fapl_image_size"] = _medmesh.med_memfile_fapl_image_size_set
__swig_getmethods__["fapl_image_size"] = _medmesh.med_memfile_fapl_image_size_get
if _newclass:
fapl_image_size = _swig_property(_medmesh.med_memfile_fapl_image_size_get, _medmesh.med_memfile_fapl_image_size_set)
__swig_setmethods__["fapl_ref_count"] = _medmesh.med_memfile_fapl_ref_count_set
__swig_getmethods__["fapl_ref_count"] = _medmesh.med_memfile_fapl_ref_count_get
if _newclass:
fapl_ref_count = _swig_property(_medmesh.med_memfile_fapl_ref_count_get, _medmesh.med_memfile_fapl_ref_count_set)
__swig_setmethods__["vfd_image_ptr"] = _medmesh.med_memfile_vfd_image_ptr_set
__swig_getmethods__["vfd_image_ptr"] = _medmesh.med_memfile_vfd_image_ptr_get
if _newclass:
vfd_image_ptr = _swig_property(_medmesh.med_memfile_vfd_image_ptr_get, _medmesh.med_memfile_vfd_image_ptr_set)
__swig_setmethods__["vfd_image_size"] = _medmesh.med_memfile_vfd_image_size_set
__swig_getmethods__["vfd_image_size"] = _medmesh.med_memfile_vfd_image_size_get
if _newclass:
vfd_image_size = _swig_property(_medmesh.med_memfile_vfd_image_size_get, _medmesh.med_memfile_vfd_image_size_set)
__swig_setmethods__["vfd_ref_count"] = _medmesh.med_memfile_vfd_ref_count_set
__swig_getmethods__["vfd_ref_count"] = _medmesh.med_memfile_vfd_ref_count_get
if _newclass:
vfd_ref_count = _swig_property(_medmesh.med_memfile_vfd_ref_count_get, _medmesh.med_memfile_vfd_ref_count_set)
__swig_setmethods__["flags"] = _medmesh.med_memfile_flags_set
__swig_getmethods__["flags"] = _medmesh.med_memfile_flags_get
if _newclass:
flags = _swig_property(_medmesh.med_memfile_flags_get, _medmesh.med_memfile_flags_set)
def __init__(self):
"""__init__(self) -> med_memfile"""
this = _medmesh.new_med_memfile()
try:
self.this.append(this)
except __builtin__.Exception:
self.this = this
__swig_destroy__ = _medmesh.delete_med_memfile
__del__ = lambda self: None
med_memfile_swigregister = _medmesh.med_memfile_swigregister
med_memfile_swigregister(med_memfile)
MED_PARTICLE_NAME = _medmesh.MED_PARTICLE_NAME
MED_BALL_NAME = _medmesh.MED_BALL_NAME
MED_BEAM_NAME = _medmesh.MED_BEAM_NAME
MED_PARTICLE_LABEL = _medmesh.MED_PARTICLE_LABEL
MED_BALL_DIAMETER = _medmesh.MED_BALL_DIAMETER
MED_BEAM_THICKNESS = _medmesh.MED_BEAM_THICKNESS
import med.medenum
class MEDBOOL(_object):
__swig_setmethods__ = {}
__setattr__ = lambda self, name, value: _swig_setattr(self, MEDBOOL, name, value)
__swig_getmethods__ = {}
__getattr__ = lambda self, name: _swig_getattr(self, MEDBOOL, name)
__repr__ = _swig_repr
def iterator(self):
return _medmesh.MEDBOOL_iterator(self)
def __iter__(self):
return self.iterator()
def __nonzero__(self):
return _medmesh.MEDBOOL___nonzero__(self)
def __bool__(self):
return _medmesh.MEDBOOL___bool__(self)
def __len__(self):
return _medmesh.MEDBOOL___len__(self)
def __getslice__(self, i, j):
return _medmesh.MEDBOOL___getslice__(self, i, j)
def __setslice__(self, *args):
return _medmesh.MEDBOOL___setslice__(self, *args)
def __delslice__(self, i, j):
return _medmesh.MEDBOOL___delslice__(self, i, j)
def __delitem__(self, *args):
return _medmesh.MEDBOOL___delitem__(self, *args)
def __getitem__(self, *args):
return _medmesh.MEDBOOL___getitem__(self, *args)
def __setitem__(self, *args):
return _medmesh.MEDBOOL___setitem__(self, *args)
def pop(self):
return _medmesh.MEDBOOL_pop(self)
def append(self, x):
return _medmesh.MEDBOOL_append(self, x)
def empty(self):
return _medmesh.MEDBOOL_empty(self)
def size(self):
return _medmesh.MEDBOOL_size(self)
def swap(self, v):
return _medmesh.MEDBOOL_swap(self, v)
def begin(self):
return _medmesh.MEDBOOL_begin(self)
def end(self):
return _medmesh.MEDBOOL_end(self)
def rbegin(self):
return _medmesh.MEDBOOL_rbegin(self)
def rend(self):
return _medmesh.MEDBOOL_rend(self)
def clear(self):
return _medmesh.MEDBOOL_clear(self)
def get_allocator(self):
return _medmesh.MEDBOOL_get_allocator(self)
def pop_back(self):
return _medmesh.MEDBOOL_pop_back(self)
def erase(self, *args):
return _medmesh.MEDBOOL_erase(self, *args)
def __init__(self, *args):
this = _medmesh.new_MEDBOOL(*args)
try:
self.this.append(this)
except __builtin__.Exception:
self.this = this
def push_back(self, x):
return _medmesh.MEDBOOL_push_back(self, x)
def front(self):
return _medmesh.MEDBOOL_front(self)
def back(self):
return _medmesh.MEDBOOL_back(self)
def assign(self, n, x):
return _medmesh.MEDBOOL_assign(self, n, x)
def resize(self, *args):
return _medmesh.MEDBOOL_resize(self, *args)
def insert(self, *args):
return _medmesh.MEDBOOL_insert(self, *args)
def reserve(self, n):
return _medmesh.MEDBOOL_reserve(self, n)
def capacity(self):
return _medmesh.MEDBOOL_capacity(self)
__swig_destroy__ = _medmesh.delete_MEDBOOL
__del__ = lambda self: None
MEDBOOL_swigregister = _medmesh.MEDBOOL_swigregister
MEDBOOL_swigregister(MEDBOOL)
cvar = _medmesh.cvar
MED_GET_ENTITY_TYPENAME = cvar.MED_GET_ENTITY_TYPENAME
MED_GET_CELL_GEOMETRY_TYPENAME = cvar.MED_GET_CELL_GEOMETRY_TYPENAME
MED_GET_FACE_GEOMETRY_TYPENAME = cvar.MED_GET_FACE_GEOMETRY_TYPENAME
MEDBOOL.__str__= lambda self: str([x for x in self])
MEDBOOL.__repr__= lambda self: "MEDBOOL("+str([x for x in self])+")"
class MEDFLOAT(_object):
__swig_setmethods__ = {}
__setattr__ = lambda self, name, value: _swig_setattr(self, MEDFLOAT, name, value)
__swig_getmethods__ = {}
__getattr__ = lambda self, name: _swig_getattr(self, MEDFLOAT, name)
__repr__ = _swig_repr
def iterator(self):
return _medmesh.MEDFLOAT_iterator(self)
def __iter__(self):
return self.iterator()
def __nonzero__(self):
return _medmesh.MEDFLOAT___nonzero__(self)
def __bool__(self):
return _medmesh.MEDFLOAT___bool__(self)
def __len__(self):
return _medmesh.MEDFLOAT___len__(self)
def __getslice__(self, i, j):
return _medmesh.MEDFLOAT___getslice__(self, i, j)
def __setslice__(self, *args):
return _medmesh.MEDFLOAT___setslice__(self, *args)
def __delslice__(self, i, j):
return _medmesh.MEDFLOAT___delslice__(self, i, j)
def __delitem__(self, *args):
return _medmesh.MEDFLOAT___delitem__(self, *args)
def __getitem__(self, *args):
return _medmesh.MEDFLOAT___getitem__(self, *args)
def __setitem__(self, *args):
return _medmesh.MEDFLOAT___setitem__(self, *args)
def pop(self):
return _medmesh.MEDFLOAT_pop(self)
def append(self, x):
return _medmesh.MEDFLOAT_append(self, x)
def empty(self):
return _medmesh.MEDFLOAT_empty(self)
def size(self):
return _medmesh.MEDFLOAT_size(self)
def swap(self, v):
return _medmesh.MEDFLOAT_swap(self, v)
def begin(self):
return _medmesh.MEDFLOAT_begin(self)
def end(self):
return _medmesh.MEDFLOAT_end(self)
def rbegin(self):
return _medmesh.MEDFLOAT_rbegin(self)
def rend(self):
return _medmesh.MEDFLOAT_rend(self)
def clear(self):
return _medmesh.MEDFLOAT_clear(self)
def get_allocator(self):
return _medmesh.MEDFLOAT_get_allocator(self)
def pop_back(self):
return _medmesh.MEDFLOAT_pop_back(self)
def erase(self, *args):
return _medmesh.MEDFLOAT_erase(self, *args)
def __init__(self, *args):
this = _medmesh.new_MEDFLOAT(*args)
try:
self.this.append(this)
except __builtin__.Exception:
self.this = this
def push_back(self, x):
return _medmesh.MEDFLOAT_push_back(self, x)
def front(self):
return _medmesh.MEDFLOAT_front(self)
def back(self):
return _medmesh.MEDFLOAT_back(self)
def assign(self, n, x):
return _medmesh.MEDFLOAT_assign(self, n, x)
def resize(self, *args):
return _medmesh.MEDFLOAT_resize(self, *args)
def insert(self, *args):
return _medmesh.MEDFLOAT_insert(self, *args)
def reserve(self, n):
return _medmesh.MEDFLOAT_reserve(self, n)
def capacity(self):
return _medmesh.MEDFLOAT_capacity(self)
def __iadd__(self, value):
return _medmesh.MEDFLOAT___iadd__(self, value)
def __add__(self, value):
return _medmesh.MEDFLOAT___add__(self, value)
def __isub__(self, value):
return _medmesh.MEDFLOAT___isub__(self, value)
def __sub__(self, value):
return _medmesh.MEDFLOAT___sub__(self, value)
def __imul__(self, value):
return _medmesh.MEDFLOAT___imul__(self, value)
def __mul__(self, value):
return _medmesh.MEDFLOAT___mul__(self, value)
def __itruediv__(self, *args):
return _medmesh.MEDFLOAT___itruediv__(self, *args)
__idiv__ = __itruediv__
def __truediv__(self, *args):
return _medmesh.MEDFLOAT___truediv__(self, *args)
__div__ = __truediv__
def __le__(self, value):
return _medmesh.MEDFLOAT___le__(self, value)
def __lt__(self, value):
return _medmesh.MEDFLOAT___lt__(self, value)
def __gt__(self, value):
return _medmesh.MEDFLOAT___gt__(self, value)
def __ge__(self, value):
return _medmesh.MEDFLOAT___ge__(self, value)
def __eq__(self, value):
return _medmesh.MEDFLOAT___eq__(self, value)
def __ne__(self, value):
return _medmesh.MEDFLOAT___ne__(self, value)
__swig_destroy__ = _medmesh.delete_MEDFLOAT
__del__ = lambda self: None
MEDFLOAT_swigregister = _medmesh.MEDFLOAT_swigregister
MEDFLOAT_swigregister(MEDFLOAT)
MEDFLOAT.__str__= lambda self: str([x for x in self])
MEDFLOAT.__repr__= lambda self:"MEDFLOAT" +"("+str([x for x in self])+")"
MEDFLOAT64=MEDFLOAT
MEDDOUBLE=MEDFLOAT
class MEDFLOAT32(_object):
__swig_setmethods__ = {}
__setattr__ = lambda self, name, value: _swig_setattr(self, MEDFLOAT32, name, value)
__swig_getmethods__ = {}
__getattr__ = lambda self, name: _swig_getattr(self, MEDFLOAT32, name)
__repr__ = _swig_repr
def iterator(self):
return _medmesh.MEDFLOAT32_iterator(self)
def __iter__(self):
return self.iterator()
def __nonzero__(self):
return _medmesh.MEDFLOAT32___nonzero__(self)
def __bool__(self):
return _medmesh.MEDFLOAT32___bool__(self)
def __len__(self):
return _medmesh.MEDFLOAT32___len__(self)
def __getslice__(self, i, j):
return _medmesh.MEDFLOAT32___getslice__(self, i, j)
def __setslice__(self, *args):
return _medmesh.MEDFLOAT32___setslice__(self, *args)
def __delslice__(self, i, j):
return _medmesh.MEDFLOAT32___delslice__(self, i, j)
def __delitem__(self, *args):
return _medmesh.MEDFLOAT32___delitem__(self, *args)
def __getitem__(self, *args):
return _medmesh.MEDFLOAT32___getitem__(self, *args)
def __setitem__(self, *args):
return _medmesh.MEDFLOAT32___setitem__(self, *args)
def pop(self):
return _medmesh.MEDFLOAT32_pop(self)
def append(self, x):
return _medmesh.MEDFLOAT32_append(self, x)
def empty(self):
return _medmesh.MEDFLOAT32_empty(self)
def size(self):
return _medmesh.MEDFLOAT32_size(self)
def swap(self, v):
return _medmesh.MEDFLOAT32_swap(self, v)
def begin(self):
return _medmesh.MEDFLOAT32_begin(self)
def end(self):
return _medmesh.MEDFLOAT32_end(self)
def rbegin(self):
return _medmesh.MEDFLOAT32_rbegin(self)
def rend(self):
return _medmesh.MEDFLOAT32_rend(self)
def clear(self):
return _medmesh.MEDFLOAT32_clear(self)
def get_allocator(self):
return _medmesh.MEDFLOAT32_get_allocator(self)
def pop_back(self):
return _medmesh.MEDFLOAT32_pop_back(self)
def erase(self, *args):
return _medmesh.MEDFLOAT32_erase(self, *args)
def __init__(self, *args):
this = _medmesh.new_MEDFLOAT32(*args)
try:
self.this.append(this)
except __builtin__.Exception:
self.this = this
def push_back(self, x):
return _medmesh.MEDFLOAT32_push_back(self, x)
def front(self):
return _medmesh.MEDFLOAT32_front(self)
def back(self):
return _medmesh.MEDFLOAT32_back(self)
def assign(self, n, x):
return _medmesh.MEDFLOAT32_assign(self, n, x)
def resize(self, *args):
return _medmesh.MEDFLOAT32_resize(self, *args)
def insert(self, *args):
return _medmesh.MEDFLOAT32_insert(self, *args)
def reserve(self, n):
return _medmesh.MEDFLOAT32_reserve(self, n)
def capacity(self):
return _medmesh.MEDFLOAT32_capacity(self)
def __iadd__(self, value):
return _medmesh.MEDFLOAT32___iadd__(self, value)
def __add__(self, value):
return _medmesh.MEDFLOAT32___add__(self, value)
def __isub__(self, value):
return _medmesh.MEDFLOAT32___isub__(self, value)
def __sub__(self, value):
return _medmesh.MEDFLOAT32___sub__(self, value)
def __imul__(self, value):
return _medmesh.MEDFLOAT32___imul__(self, value)
def __mul__(self, value):
return _medmesh.MEDFLOAT32___mul__(self, value)
def __itruediv__(self, *args):
return _medmesh.MEDFLOAT32___itruediv__(self, *args)
__idiv__ = __itruediv__
def __truediv__(self, *args):
return _medmesh.MEDFLOAT32___truediv__(self, *args)
__div__ = __truediv__
def __le__(self, value):
return _medmesh.MEDFLOAT32___le__(self, value)
def __lt__(self, value):
return _medmesh.MEDFLOAT32___lt__(self, value)
def __gt__(self, value):
return _medmesh.MEDFLOAT32___gt__(self, value)
def __ge__(self, value):
return _medmesh.MEDFLOAT32___ge__(self, value)
def __eq__(self, value):
return _medmesh.MEDFLOAT32___eq__(self, value)
def __ne__(self, value):
return _medmesh.MEDFLOAT32___ne__(self, value)
__swig_destroy__ = _medmesh.delete_MEDFLOAT32
__del__ = lambda self: None
MEDFLOAT32_swigregister = _medmesh.MEDFLOAT32_swigregister
MEDFLOAT32_swigregister(MEDFLOAT32)
MEDFLOAT32.__str__= lambda self: str([x for x in self])
MEDFLOAT32.__repr__= lambda self:"MEDFLOAT32" +"("+str([x for x in self])+")"
class MEDINT(_object):
__swig_setmethods__ = {}
__setattr__ = lambda self, name, value: _swig_setattr(self, MEDINT, name, value)
__swig_getmethods__ = {}
__getattr__ = lambda self, name: _swig_getattr(self, MEDINT, name)
__repr__ = _swig_repr
def iterator(self):
return _medmesh.MEDINT_iterator(self)
def __iter__(self):
return self.iterator()
def __nonzero__(self):
return _medmesh.MEDINT___nonzero__(self)
def __bool__(self):
return _medmesh.MEDINT___bool__(self)
def __len__(self):
return _medmesh.MEDINT___len__(self)
def __getslice__(self, i, j):
return _medmesh.MEDINT___getslice__(self, i, j)
def __setslice__(self, *args):
return _medmesh.MEDINT___setslice__(self, *args)
def __delslice__(self, i, j):
return _medmesh.MEDINT___delslice__(self, i, j)
def __delitem__(self, *args):
return _medmesh.MEDINT___delitem__(self, *args)
def __getitem__(self, *args):
return _medmesh.MEDINT___getitem__(self, *args)
def __setitem__(self, *args):
return _medmesh.MEDINT___setitem__(self, *args)
def pop(self):
return _medmesh.MEDINT_pop(self)
def append(self, x):
return _medmesh.MEDINT_append(self, x)
def empty(self):
return _medmesh.MEDINT_empty(self)
def size(self):
return _medmesh.MEDINT_size(self)
def swap(self, v):
return _medmesh.MEDINT_swap(self, v)
def begin(self):
return _medmesh.MEDINT_begin(self)
def end(self):
return _medmesh.MEDINT_end(self)
def rbegin(self):
return _medmesh.MEDINT_rbegin(self)
def rend(self):
return _medmesh.MEDINT_rend(self)
def clear(self):
return _medmesh.MEDINT_clear(self)
def get_allocator(self):
return _medmesh.MEDINT_get_allocator(self)
def pop_back(self):
return _medmesh.MEDINT_pop_back(self)
def erase(self, *args):
return _medmesh.MEDINT_erase(self, *args)
def __init__(self, *args):
this = _medmesh.new_MEDINT(*args)
try:
self.this.append(this)
except __builtin__.Exception:
self.this = this
def push_back(self, x):
return _medmesh.MEDINT_push_back(self, x)
def front(self):
return _medmesh.MEDINT_front(self)
def back(self):
return _medmesh.MEDINT_back(self)
def assign(self, n, x):
return _medmesh.MEDINT_assign(self, n, x)
def resize(self, *args):
return _medmesh.MEDINT_resize(self, *args)
def insert(self, *args):
return _medmesh.MEDINT_insert(self, *args)
def reserve(self, n):
return _medmesh.MEDINT_reserve(self, n)
def capacity(self):
return _medmesh.MEDINT_capacity(self)
def __iadd__(self, value):
return _medmesh.MEDINT___iadd__(self, value)
def __add__(self, value):
return _medmesh.MEDINT___add__(self, value)
def __isub__(self, value):
return _medmesh.MEDINT___isub__(self, value)
def __sub__(self, value):
return _medmesh.MEDINT___sub__(self, value)
def __imul__(self, value):
return _medmesh.MEDINT___imul__(self, value)
def __mul__(self, value):
return _medmesh.MEDINT___mul__(self, value)
def __itruediv__(self, *args):
return _medmesh.MEDINT___itruediv__(self, *args)
__idiv__ = __itruediv__
def __truediv__(self, *args):
return _medmesh.MEDINT___truediv__(self, *args)
__div__ = __truediv__
def __le__(self, value):
return _medmesh.MEDINT___le__(self, value)
def __lt__(self, value):
return _medmesh.MEDINT___lt__(self, value)
def __gt__(self, value):
return _medmesh.MEDINT___gt__(self, value)
def __ge__(self, value):
return _medmesh.MEDINT___ge__(self, value)
def __eq__(self, value):
return _medmesh.MEDINT___eq__(self, value)
def __ne__(self, value):
return _medmesh.MEDINT___ne__(self, value)
__swig_destroy__ = _medmesh.delete_MEDINT
__del__ = lambda self: None
MEDINT_swigregister = _medmesh.MEDINT_swigregister
MEDINT_swigregister(MEDINT)
MEDINT.__str__= lambda self: str([x for x in self])
MEDINT.__repr__= lambda self:"MEDINT" +"("+str([x for x in self])+")"
MEDINT64=MEDINT
class MEDINT32(_object):
__swig_setmethods__ = {}
__setattr__ = lambda self, name, value: _swig_setattr(self, MEDINT32, name, value)
__swig_getmethods__ = {}
__getattr__ = lambda self, name: _swig_getattr(self, MEDINT32, name)
__repr__ = _swig_repr
def iterator(self):
return _medmesh.MEDINT32_iterator(self)
def __iter__(self):
return self.iterator()
def __nonzero__(self):
return _medmesh.MEDINT32___nonzero__(self)
def __bool__(self):
return _medmesh.MEDINT32___bool__(self)
def __len__(self):
return _medmesh.MEDINT32___len__(self)
def __getslice__(self, i, j):
return _medmesh.MEDINT32___getslice__(self, i, j)
def __setslice__(self, *args):
return _medmesh.MEDINT32___setslice__(self, *args)
def __delslice__(self, i, j):
return _medmesh.MEDINT32___delslice__(self, i, j)
def __delitem__(self, *args):
return _medmesh.MEDINT32___delitem__(self, *args)
def __getitem__(self, *args):
return _medmesh.MEDINT32___getitem__(self, *args)
def __setitem__(self, *args):
return _medmesh.MEDINT32___setitem__(self, *args)
def pop(self):
return _medmesh.MEDINT32_pop(self)
def append(self, x):
return _medmesh.MEDINT32_append(self, x)
def empty(self):
return _medmesh.MEDINT32_empty(self)
def size(self):
return _medmesh.MEDINT32_size(self)
def swap(self, v):
return _medmesh.MEDINT32_swap(self, v)
def begin(self):
return _medmesh.MEDINT32_begin(self)
def end(self):
return _medmesh.MEDINT32_end(self)
def rbegin(self):
return _medmesh.MEDINT32_rbegin(self)
def rend(self):
return _medmesh.MEDINT32_rend(self)
def clear(self):
return _medmesh.MEDINT32_clear(self)
def get_allocator(self):
return _medmesh.MEDINT32_get_allocator(self)
def pop_back(self):
return _medmesh.MEDINT32_pop_back(self)
def erase(self, *args):
return _medmesh.MEDINT32_erase(self, *args)
def __init__(self, *args):
this = _medmesh.new_MEDINT32(*args)
try:
self.this.append(this)
except __builtin__.Exception:
self.this = this
def push_back(self, x):
return _medmesh.MEDINT32_push_back(self, x)
def front(self):
return _medmesh.MEDINT32_front(self)
def back(self):
return _medmesh.MEDINT32_back(self)
def assign(self, n, x):
return _medmesh.MEDINT32_assign(self, n, x)
def resize(self, *args):
return _medmesh.MEDINT32_resize(self, *args)
def insert(self, *args):
return _medmesh.MEDINT32_insert(self, *args)
def reserve(self, n):
return _medmesh.MEDINT32_reserve(self, n)
def capacity(self):
return _medmesh.MEDINT32_capacity(self)
def __iadd__(self, value):
return _medmesh.MEDINT32___iadd__(self, value)
def __add__(self, value):
return _medmesh.MEDINT32___add__(self, value)
def __isub__(self, value):
return _medmesh.MEDINT32___isub__(self, value)
def __sub__(self, value):
return _medmesh.MEDINT32___sub__(self, value)
def __imul__(self, value):
return _medmesh.MEDINT32___imul__(self, value)
def __mul__(self, value):
return _medmesh.MEDINT32___mul__(self, value)
def __itruediv__(self, *args):
return _medmesh.MEDINT32___itruediv__(self, *args)
__idiv__ = __itruediv__
def __truediv__(self, *args):
return _medmesh.MEDINT32___truediv__(self, *args)
__div__ = __truediv__
def __le__(self, value):
return _medmesh.MEDINT32___le__(self, value)
def __lt__(self, value):
return _medmesh.MEDINT32___lt__(self, value)
def __gt__(self, value):
return _medmesh.MEDINT32___gt__(self, value)
def __ge__(self, value):
return _medmesh.MEDINT32___ge__(self, value)
def __eq__(self, value):
return _medmesh.MEDINT32___eq__(self, value)
def __ne__(self, value):
return _medmesh.MEDINT32___ne__(self, value)
__swig_destroy__ = _medmesh.delete_MEDINT32
__del__ = lambda self: None
MEDINT32_swigregister = _medmesh.MEDINT32_swigregister
MEDINT32_swigregister(MEDINT32)
MEDINT32.__str__= lambda self: str([x for x in self])
MEDINT32.__repr__= lambda self:"MEDINT32" +"("+str([x for x in self])+")"
class MEDCHAR(_object):
__swig_setmethods__ = {}
__setattr__ = lambda self, name, value: _swig_setattr(self, MEDCHAR, name, value)
__swig_getmethods__ = {}
__getattr__ = lambda self, name: _swig_getattr(self, MEDCHAR, name)
__repr__ = _swig_repr
def iterator(self):
return _medmesh.MEDCHAR_iterator(self)
def __iter__(self):
return self.iterator()
def __nonzero__(self):
return _medmesh.MEDCHAR___nonzero__(self)
def __bool__(self):
return _medmesh.MEDCHAR___bool__(self)
def __len__(self):
return _medmesh.MEDCHAR___len__(self)
def __getslice__(self, i, j):
return _medmesh.MEDCHAR___getslice__(self, i, j)
def __setslice__(self, *args):
return _medmesh.MEDCHAR___setslice__(self, *args)
def __delslice__(self, i, j):
return _medmesh.MEDCHAR___delslice__(self, i, j)
def __delitem__(self, *args):
return _medmesh.MEDCHAR___delitem__(self, *args)
def __getitem__(self, *args):
return _medmesh.MEDCHAR___getitem__(self, *args)
def __setitem__(self, *args):
return _medmesh.MEDCHAR___setitem__(self, *args)
def pop(self):
return _medmesh.MEDCHAR_pop(self)
def append(self, x):
return _medmesh.MEDCHAR_append(self, x)
def empty(self):
return _medmesh.MEDCHAR_empty(self)
def size(self):
return _medmesh.MEDCHAR_size(self)
def swap(self, v):
return _medmesh.MEDCHAR_swap(self, v)
def begin(self):
return _medmesh.MEDCHAR_begin(self)
def end(self):
return _medmesh.MEDCHAR_end(self)
def rbegin(self):
return _medmesh.MEDCHAR_rbegin(self)
def rend(self):
return _medmesh.MEDCHAR_rend(self)
def clear(self):
return _medmesh.MEDCHAR_clear(self)
def get_allocator(self):
return _medmesh.MEDCHAR_get_allocator(self)
def pop_back(self):
return _medmesh.MEDCHAR_pop_back(self)
def erase(self, *args):
return _medmesh.MEDCHAR_erase(self, *args)
def __init__(self, *args):
this = _medmesh.new_MEDCHAR(*args)
try:
self.this.append(this)
except __builtin__.Exception:
self.this = this
def push_back(self, x):
return _medmesh.MEDCHAR_push_back(self, x)
def front(self):
return _medmesh.MEDCHAR_front(self)
def back(self):
return _medmesh.MEDCHAR_back(self)
def assign(self, n, x):
return _medmesh.MEDCHAR_assign(self, n, x)
def resize(self, *args):
return _medmesh.MEDCHAR_resize(self, *args)
def insert(self, *args):
return _medmesh.MEDCHAR_insert(self, *args)
def reserve(self, n):
return _medmesh.MEDCHAR_reserve(self, n)
def capacity(self):
return _medmesh.MEDCHAR_capacity(self)
def __iadd__(self, value):
return _medmesh.MEDCHAR___iadd__(self, value)
def __add__(self, value):
return _medmesh.MEDCHAR___add__(self, value)
def __isub__(self, value):
return _medmesh.MEDCHAR___isub__(self, value)
def __sub__(self, value):
return _medmesh.MEDCHAR___sub__(self, value)
def __imul__(self, value):
return _medmesh.MEDCHAR___imul__(self, value)
def __mul__(self, value):
return _medmesh.MEDCHAR___mul__(self, value)
def __itruediv__(self, *args):
return _medmesh.MEDCHAR___itruediv__(self, *args)
__idiv__ = __itruediv__
def __truediv__(self, *args):
return _medmesh.MEDCHAR___truediv__(self, *args)
__div__ = __truediv__
def __le__(self, value):
return _medmesh.MEDCHAR___le__(self, value)
def __lt__(self, value):
return _medmesh.MEDCHAR___lt__(self, value)
def __gt__(self, value):
return _medmesh.MEDCHAR___gt__(self, value)
def __ge__(self, value):
return _medmesh.MEDCHAR___ge__(self, value)
def __eq__(self, value):
return _medmesh.MEDCHAR___eq__(self, value)
def __ne__(self, value):
return _medmesh.MEDCHAR___ne__(self, value)
__swig_destroy__ = _medmesh.delete_MEDCHAR
__del__ = lambda self: None
MEDCHAR_swigregister = _medmesh.MEDCHAR_swigregister
MEDCHAR_swigregister(MEDCHAR)
MEDCHAR.__str__= lambda self: str([x for x in self])
MEDCHAR.__repr__= lambda self:"MEDCHAR" +"("+str([x for x in self])+")"
MEDCHAR.__str__= lambda self: str([x for x in self])
MEDCHAR.__repr__= lambda self:"MEDCHAR" +"("+str([x for x in self])+")"
MEDCHAR.__str__= lambda self: str([x for x in self])
MEDCHAR.__repr__= lambda self:"MEDCHAR" +"("+str([x for x in self])+")"
def MEDmeshCr(fid, meshname, spacedim, meshdim, meshtype, description, dtunit, sortingtype, axistype, axisname, axisunit):
"""
MEDmeshCr(fid, meshname, spacedim, meshdim, meshtype, description, dtunit, sortingtype, axistype, axisname, axisunit) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
spacedim: med_int const
meshdim: med_int const
meshtype: enum med_mesh_type const
description: char const *const
dtunit: char const *const
sortingtype: enum med_sorting_type const
axistype: enum med_axis_type const
axisname: char const *const
axisunit: char const *const
Essai d Ajout a La Documentation Automatique
"""
return _medmesh.MEDmeshCr(fid, meshname, spacedim, meshdim, meshtype, description, dtunit, sortingtype, axistype, axisname, axisunit)
def MEDmeshInfoByName(fid, meshname):
"""
MEDmeshInfoByName(fid, meshname) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
"""
return _medmesh.MEDmeshInfoByName(fid, meshname)
def MEDmeshInfo(fid, meshit):
"""
MEDmeshInfo(fid, meshit) -> med_err
Parameters
----------
fid: med_idt const
meshit: int const
"""
return _medmesh.MEDmeshInfo(fid, meshit)
def MEDnMesh(fid):
"""
MEDnMesh(fid) -> med_int
Parameters
----------
fid: med_idt const
"""
return _medmesh.MEDnMesh(fid)
def MEDmeshnAxis(fid, meshit):
"""
MEDmeshnAxis(fid, meshit) -> med_int
Parameters
----------
fid: med_idt const
meshit: int const
"""
return _medmesh.MEDmeshnAxis(fid, meshit)
def MEDmeshnAxisByName(fid, meshname):
"""
MEDmeshnAxisByName(fid, meshname) -> med_int
Parameters
----------
fid: med_idt const
meshname: char const *const
"""
return _medmesh.MEDmeshnAxisByName(fid, meshname)
def MEDmeshGridTypeWr(fid, meshname, gridtype):
"""
MEDmeshGridTypeWr(fid, meshname, gridtype) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
gridtype: enum med_grid_type const
"""
return _medmesh.MEDmeshGridTypeWr(fid, meshname, gridtype)
def MEDmeshGridTypeRd(fid, meshname):
"""
MEDmeshGridTypeRd(fid, meshname) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
"""
return _medmesh.MEDmeshGridTypeRd(fid, meshname)
def MEDmeshGridIndexCoordinateWr(fid, meshname, numdt, numit, dt, axis, indexsize, gridindex):
"""
MEDmeshGridIndexCoordinateWr(fid, meshname, numdt, numit, dt, axis, indexsize, gridindex) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
dt: med_float const
axis: med_int const
indexsize: med_int const
gridindex: med_float const *const
"""
return _medmesh.MEDmeshGridIndexCoordinateWr(fid, meshname, numdt, numit, dt, axis, indexsize, gridindex)
def MEDmeshGridIndexCoordinateRd(fid, meshname, numdt, numit, axis, gridindex):
"""
MEDmeshGridIndexCoordinateRd(fid, meshname, numdt, numit, axis, gridindex) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
axis: med_int const
gridindex: med_float *const
"""
return _medmesh.MEDmeshGridIndexCoordinateRd(fid, meshname, numdt, numit, axis, gridindex)
def MEDmeshGridStructWr(fid, meshname, numdt, numit, dt, gridstruct):
"""
MEDmeshGridStructWr(fid, meshname, numdt, numit, dt, gridstruct) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
dt: med_float const
gridstruct: med_int const *const
"""
return _medmesh.MEDmeshGridStructWr(fid, meshname, numdt, numit, dt, gridstruct)
def MEDmeshGridStructRd(fid, meshname, numdt, numit, gridstruct):
"""
MEDmeshGridStructRd(fid, meshname, numdt, numit, gridstruct) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
gridstruct: med_int *const
"""
return _medmesh.MEDmeshGridStructRd(fid, meshname, numdt, numit, gridstruct)
def MEDmeshUniversalNameWr(fid, meshname):
"""
MEDmeshUniversalNameWr(fid, meshname) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
"""
return _medmesh.MEDmeshUniversalNameWr(fid, meshname)
def MEDmeshUniversalNameRd(fid, meshname):
"""
MEDmeshUniversalNameRd(fid, meshname) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
"""
return _medmesh.MEDmeshUniversalNameRd(fid, meshname)
def MEDmeshComputationStepCr(fid, meshname, numdt1, numit1, numdt2, numit2, dt2):
"""
MEDmeshComputationStepCr(fid, meshname, numdt1, numit1, numdt2, numit2, dt2) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt1: med_int const
numit1: med_int const
numdt2: med_int const
numit2: med_int const
dt2: med_float const
"""
return _medmesh.MEDmeshComputationStepCr(fid, meshname, numdt1, numit1, numdt2, numit2, dt2)
def MEDmeshAttributeRd(fid, meshname):
"""
MEDmeshAttributeRd(fid, meshname) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
"""
return _medmesh.MEDmeshAttributeRd(fid, meshname)
def MEDmeshAttributeWr(fid, meshname, isolatednodes, verticesnodes, cellmaxnodes):
"""
MEDmeshAttributeWr(fid, meshname, isolatednodes, verticesnodes, cellmaxnodes) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
isolatednodes: med_int const
verticesnodes: med_int const
cellmaxnodes: med_int const
"""
return _medmesh.MEDmeshAttributeWr(fid, meshname, isolatednodes, verticesnodes, cellmaxnodes)
def MEDmeshComputationStepDtRd(fid, meshname, numdt, umit):
"""
MEDmeshComputationStepDtRd(fid, meshname, numdt, umit) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
umit: med_int const
"""
return _medmesh.MEDmeshComputationStepDtRd(fid, meshname, numdt, umit)
def MEDmeshComputationStepInfo(fid, meshname, csit):
"""
MEDmeshComputationStepInfo(fid, meshname, csit) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
csit: int const
"""
return _medmesh.MEDmeshComputationStepInfo(fid, meshname, csit)
def MEDmeshSortingTypeRd(fid, meshname):
"""
MEDmeshSortingTypeRd(fid, meshname) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
"""
return _medmesh.MEDmeshSortingTypeRd(fid, meshname)
def MEDmeshNodeCoordinateAdvancedWr(fid, meshname, numdt, numit, dt, filter, value):
"""
MEDmeshNodeCoordinateAdvancedWr(fid, meshname, numdt, numit, dt, filter, value) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
dt: med_float const
filter: med_filter const *const
value: med_float const *const
"""
return _medmesh.MEDmeshNodeCoordinateAdvancedWr(fid, meshname, numdt, numit, dt, filter, value)
def MEDmeshNodeCoordinateWithProfileWr(fid, meshname, numdt, numit, dt, storagemode, profilename, switchmode, dimselect, nentity, coordinates):
"""
MEDmeshNodeCoordinateWithProfileWr(fid, meshname, numdt, numit, dt, storagemode, profilename, switchmode, dimselect, nentity, coordinates) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
dt: med_float const
storagemode: enum med_storage_mode const
profilename: char const *const
switchmode: enum med_switch_mode const
dimselect: med_int const
nentity: med_int const
coordinates: med_float const *const
"""
return _medmesh.MEDmeshNodeCoordinateWithProfileWr(fid, meshname, numdt, numit, dt, storagemode, profilename, switchmode, dimselect, nentity, coordinates)
def MEDmeshNodeCoordinateWr(fid, meshname, numdt, numit, dt, switchmode, nentity, coordinates):
"""
MEDmeshNodeCoordinateWr(fid, meshname, numdt, numit, dt, switchmode, nentity, coordinates) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
dt: med_float const
switchmode: enum med_switch_mode const
nentity: med_int const
coordinates: med_float const *const
"""
return _medmesh.MEDmeshNodeCoordinateWr(fid, meshname, numdt, numit, dt, switchmode, nentity, coordinates)
def MEDmeshNodeCoordinateTrsfWr(fid, meshname, numdt, numit, dt, coordinatetrsf):
"""
MEDmeshNodeCoordinateTrsfWr(fid, meshname, numdt, numit, dt, coordinatetrsf) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
dt: med_float const
coordinatetrsf: med_float const *const
"""
return _medmesh.MEDmeshNodeCoordinateTrsfWr(fid, meshname, numdt, numit, dt, coordinatetrsf)
def MEDmeshNodeCoordinateTrsfRd(fid, meshname, numdt, numit, coordinatetrsf):
"""
MEDmeshNodeCoordinateTrsfRd(fid, meshname, numdt, numit, coordinatetrsf) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
coordinatetrsf: med_float const *const
"""
return _medmesh.MEDmeshNodeCoordinateTrsfRd(fid, meshname, numdt, numit, coordinatetrsf)
def MEDmeshElementConnectivityWr(fid, meshname, numdt, numit, dt, entitype, geotype, cmode, switchmode, nentity, connectivity):
"""
MEDmeshElementConnectivityWr(fid, meshname, numdt, numit, dt, entitype, geotype, cmode, switchmode, nentity, connectivity) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
dt: med_float const
entitype: enum med_entity_type const
geotype: med_geometry_type const
cmode: enum med_connectivity_mode const
switchmode: enum med_switch_mode const
nentity: med_int const
connectivity: med_int const *const
"""
return _medmesh.MEDmeshElementConnectivityWr(fid, meshname, numdt, numit, dt, entitype, geotype, cmode, switchmode, nentity, connectivity)
def MEDmeshElementConnectivityAdvancedWr(fid, meshname, numdt, numit, dt, entitype, geotype, cmode, filter, connectivity):
"""
MEDmeshElementConnectivityAdvancedWr(fid, meshname, numdt, numit, dt, entitype, geotype, cmode, filter, connectivity) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
dt: med_float const
entitype: enum med_entity_type const
geotype: med_geometry_type const
cmode: enum med_connectivity_mode const
filter: med_filter const *const
connectivity: med_int const *const
"""
return _medmesh.MEDmeshElementConnectivityAdvancedWr(fid, meshname, numdt, numit, dt, entitype, geotype, cmode, filter, connectivity)
def MEDmeshElementConnectivityWithProfileWr(fid, meshname, numdt, numit, dt, entitype, geotype, cmode, storagemode, profilename, switchmode, dimselect, nentity, connectivity):
"""
MEDmeshElementConnectivityWithProfileWr(fid, meshname, numdt, numit, dt, entitype, geotype, cmode, storagemode, profilename, switchmode, dimselect, nentity, connectivity) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
dt: med_float const
entitype: enum med_entity_type const
geotype: med_geometry_type const
cmode: enum med_connectivity_mode const
storagemode: enum med_storage_mode const
profilename: char const *const
switchmode: enum med_switch_mode const
dimselect: med_int const
nentity: med_int const
connectivity: med_int const *const
"""
return _medmesh.MEDmeshElementConnectivityWithProfileWr(fid, meshname, numdt, numit, dt, entitype, geotype, cmode, storagemode, profilename, switchmode, dimselect, nentity, connectivity)
def MEDmeshNodeCoordinateAdvancedRd(fid, meshname, numdt, numit, filter, value):
"""
MEDmeshNodeCoordinateAdvancedRd(fid, meshname, numdt, numit, filter, value) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
filter: med_filter const *const
value: med_float *const
"""
return _medmesh.MEDmeshNodeCoordinateAdvancedRd(fid, meshname, numdt, numit, filter, value)
def MEDmeshNodeCoordinateWithProfileRd(fid, meshname, numdt, numit, storagemode, profilename, switchmode, dimselect, coordinates):
"""
MEDmeshNodeCoordinateWithProfileRd(fid, meshname, numdt, numit, storagemode, profilename, switchmode, dimselect, coordinates) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
storagemode: enum med_storage_mode const
profilename: char const *const
switchmode: enum med_switch_mode const
dimselect: med_int const
coordinates: med_float *const
"""
return _medmesh.MEDmeshNodeCoordinateWithProfileRd(fid, meshname, numdt, numit, storagemode, profilename, switchmode, dimselect, coordinates)
def MEDmeshNodeCoordinateRd(fid, meshname, numdt, numit, switchmode, coordinates):
"""
MEDmeshNodeCoordinateRd(fid, meshname, numdt, numit, switchmode, coordinates) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
switchmode: enum med_switch_mode const
coordinates: med_float *const
"""
return _medmesh.MEDmeshNodeCoordinateRd(fid, meshname, numdt, numit, switchmode, coordinates)
def MEDmeshElementConnectivityRd(fid, meshname, numdt, numit, entitype, geotype, cmode, switchmode, connectivity):
"""
MEDmeshElementConnectivityRd(fid, meshname, numdt, numit, entitype, geotype, cmode, switchmode, connectivity) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
entitype: enum med_entity_type const
geotype: med_geometry_type const
cmode: enum med_connectivity_mode const
switchmode: enum med_switch_mode const
connectivity: med_int *const
"""
return _medmesh.MEDmeshElementConnectivityRd(fid, meshname, numdt, numit, entitype, geotype, cmode, switchmode, connectivity)
def MEDmeshElementConnectivityAdvancedRd(fid, meshname, numdt, numit, entitype, geotype, cmode, filter, connectivity):
"""
MEDmeshElementConnectivityAdvancedRd(fid, meshname, numdt, numit, entitype, geotype, cmode, filter, connectivity) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
entitype: enum med_entity_type const
geotype: med_geometry_type const
cmode: enum med_connectivity_mode const
filter: med_filter const *const
connectivity: med_int *const
"""
return _medmesh.MEDmeshElementConnectivityAdvancedRd(fid, meshname, numdt, numit, entitype, geotype, cmode, filter, connectivity)
def MEDmeshElementConnectivityWithProfileRd(fid, meshname, numdt, numit, entitype, geotype, cmode, storagemode, profilename, switchmode, dimselect, nentity, connectivity):
"""
MEDmeshElementConnectivityWithProfileRd(fid, meshname, numdt, numit, entitype, geotype, cmode, storagemode, profilename, switchmode, dimselect, nentity, connectivity) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
entitype: enum med_entity_type const
geotype: med_geometry_type const
cmode: enum med_connectivity_mode const
storagemode: enum med_storage_mode const
profilename: char const *const
switchmode: enum med_switch_mode const
dimselect: med_int const
nentity: med_int const
connectivity: med_int *const
"""
return _medmesh.MEDmeshElementConnectivityWithProfileRd(fid, meshname, numdt, numit, entitype, geotype, cmode, storagemode, profilename, switchmode, dimselect, nentity, connectivity)
def MEDmeshnEntity(fid, meshname, numdt, numit, entitype, geotype, datatype, cmode):
"""
MEDmeshnEntity(fid, meshname, numdt, numit, entitype, geotype, datatype, cmode) -> med_int
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
entitype: enum med_entity_type const
geotype: med_geometry_type const
datatype: enum med_data_type const
cmode: enum med_connectivity_mode const
"""
return _medmesh.MEDmeshnEntity(fid, meshname, numdt, numit, entitype, geotype, datatype, cmode)
def MEDmeshnEntityWithProfile(fid, meshname, numdt, numit, entitype, geotype, datatype, cmode, storagemode):
"""
MEDmeshnEntityWithProfile(fid, meshname, numdt, numit, entitype, geotype, datatype, cmode, storagemode) -> med_int
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
entitype: enum med_entity_type const
geotype: med_geometry_type const
datatype: enum med_data_type const
cmode: enum med_connectivity_mode const
storagemode: enum med_storage_mode const
"""
return _medmesh.MEDmeshnEntityWithProfile(fid, meshname, numdt, numit, entitype, geotype, datatype, cmode, storagemode)
def MEDmeshEntityInfo(fid, meshname, numdt, numit, entitype, geotypeit):
"""
MEDmeshEntityInfo(fid, meshname, numdt, numit, entitype, geotypeit) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
entitype: enum med_entity_type const
geotypeit: int const
"""
return _medmesh.MEDmeshEntityInfo(fid, meshname, numdt, numit, entitype, geotypeit)
def MEDmeshEntityNameWr(fid, meshname, numdt, numit, entitype, geotype, nentity, name):
"""
MEDmeshEntityNameWr(fid, meshname, numdt, numit, entitype, geotype, nentity, name) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
entitype: enum med_entity_type const
geotype: med_geometry_type const
nentity: med_int const
name: char const *const
"""
return _medmesh.MEDmeshEntityNameWr(fid, meshname, numdt, numit, entitype, geotype, nentity, name)
def MEDmeshEntityNameRd(fid, meshname, numdt, numit, entitype, geotype, name):
"""
MEDmeshEntityNameRd(fid, meshname, numdt, numit, entitype, geotype, name) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
entitype: enum med_entity_type const
geotype: med_geometry_type const
name: char *const
"""
return _medmesh.MEDmeshEntityNameRd(fid, meshname, numdt, numit, entitype, geotype, name)
def MEDmeshEntityNumberWr(fid, meshname, numdt, numit, entitype, geotype, nentity, number):
"""
MEDmeshEntityNumberWr(fid, meshname, numdt, numit, entitype, geotype, nentity, number) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
entitype: enum med_entity_type const
geotype: med_geometry_type const
nentity: med_int const
number: med_int const *const
"""
return _medmesh.MEDmeshEntityNumberWr(fid, meshname, numdt, numit, entitype, geotype, nentity, number)
def MEDmeshEntityNumberRd(fid, meshname, numdt, numit, entitype, geotype, number):
"""
MEDmeshEntityNumberRd(fid, meshname, numdt, numit, entitype, geotype, number) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
entitype: enum med_entity_type const
geotype: med_geometry_type const
number: med_int *const
"""
return _medmesh.MEDmeshEntityNumberRd(fid, meshname, numdt, numit, entitype, geotype, number)
def MEDmeshEntityFamilyNumberWr(fid, meshname, numdt, numit, entitype, geotype, nentity, number):
"""
MEDmeshEntityFamilyNumberWr(fid, meshname, numdt, numit, entitype, geotype, nentity, number) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
entitype: enum med_entity_type const
geotype: med_geometry_type const
nentity: med_int const
number: med_int const *const
"""
return _medmesh.MEDmeshEntityFamilyNumberWr(fid, meshname, numdt, numit, entitype, geotype, nentity, number)
def MEDmeshEntityFamilyNumberRd(fid, meshname, numdt, numit, entitype, geotype, number):
"""
MEDmeshEntityFamilyNumberRd(fid, meshname, numdt, numit, entitype, geotype, number) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
entitype: enum med_entity_type const
geotype: med_geometry_type const
number: med_int *const
"""
return _medmesh.MEDmeshEntityFamilyNumberRd(fid, meshname, numdt, numit, entitype, geotype, number)
def MEDmeshEntityAttributeAdvancedRd(fid, meshname, datatype, numdt, numit, entitype, geotype, filter, attval):
"""
MEDmeshEntityAttributeAdvancedRd(fid, meshname, datatype, numdt, numit, entitype, geotype, filter, attval) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
datatype: enum med_data_type const
numdt: med_int const
numit: med_int const
entitype: enum med_entity_type const
geotype: med_geometry_type const
filter: med_filter const *const
attval: void *const
"""
return _medmesh.MEDmeshEntityAttributeAdvancedRd(fid, meshname, datatype, numdt, numit, entitype, geotype, filter, attval)
def MEDmeshEntityAttributeAdvancedWr(fid, meshname, datatype, numdt, numit, entitype, geotype, filter, attval):
"""
MEDmeshEntityAttributeAdvancedWr(fid, meshname, datatype, numdt, numit, entitype, geotype, filter, attval) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
datatype: enum med_data_type const
numdt: med_int const
numit: med_int const
entitype: enum med_entity_type const
geotype: med_geometry_type const
filter: med_filter const *const
attval: void const *const
"""
return _medmesh.MEDmeshEntityAttributeAdvancedWr(fid, meshname, datatype, numdt, numit, entitype, geotype, filter, attval)
def MEDmeshPolygonWr(fid, meshname, numdt, numit, dt, entitype, cmode, indexsize, polyindex, connectivity):
"""
MEDmeshPolygonWr(fid, meshname, numdt, numit, dt, entitype, cmode, indexsize, polyindex, connectivity) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
dt: med_float const
entitype: enum med_entity_type const
cmode: enum med_connectivity_mode const
indexsize: med_int const
polyindex: med_int const *const
connectivity: med_int const *const
"""
return _medmesh.MEDmeshPolygonWr(fid, meshname, numdt, numit, dt, entitype, cmode, indexsize, polyindex, connectivity)
def MEDmeshPolygon2Wr(fid, meshname, numdt, numit, dt, entitype, polytype, cmode, indexsize, polyindex, connectivity):
"""
MEDmeshPolygon2Wr(fid, meshname, numdt, numit, dt, entitype, polytype, cmode, indexsize, polyindex, connectivity) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
dt: med_float const
entitype: enum med_entity_type const
polytype: med_geometry_type const
cmode: enum med_connectivity_mode const
indexsize: med_int const
polyindex: med_int const *const
connectivity: med_int const *const
"""
return _medmesh.MEDmeshPolygon2Wr(fid, meshname, numdt, numit, dt, entitype, polytype, cmode, indexsize, polyindex, connectivity)
def MEDmeshPolygonRd(fid, meshname, numdt, numit, entitype, cmode, polyindex, connectivity):
"""
MEDmeshPolygonRd(fid, meshname, numdt, numit, entitype, cmode, polyindex, connectivity) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
entitype: enum med_entity_type const
cmode: enum med_connectivity_mode const
polyindex: med_int *const
connectivity: med_int *const
"""
return _medmesh.MEDmeshPolygonRd(fid, meshname, numdt, numit, entitype, cmode, polyindex, connectivity)
def MEDmeshPolygon2Rd(fid, meshname, numdt, numit, entitype, polytype, cmode, polyindex, connectivity):
"""
MEDmeshPolygon2Rd(fid, meshname, numdt, numit, entitype, polytype, cmode, polyindex, connectivity) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
entitype: enum med_entity_type const
polytype: med_geometry_type const
cmode: enum med_connectivity_mode const
polyindex: med_int *const
connectivity: med_int *const
"""
return _medmesh.MEDmeshPolygon2Rd(fid, meshname, numdt, numit, entitype, polytype, cmode, polyindex, connectivity)
def MEDmeshPolyhedronRd(fid, meshname, numdt, numit, entitype, cmode, faceindex, nodeindex, connectivity):
"""
MEDmeshPolyhedronRd(fid, meshname, numdt, numit, entitype, cmode, faceindex, nodeindex, connectivity) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
entitype: enum med_entity_type const
cmode: enum med_connectivity_mode const
faceindex: med_int *const
nodeindex: med_int *const
connectivity: med_int *const
"""
return _medmesh.MEDmeshPolyhedronRd(fid, meshname, numdt, numit, entitype, cmode, faceindex, nodeindex, connectivity)
def MEDmeshPolyhedronWr(fid, meshname, numdt, numit, dt, entitype, cmode, faceindexsize, faceindex, nodeindexsize, nodeindex, connectivity):
"""
MEDmeshPolyhedronWr(fid, meshname, numdt, numit, dt, entitype, cmode, faceindexsize, faceindex, nodeindexsize, nodeindex, connectivity) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
dt: med_float const
entitype: enum med_entity_type const
cmode: enum med_connectivity_mode const
faceindexsize: med_int const
faceindex: med_int const *const
nodeindexsize: med_int const
nodeindex: med_int const *const
connectivity: med_int const *const
"""
return _medmesh.MEDmeshPolyhedronWr(fid, meshname, numdt, numit, dt, entitype, cmode, faceindexsize, faceindex, nodeindexsize, nodeindex, connectivity)
def MEDmeshGeotypeName(fid, geotype):
"""
MEDmeshGeotypeName(fid, geotype) -> med_err
Parameters
----------
fid: med_idt const
geotype: med_geometry_type const
"""
return _medmesh.MEDmeshGeotypeName(fid, geotype)
def MEDmeshGeotypeParameter(fid, geotype):
"""
MEDmeshGeotypeParameter(fid, geotype) -> med_err
Parameters
----------
fid: med_idt const
geotype: med_geometry_type const
"""
return _medmesh.MEDmeshGeotypeParameter(fid, geotype)
def MEDmeshGlobalNumberWr(fid, meshname, numdt, numit, entitytype, geotype, nentity, number):
"""
MEDmeshGlobalNumberWr(fid, meshname, numdt, numit, entitytype, geotype, nentity, number) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
entitytype: enum med_entity_type const
geotype: med_geometry_type const
nentity: med_int const
number: med_int const *const
"""
return _medmesh.MEDmeshGlobalNumberWr(fid, meshname, numdt, numit, entitytype, geotype, nentity, number)
def MEDmeshGlobalNumberRd(fid, meshname, numdt, numit, entitytype, geotype, number):
"""
MEDmeshGlobalNumberRd(fid, meshname, numdt, numit, entitytype, geotype, number) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
entitytype: enum med_entity_type const
geotype: med_geometry_type const
number: med_int *const
"""
return _medmesh.MEDmeshGlobalNumberRd(fid, meshname, numdt, numit, entitytype, geotype, number)
def MEDmeshNodeWr(fid, meshname, numdt, numit, dt, switchmode, nentity, coordinate, withnodename, nodename, withnodenumber, nodenumber, withfamnumber, famnumber):
"""
MEDmeshNodeWr(fid, meshname, numdt, numit, dt, switchmode, nentity, coordinate, withnodename, nodename, withnodenumber, nodenumber, withfamnumber, famnumber) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
dt: med_float const
switchmode: enum med_switch_mode const
nentity: med_int const
coordinate: med_float const *const
withnodename: enum med_bool const
nodename: char const *const
withnodenumber: enum med_bool const
nodenumber: med_int const *const
withfamnumber: enum med_bool const
famnumber: med_int const *const
"""
return _medmesh.MEDmeshNodeWr(fid, meshname, numdt, numit, dt, switchmode, nentity, coordinate, withnodename, nodename, withnodenumber, nodenumber, withfamnumber, famnumber)
def MEDmeshNodeRd(fid, meshname, numdt, numit, switchmode, coordinate, nodename, nodenumber, famnumber):
"""
MEDmeshNodeRd(fid, meshname, numdt, numit, switchmode, coordinate, nodename, nodenumber, famnumber) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
switchmode: enum med_switch_mode const
coordinate: med_float *const
nodename: char *const
nodenumber: med_int *const
famnumber: med_int *const
"""
return _medmesh.MEDmeshNodeRd(fid, meshname, numdt, numit, switchmode, coordinate, nodename, nodenumber, famnumber)
def MEDmeshElementWr(fid, meshname, numdt, numit, dt, entitype, geotype, cmode, switchmode, nentity, connectivity, withelementname, elementname, withelementnumber, elementnumber, withfamnumber, famnumber):
"""
MEDmeshElementWr(fid, meshname, numdt, numit, dt, entitype, geotype, cmode, switchmode, nentity, connectivity, withelementname, elementname, withelementnumber, elementnumber, withfamnumber, famnumber) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
dt: med_float const
entitype: enum med_entity_type const
geotype: med_geometry_type const
cmode: enum med_connectivity_mode const
switchmode: enum med_switch_mode const
nentity: med_int const
connectivity: med_int const *const
withelementname: enum med_bool const
elementname: char const *const
withelementnumber: enum med_bool const
elementnumber: med_int const *const
withfamnumber: enum med_bool const
famnumber: med_int const *const
"""
return _medmesh.MEDmeshElementWr(fid, meshname, numdt, numit, dt, entitype, geotype, cmode, switchmode, nentity, connectivity, withelementname, elementname, withelementnumber, elementnumber, withfamnumber, famnumber)
def MEDmeshElementRd(fid, meshname, numdt, numit, entitype, geotype, cmode, switchmode, connectivity, elementname, elementnumber, famnumber):
"""
MEDmeshElementRd(fid, meshname, numdt, numit, entitype, geotype, cmode, switchmode, connectivity, elementname, elementnumber, famnumber) -> med_err
Parameters
----------
fid: med_idt const
meshname: char const *const
numdt: med_int const
numit: med_int const
entitype: enum med_entity_type const
geotype: med_geometry_type const
cmode: enum med_connectivity_mode const
switchmode: enum med_switch_mode const
connectivity: med_int *const
elementname: char *const
elementnumber: med_int *const
famnumber: med_int *const
"""
return _medmesh.MEDmeshElementRd(fid, meshname, numdt, numit, entitype, geotype, cmode, switchmode, connectivity, elementname, elementnumber, famnumber)
def MEDsupportMeshCr(fid, supportmeshname, spacedim, meshdim, description, axistype, axisname, axisunit):
"""
MEDsupportMeshCr(fid, supportmeshname, spacedim, meshdim, description, axistype, axisname, axisunit) -> med_err
Parameters
----------
fid: med_idt const
supportmeshname: char const *const
spacedim: med_int const
meshdim: med_int const
description: char const *const
axistype: enum med_axis_type const
axisname: char const *const
axisunit: char const *const
"""
return _medmesh.MEDsupportMeshCr(fid, supportmeshname, spacedim, meshdim, description, axistype, axisname, axisunit)
def MEDsupportMeshInfoByName(fid, supportmeshname):
"""
MEDsupportMeshInfoByName(fid, supportmeshname) -> med_err
Parameters
----------
fid: med_idt const
supportmeshname: char const *const
"""
return _medmesh.MEDsupportMeshInfoByName(fid, supportmeshname)
def MEDsupportMeshInfo(fid, meshit):
"""
MEDsupportMeshInfo(fid, meshit) -> med_err
Parameters
----------
fid: med_idt const
meshit: int const
"""
return _medmesh.MEDsupportMeshInfo(fid, meshit)
def MEDnSupportMesh(fid):
"""
MEDnSupportMesh(fid) -> med_int
Parameters
----------
fid: med_idt const
"""
return _medmesh.MEDnSupportMesh(fid)
def MEDsupportMeshnAxis(fid, meshit):
"""
MEDsupportMeshnAxis(fid, meshit) -> med_int
Parameters
----------
fid: med_idt const
meshit: int const
"""
return _medmesh.MEDsupportMeshnAxis(fid, meshit)
def MEDsupportMeshnAxisByName(fid, meshname):
"""
MEDsupportMeshnAxisByName(fid, meshname) -> med_int
Parameters
----------
fid: med_idt const
meshname: char const *const
"""
return _medmesh.MEDsupportMeshnAxisByName(fid, meshname)
# This file is compatible with both classic and new-style classes.
|