This file is indexed.

/usr/share/pyshared/openturns/graph.py is in python-openturns 1.2-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
# This file was automatically generated by SWIG (http://www.swig.org).
# Version 2.0.10
#
# Do not make changes to this file unless you know what you are doing--modify
# the SWIG interface file instead.


"""
Graphical output.
"""


from sys import version_info
if 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('_graph', [dirname(__file__)])
        except ImportError:
            import _graph
            return _graph
        if fp is not None:
            try:
                _mod = imp.load_module('_graph', fp, pathname, description)
            finally:
                fp.close()
            return _mod
    _graph = swig_import_helper()
    del swig_import_helper
else:
    import _graph
del version_info
try:
    _swig_property = property
except NameError:
    pass # Python < 2.2 doesn't have 'property'.
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):
        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(name)

def _swig_repr(self):
    try: strthis = "proxy of " + self.this.__repr__()
    except: strthis = ""
    return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,)

try:
    _object = object
    _newclass = 1
except AttributeError:
    class _object : pass
    _newclass = 0


class SwigPyIterator(_object):
    """Proxy of C++ swig::SwigPyIterator class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, SwigPyIterator, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, SwigPyIterator, name)
    def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined - class is abstract")
    __repr__ = _swig_repr
    __swig_destroy__ = _graph.delete_SwigPyIterator
    __del__ = lambda self : None;
    def value(self):
        """value(SwigPyIterator self) -> PyObject *"""
        return _graph.SwigPyIterator_value(self)

    def incr(self, n=1):
        """
        incr(SwigPyIterator self, size_t n=1) -> SwigPyIterator
        incr(SwigPyIterator self) -> SwigPyIterator
        """
        return _graph.SwigPyIterator_incr(self, n)

    def decr(self, n=1):
        """
        decr(SwigPyIterator self, size_t n=1) -> SwigPyIterator
        decr(SwigPyIterator self) -> SwigPyIterator
        """
        return _graph.SwigPyIterator_decr(self, n)

    def distance(self, *args):
        """distance(SwigPyIterator self, SwigPyIterator x) -> ptrdiff_t"""
        return _graph.SwigPyIterator_distance(self, *args)

    def equal(self, *args):
        """equal(SwigPyIterator self, SwigPyIterator x) -> bool"""
        return _graph.SwigPyIterator_equal(self, *args)

    def copy(self):
        """copy(SwigPyIterator self) -> SwigPyIterator"""
        return _graph.SwigPyIterator_copy(self)

    def next(self):
        """next(SwigPyIterator self) -> PyObject *"""
        return _graph.SwigPyIterator_next(self)

    def __next__(self):
        """__next__(SwigPyIterator self) -> PyObject *"""
        return _graph.SwigPyIterator___next__(self)

    def previous(self):
        """previous(SwigPyIterator self) -> PyObject *"""
        return _graph.SwigPyIterator_previous(self)

    def advance(self, *args):
        """advance(SwigPyIterator self, ptrdiff_t n) -> SwigPyIterator"""
        return _graph.SwigPyIterator_advance(self, *args)

    def __eq__(self, *args):
        """__eq__(SwigPyIterator self, SwigPyIterator x) -> bool"""
        return _graph.SwigPyIterator___eq__(self, *args)

    def __ne__(self, *args):
        """__ne__(SwigPyIterator self, SwigPyIterator x) -> bool"""
        return _graph.SwigPyIterator___ne__(self, *args)

    def __iadd__(self, *args):
        """__iadd__(SwigPyIterator self, ptrdiff_t n) -> SwigPyIterator"""
        return _graph.SwigPyIterator___iadd__(self, *args)

    def __isub__(self, *args):
        """__isub__(SwigPyIterator self, ptrdiff_t n) -> SwigPyIterator"""
        return _graph.SwigPyIterator___isub__(self, *args)

    def __add__(self, *args):
        """__add__(SwigPyIterator self, ptrdiff_t n) -> SwigPyIterator"""
        return _graph.SwigPyIterator___add__(self, *args)

    def __sub__(self, *args):
        """
        __sub__(SwigPyIterator self, ptrdiff_t n) -> SwigPyIterator
        __sub__(SwigPyIterator self, SwigPyIterator x) -> ptrdiff_t
        """
        return _graph.SwigPyIterator___sub__(self, *args)

    def __iter__(self): return self
SwigPyIterator_swigregister = _graph.SwigPyIterator_swigregister
SwigPyIterator_swigregister(SwigPyIterator)

GCC_VERSION = _graph.GCC_VERSION
class TestFailed:
  """
  TestFailed is used to raise an uniform exception in tests
  """
  __type = "TestFailed"
  def __init__(self,reason=""):
    self.reason = reason
  def type(self):
    return TestFailed.__type
  def what(self):
    return self.reason
  def __str__(self):
    return TestFailed.__type + ": " + self.reason
  def __lshift__(self,ch):
    self.reason += ch
    return self

import openturns.common
import openturns.wrapper
import openturns.typ
class DrawableImplementation(openturns.common.PersistentObject):
    """Proxy of C++ OT::DrawableImplementation class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, DrawableImplementation, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, DrawableImplementation, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _graph.DrawableImplementation_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(DrawableImplementation self) -> OT::String"""
        return _graph.DrawableImplementation_getClassName(self)

    def __repr__(self):
        """__repr__(DrawableImplementation self) -> OT::String"""
        return _graph.DrawableImplementation___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(DrawableImplementation self, OT::String const & offset="") -> OT::String
        __str__(DrawableImplementation self) -> OT::String
        """
        return _graph.DrawableImplementation___str__(self, offset)

    def __eq__(self, *args):
        """__eq__(DrawableImplementation self, DrawableImplementation other) -> OT::Bool"""
        return _graph.DrawableImplementation___eq__(self, *args)

    def getPointCode(self, *args):
        """getPointCode(DrawableImplementation self, OT::String const & key) -> OT::UnsignedLong"""
        return _graph.DrawableImplementation_getPointCode(self, *args)

    def IsValidColorCode(*args):
        """IsValidColorCode(OT::String const & key) -> OT::Bool"""
        return _graph.DrawableImplementation_IsValidColorCode(*args)

    if _newclass:IsValidColorCode = staticmethod(IsValidColorCode)
    __swig_getmethods__["IsValidColorCode"] = lambda x: IsValidColorCode
    def IsValidColorName(*args):
        """IsValidColorName(OT::String const & key) -> OT::Bool"""
        return _graph.DrawableImplementation_IsValidColorName(*args)

    if _newclass:IsValidColorName = staticmethod(IsValidColorName)
    __swig_getmethods__["IsValidColorName"] = lambda x: IsValidColorName
    def IsValidColor(*args):
        """IsValidColor(OT::String const & key) -> OT::Bool"""
        return _graph.DrawableImplementation_IsValidColor(*args)

    if _newclass:IsValidColor = staticmethod(IsValidColor)
    __swig_getmethods__["IsValidColor"] = lambda x: IsValidColor
    def IsValidLineStyle(*args):
        """IsValidLineStyle(OT::String const & key) -> OT::Bool"""
        return _graph.DrawableImplementation_IsValidLineStyle(*args)

    if _newclass:IsValidLineStyle = staticmethod(IsValidLineStyle)
    __swig_getmethods__["IsValidLineStyle"] = lambda x: IsValidLineStyle
    def IsValidPointStyle(*args):
        """IsValidPointStyle(OT::String const & key) -> OT::Bool"""
        return _graph.DrawableImplementation_IsValidPointStyle(*args)

    if _newclass:IsValidPointStyle = staticmethod(IsValidPointStyle)
    __swig_getmethods__["IsValidPointStyle"] = lambda x: IsValidPointStyle
    def IsValidFillStyle(*args):
        """IsValidFillStyle(OT::String const & key) -> OT::Bool"""
        return _graph.DrawableImplementation_IsValidFillStyle(*args)

    if _newclass:IsValidFillStyle = staticmethod(IsValidFillStyle)
    __swig_getmethods__["IsValidFillStyle"] = lambda x: IsValidFillStyle
    def IsValidPattern(*args):
        """IsValidPattern(OT::String const & pattern) -> OT::Bool"""
        return _graph.DrawableImplementation_IsValidPattern(*args)

    if _newclass:IsValidPattern = staticmethod(IsValidPattern)
    __swig_getmethods__["IsValidPattern"] = lambda x: IsValidPattern
    def getLegendName(self):
        """getLegendName(DrawableImplementation self) -> OT::String"""
        return _graph.DrawableImplementation_getLegendName(self)

    def setLegendName(self, *args):
        """setLegendName(DrawableImplementation self, OT::String const & legendName)"""
        return _graph.DrawableImplementation_setLegendName(self, *args)

    def getLegend(self):
        """getLegend(DrawableImplementation self) -> OT::String"""
        return _graph.DrawableImplementation_getLegend(self)

    def setLegend(self, *args):
        """setLegend(DrawableImplementation self, OT::String const & legend)"""
        return _graph.DrawableImplementation_setLegend(self, *args)

    def getData(self):
        """getData(DrawableImplementation self) -> NumericalSample"""
        return _graph.DrawableImplementation_getData(self)

    def getLineStyle(self):
        """getLineStyle(DrawableImplementation self) -> OT::String"""
        return _graph.DrawableImplementation_getLineStyle(self)

    def setLineStyle(self, *args):
        """setLineStyle(DrawableImplementation self, OT::String const & lineStyle)"""
        return _graph.DrawableImplementation_setLineStyle(self, *args)

    def getColor(self):
        """getColor(DrawableImplementation self) -> OT::String"""
        return _graph.DrawableImplementation_getColor(self)

    def getColorCode(self):
        """getColorCode(DrawableImplementation self) -> OT::String"""
        return _graph.DrawableImplementation_getColorCode(self)

    def setColor(self, *args):
        """setColor(DrawableImplementation self, OT::String const & color)"""
        return _graph.DrawableImplementation_setColor(self, *args)

    def getEdgeColor(self):
        """getEdgeColor(DrawableImplementation self) -> OT::String"""
        return _graph.DrawableImplementation_getEdgeColor(self)

    def getPointStyle(self):
        """getPointStyle(DrawableImplementation self) -> OT::String"""
        return _graph.DrawableImplementation_getPointStyle(self)

    def setPointStyle(self, *args):
        """setPointStyle(DrawableImplementation self, OT::String const & pointStyle)"""
        return _graph.DrawableImplementation_setPointStyle(self, *args)

    def getFillStyle(self):
        """getFillStyle(DrawableImplementation self) -> OT::String"""
        return _graph.DrawableImplementation_getFillStyle(self)

    def setFillStyle(self, *args):
        """setFillStyle(DrawableImplementation self, OT::String const & fillStyle)"""
        return _graph.DrawableImplementation_setFillStyle(self, *args)

    def getLineWidth(self):
        """getLineWidth(DrawableImplementation self) -> OT::UnsignedLong"""
        return _graph.DrawableImplementation_getLineWidth(self)

    def setLineWidth(self, *args):
        """setLineWidth(DrawableImplementation self, OT::UnsignedLong const lineWidth)"""
        return _graph.DrawableImplementation_setLineWidth(self, *args)

    def getPattern(self):
        """getPattern(DrawableImplementation self) -> OT::String"""
        return _graph.DrawableImplementation_getPattern(self)

    def setPattern(self, *args):
        """setPattern(DrawableImplementation self, OT::String const style)"""
        return _graph.DrawableImplementation_setPattern(self, *args)

    def setShowPoints(self, *args):
        """setShowPoints(DrawableImplementation self, OT::Bool const showPoints)"""
        return _graph.DrawableImplementation_setShowPoints(self, *args)

    def getShowPoints(self):
        """getShowPoints(DrawableImplementation self) -> OT::Bool"""
        return _graph.DrawableImplementation_getShowPoints(self)

    def getCenter(self):
        """getCenter(DrawableImplementation self) -> NumericalPoint"""
        return _graph.DrawableImplementation_getCenter(self)

    def setCenter(self, *args):
        """setCenter(DrawableImplementation self, NumericalPoint center)"""
        return _graph.DrawableImplementation_setCenter(self, *args)

    def getRadius(self):
        """getRadius(DrawableImplementation self) -> OT::NumericalScalar"""
        return _graph.DrawableImplementation_getRadius(self)

    def setRadius(self, *args):
        """setRadius(DrawableImplementation self, OT::NumericalScalar const radius)"""
        return _graph.DrawableImplementation_setRadius(self, *args)

    def getLabels(self):
        """getLabels(DrawableImplementation self) -> Description"""
        return _graph.DrawableImplementation_getLabels(self)

    def setLabels(self, *args):
        """setLabels(DrawableImplementation self, Description labels)"""
        return _graph.DrawableImplementation_setLabels(self, *args)

    def getPalette(self):
        """getPalette(DrawableImplementation self) -> Description"""
        return _graph.DrawableImplementation_getPalette(self)

    def setPalette(self, *args):
        """setPalette(DrawableImplementation self, Description palette)"""
        return _graph.DrawableImplementation_setPalette(self, *args)

    def getOrigin(self):
        """getOrigin(DrawableImplementation self) -> OT::NumericalScalar"""
        return _graph.DrawableImplementation_getOrigin(self)

    def setOrigin(self, *args):
        """setOrigin(DrawableImplementation self, OT::NumericalScalar const origin)"""
        return _graph.DrawableImplementation_setOrigin(self, *args)

    def getX(self):
        """getX(DrawableImplementation self) -> NumericalSample"""
        return _graph.DrawableImplementation_getX(self)

    def setX(self, *args):
        """setX(DrawableImplementation self, NumericalSample x)"""
        return _graph.DrawableImplementation_setX(self, *args)

    def getY(self):
        """getY(DrawableImplementation self) -> NumericalSample"""
        return _graph.DrawableImplementation_getY(self)

    def setY(self, *args):
        """setY(DrawableImplementation self, NumericalSample y)"""
        return _graph.DrawableImplementation_setY(self, *args)

    def getLevels(self):
        """getLevels(DrawableImplementation self) -> NumericalPoint"""
        return _graph.DrawableImplementation_getLevels(self)

    def setLevels(self, *args):
        """setLevels(DrawableImplementation self, NumericalPoint levels)"""
        return _graph.DrawableImplementation_setLevels(self, *args)

    def getDrawLabels(self):
        """getDrawLabels(DrawableImplementation self) -> OT::Bool"""
        return _graph.DrawableImplementation_getDrawLabels(self)

    def setDrawLabels(self, *args):
        """setDrawLabels(DrawableImplementation self, OT::Bool const & drawLabels)"""
        return _graph.DrawableImplementation_setDrawLabels(self, *args)

    def getBoundingBox(self):
        """getBoundingBox(DrawableImplementation self) -> NumericalPoint"""
        return _graph.DrawableImplementation_getBoundingBox(self)

    def draw(self):
        """draw(DrawableImplementation self) -> OT::String"""
        return _graph.DrawableImplementation_draw(self)

    def clean(self):
        """clean(DrawableImplementation self)"""
        return _graph.DrawableImplementation_clean(self)

    def GetValidColors():
        """GetValidColors() -> Description"""
        return _graph.DrawableImplementation_GetValidColors()

    if _newclass:GetValidColors = staticmethod(GetValidColors)
    __swig_getmethods__["GetValidColors"] = lambda x: GetValidColors
    def GetValidLineStyles():
        """GetValidLineStyles() -> Description"""
        return _graph.DrawableImplementation_GetValidLineStyles()

    if _newclass:GetValidLineStyles = staticmethod(GetValidLineStyles)
    __swig_getmethods__["GetValidLineStyles"] = lambda x: GetValidLineStyles
    def GetValidFillStyles():
        """GetValidFillStyles() -> Description"""
        return _graph.DrawableImplementation_GetValidFillStyles()

    if _newclass:GetValidFillStyles = staticmethod(GetValidFillStyles)
    __swig_getmethods__["GetValidFillStyles"] = lambda x: GetValidFillStyles
    def GetValidPointStyles():
        """GetValidPointStyles() -> Description"""
        return _graph.DrawableImplementation_GetValidPointStyles()

    if _newclass:GetValidPointStyles = staticmethod(GetValidPointStyles)
    __swig_getmethods__["GetValidPointStyles"] = lambda x: GetValidPointStyles
    def ConvertFromName(*args):
        """ConvertFromName(OT::String const & name) -> OT::String"""
        return _graph.DrawableImplementation_ConvertFromName(*args)

    if _newclass:ConvertFromName = staticmethod(ConvertFromName)
    __swig_getmethods__["ConvertFromName"] = lambda x: ConvertFromName
    def ConvertFromRGB(*args):
        """
        ConvertFromRGB(OT::UnsignedLong const red, OT::UnsignedLong const green, OT::UnsignedLong const blue) -> OT::String
        ConvertFromRGB(OT::NumericalScalar const red, OT::NumericalScalar const green, OT::NumericalScalar const blue) -> OT::String
        """
        return _graph.DrawableImplementation_ConvertFromRGB(*args)

    if _newclass:ConvertFromRGB = staticmethod(ConvertFromRGB)
    __swig_getmethods__["ConvertFromRGB"] = lambda x: ConvertFromRGB
    def ConvertFromRGBA(*args):
        """
        ConvertFromRGBA(OT::UnsignedLong const red, OT::UnsignedLong const green, OT::UnsignedLong const blue, 
            OT::UnsignedLong const alpha) -> OT::String
        ConvertFromRGBA(OT::NumericalScalar const red, OT::NumericalScalar const green, OT::NumericalScalar const blue, 
            OT::NumericalScalar const alpha) -> OT::String
        """
        return _graph.DrawableImplementation_ConvertFromRGBA(*args)

    if _newclass:ConvertFromRGBA = staticmethod(ConvertFromRGBA)
    __swig_getmethods__["ConvertFromRGBA"] = lambda x: ConvertFromRGBA
    def ConvertFromHSVIntoRGB(*args):
        """ConvertFromHSVIntoRGB(OT::NumericalScalar const hue, OT::NumericalScalar const saturation, OT::NumericalScalar const value) -> NumericalPoint"""
        return _graph.DrawableImplementation_ConvertFromHSVIntoRGB(*args)

    if _newclass:ConvertFromHSVIntoRGB = staticmethod(ConvertFromHSVIntoRGB)
    __swig_getmethods__["ConvertFromHSVIntoRGB"] = lambda x: ConvertFromHSVIntoRGB
    def ConvertFromHSV(*args):
        """ConvertFromHSV(OT::NumericalScalar const hue, OT::NumericalScalar const saturation, OT::NumericalScalar const value) -> OT::String"""
        return _graph.DrawableImplementation_ConvertFromHSV(*args)

    if _newclass:ConvertFromHSV = staticmethod(ConvertFromHSV)
    __swig_getmethods__["ConvertFromHSV"] = lambda x: ConvertFromHSV
    def ConvertFromHSVA(*args):
        """
        ConvertFromHSVA(OT::NumericalScalar const hue, OT::NumericalScalar const saturation, OT::NumericalScalar const value, 
            OT::NumericalScalar const alpha) -> OT::String
        """
        return _graph.DrawableImplementation_ConvertFromHSVA(*args)

    if _newclass:ConvertFromHSVA = staticmethod(ConvertFromHSVA)
    __swig_getmethods__["ConvertFromHSVA"] = lambda x: ConvertFromHSVA
    def BuildDefaultPalette(*args):
        """BuildDefaultPalette(OT::UnsignedLong const size) -> Description"""
        return _graph.DrawableImplementation_BuildDefaultPalette(*args)

    if _newclass:BuildDefaultPalette = staticmethod(BuildDefaultPalette)
    __swig_getmethods__["BuildDefaultPalette"] = lambda x: BuildDefaultPalette
    def __init__(self, *args): 
        """
        __init__(OT::DrawableImplementation self, NumericalSample data, OT::String const & legend="") -> DrawableImplementation
        __init__(OT::DrawableImplementation self, NumericalSample data) -> DrawableImplementation
        __init__(OT::DrawableImplementation self, DrawableImplementation other) -> DrawableImplementation
        """
        this = _graph.new_DrawableImplementation(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _graph.delete_DrawableImplementation
    __del__ = lambda self : None;
DrawableImplementation_swigregister = _graph.DrawableImplementation_swigregister
DrawableImplementation_swigregister(DrawableImplementation)

def DrawableImplementation_GetClassName():
  """DrawableImplementation_GetClassName() -> OT::String"""
  return _graph.DrawableImplementation_GetClassName()

def DrawableImplementation_IsValidColorCode(*args):
  """DrawableImplementation_IsValidColorCode(OT::String const & key) -> OT::Bool"""
  return _graph.DrawableImplementation_IsValidColorCode(*args)

def DrawableImplementation_IsValidColorName(*args):
  """DrawableImplementation_IsValidColorName(OT::String const & key) -> OT::Bool"""
  return _graph.DrawableImplementation_IsValidColorName(*args)

def DrawableImplementation_IsValidColor(*args):
  """DrawableImplementation_IsValidColor(OT::String const & key) -> OT::Bool"""
  return _graph.DrawableImplementation_IsValidColor(*args)

def DrawableImplementation_IsValidLineStyle(*args):
  """DrawableImplementation_IsValidLineStyle(OT::String const & key) -> OT::Bool"""
  return _graph.DrawableImplementation_IsValidLineStyle(*args)

def DrawableImplementation_IsValidPointStyle(*args):
  """DrawableImplementation_IsValidPointStyle(OT::String const & key) -> OT::Bool"""
  return _graph.DrawableImplementation_IsValidPointStyle(*args)

def DrawableImplementation_IsValidFillStyle(*args):
  """DrawableImplementation_IsValidFillStyle(OT::String const & key) -> OT::Bool"""
  return _graph.DrawableImplementation_IsValidFillStyle(*args)

def DrawableImplementation_IsValidPattern(*args):
  """DrawableImplementation_IsValidPattern(OT::String const & pattern) -> OT::Bool"""
  return _graph.DrawableImplementation_IsValidPattern(*args)

def DrawableImplementation_GetValidColors():
  """DrawableImplementation_GetValidColors() -> Description"""
  return _graph.DrawableImplementation_GetValidColors()

def DrawableImplementation_GetValidLineStyles():
  """DrawableImplementation_GetValidLineStyles() -> Description"""
  return _graph.DrawableImplementation_GetValidLineStyles()

def DrawableImplementation_GetValidFillStyles():
  """DrawableImplementation_GetValidFillStyles() -> Description"""
  return _graph.DrawableImplementation_GetValidFillStyles()

def DrawableImplementation_GetValidPointStyles():
  """DrawableImplementation_GetValidPointStyles() -> Description"""
  return _graph.DrawableImplementation_GetValidPointStyles()

def DrawableImplementation_ConvertFromName(*args):
  """DrawableImplementation_ConvertFromName(OT::String const & name) -> OT::String"""
  return _graph.DrawableImplementation_ConvertFromName(*args)

def DrawableImplementation_ConvertFromRGB(*args):
  """
    ConvertFromRGB(OT::UnsignedLong const red, OT::UnsignedLong const green, OT::UnsignedLong const blue) -> OT::String
    DrawableImplementation_ConvertFromRGB(OT::NumericalScalar const red, OT::NumericalScalar const green, OT::NumericalScalar const blue) -> OT::String
    """
  return _graph.DrawableImplementation_ConvertFromRGB(*args)

def DrawableImplementation_ConvertFromRGBA(*args):
  """
    ConvertFromRGBA(OT::UnsignedLong const red, OT::UnsignedLong const green, OT::UnsignedLong const blue, 
        OT::UnsignedLong const alpha) -> OT::String
    DrawableImplementation_ConvertFromRGBA(OT::NumericalScalar const red, OT::NumericalScalar const green, OT::NumericalScalar const blue, 
        OT::NumericalScalar const alpha) -> OT::String
    """
  return _graph.DrawableImplementation_ConvertFromRGBA(*args)

def DrawableImplementation_ConvertFromHSVIntoRGB(*args):
  """DrawableImplementation_ConvertFromHSVIntoRGB(OT::NumericalScalar const hue, OT::NumericalScalar const saturation, OT::NumericalScalar const value) -> NumericalPoint"""
  return _graph.DrawableImplementation_ConvertFromHSVIntoRGB(*args)

def DrawableImplementation_ConvertFromHSV(*args):
  """DrawableImplementation_ConvertFromHSV(OT::NumericalScalar const hue, OT::NumericalScalar const saturation, OT::NumericalScalar const value) -> OT::String"""
  return _graph.DrawableImplementation_ConvertFromHSV(*args)

def DrawableImplementation_ConvertFromHSVA(*args):
  """
    DrawableImplementation_ConvertFromHSVA(OT::NumericalScalar const hue, OT::NumericalScalar const saturation, OT::NumericalScalar const value, 
        OT::NumericalScalar const alpha) -> OT::String
    """
  return _graph.DrawableImplementation_ConvertFromHSVA(*args)

def DrawableImplementation_BuildDefaultPalette(*args):
  """DrawableImplementation_BuildDefaultPalette(OT::UnsignedLong const size) -> Description"""
  return _graph.DrawableImplementation_BuildDefaultPalette(*args)

class DrawableImplementationTypedInterfaceObject(openturns.common.InterfaceObject):
    """Proxy of C++ OT::TypedInterfaceObject<(OT::DrawableImplementation)> class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.InterfaceObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, DrawableImplementationTypedInterfaceObject, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.InterfaceObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, DrawableImplementationTypedInterfaceObject, name)
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """
        __init__(OT::TypedInterfaceObject<(OT::DrawableImplementation)> self) -> DrawableImplementationTypedInterfaceObject
        __init__(OT::TypedInterfaceObject<(OT::DrawableImplementation)> self, DrawableImplementationPointer impl) -> DrawableImplementationTypedInterfaceObject
        """
        this = _graph.new_DrawableImplementationTypedInterfaceObject(*args)
        try: self.this.append(this)
        except: self.this = this
    def getImplementation(self, *args):
        """
        getImplementation(DrawableImplementationTypedInterfaceObject self) -> DrawableImplementationPointer
        getImplementation(DrawableImplementationTypedInterfaceObject self) -> DrawableImplementationPointer
        """
        return _graph.DrawableImplementationTypedInterfaceObject_getImplementation(self, *args)

    def getImplementationAsPersistentObject(self):
        """getImplementationAsPersistentObject(DrawableImplementationTypedInterfaceObject self) -> PersistentObjectPointer"""
        return _graph.DrawableImplementationTypedInterfaceObject_getImplementationAsPersistentObject(self)

    def setImplementationAsPersistentObject(self, *args):
        """setImplementationAsPersistentObject(DrawableImplementationTypedInterfaceObject self, PersistentObjectPointer obj)"""
        return _graph.DrawableImplementationTypedInterfaceObject_setImplementationAsPersistentObject(self, *args)

    def swap(self, *args):
        """swap(DrawableImplementationTypedInterfaceObject self, DrawableImplementationTypedInterfaceObject other)"""
        return _graph.DrawableImplementationTypedInterfaceObject_swap(self, *args)

    def setName(self, *args):
        """setName(DrawableImplementationTypedInterfaceObject self, OT::String const & name)"""
        return _graph.DrawableImplementationTypedInterfaceObject_setName(self, *args)

    def getName(self):
        """getName(DrawableImplementationTypedInterfaceObject self) -> OT::String"""
        return _graph.DrawableImplementationTypedInterfaceObject_getName(self)

    def __eq__(self, *args):
        """__eq__(DrawableImplementationTypedInterfaceObject self, DrawableImplementationTypedInterfaceObject other) -> OT::Bool"""
        return _graph.DrawableImplementationTypedInterfaceObject___eq__(self, *args)

    __swig_destroy__ = _graph.delete_DrawableImplementationTypedInterfaceObject
    __del__ = lambda self : None;
DrawableImplementationTypedInterfaceObject_swigregister = _graph.DrawableImplementationTypedInterfaceObject_swigregister
DrawableImplementationTypedInterfaceObject_swigregister(DrawableImplementationTypedInterfaceObject)

class DrawableCollection(_object):
    """Proxy of C++ OT::Collection<(OT::Drawable)> class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, DrawableCollection, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, DrawableCollection, name)
    __swig_destroy__ = _graph.delete_DrawableCollection
    __del__ = lambda self : None;
    def clear(self):
        """clear(DrawableCollection self)"""
        return _graph.DrawableCollection_clear(self)

    def __len__(self):
        """__len__(DrawableCollection self) -> OT::UnsignedLong"""
        return _graph.DrawableCollection___len__(self)

    def __eq__(self, *args):
        """__eq__(DrawableCollection self, DrawableCollection rhs) -> OT::Bool"""
        return _graph.DrawableCollection___eq__(self, *args)

    def __contains__(self, *args):
        """__contains__(DrawableCollection self, Drawable val) -> OT::Bool"""
        return _graph.DrawableCollection___contains__(self, *args)

    def __getitem__(self, *args):
        """__getitem__(DrawableCollection self, OT::UnsignedLong const i) -> Drawable"""
        return _graph.DrawableCollection___getitem__(self, *args)

    def __setitem__(self, *args):
        """__setitem__(DrawableCollection self, OT::UnsignedLong const i, Drawable val)"""
        return _graph.DrawableCollection___setitem__(self, *args)

    def __delitem__(self, *args):
        """__delitem__(DrawableCollection self, OT::UnsignedLong const i)"""
        return _graph.DrawableCollection___delitem__(self, *args)

    def at(self, *args):
        """
        at(DrawableCollection self, OT::UnsignedLong const i) -> Drawable
        at(DrawableCollection self, OT::UnsignedLong const i) -> Drawable
        """
        return _graph.DrawableCollection_at(self, *args)

    def add(self, *args):
        """
        add(DrawableCollection self, Drawable elt)
        add(DrawableCollection self, DrawableCollection coll)
        """
        return _graph.DrawableCollection_add(self, *args)

    def getSize(self):
        """getSize(DrawableCollection self) -> OT::UnsignedLong"""
        return _graph.DrawableCollection_getSize(self)

    def resize(self, *args):
        """resize(DrawableCollection self, OT::UnsignedLong const newSize)"""
        return _graph.DrawableCollection_resize(self, *args)

    def isEmpty(self):
        """isEmpty(DrawableCollection self) -> OT::Bool"""
        return _graph.DrawableCollection_isEmpty(self)

    def __repr__(self):
        """__repr__(DrawableCollection self) -> OT::String"""
        return _graph.DrawableCollection___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(DrawableCollection self, OT::String const & offset="") -> OT::String
        __str__(DrawableCollection self) -> OT::String
        """
        return _graph.DrawableCollection___str__(self, offset)

    def __init__(self, *args): 
        """
        __init__(OT::Collection<(OT::Drawable)> self) -> DrawableCollection
        __init__(OT::Collection<(OT::Drawable)> self, OT::UnsignedLong const size) -> DrawableCollection
        __init__(OT::Collection<(OT::Drawable)> self, OT::UnsignedLong const size, Drawable value) -> DrawableCollection
        __init__(OT::Collection<(OT::Drawable)> self, PyObject * pyObj) -> DrawableCollection
        __init__(OT::Collection<(OT::Drawable)> self, DrawableCollection other) -> DrawableCollection
        """
        this = _graph.new_DrawableCollection(*args)
        try: self.this.append(this)
        except: self.this = this
DrawableCollection_swigregister = _graph.DrawableCollection_swigregister
DrawableCollection_swigregister(DrawableCollection)

class Drawable(DrawableImplementationTypedInterfaceObject):
    """Proxy of C++ OT::Drawable class"""
    __swig_setmethods__ = {}
    for _s in [DrawableImplementationTypedInterfaceObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, Drawable, name, value)
    __swig_getmethods__ = {}
    for _s in [DrawableImplementationTypedInterfaceObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, Drawable, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _graph.Drawable_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(Drawable self) -> OT::String"""
        return _graph.Drawable_getClassName(self)

    def __repr__(self):
        """__repr__(Drawable self) -> OT::String"""
        return _graph.Drawable___repr__(self)

    def getBoundingBox(self):
        """getBoundingBox(Drawable self) -> NumericalPoint"""
        return _graph.Drawable_getBoundingBox(self)

    def getLegendName(self):
        """getLegendName(Drawable self) -> OT::String"""
        return _graph.Drawable_getLegendName(self)

    def setLegendName(self, *args):
        """setLegendName(Drawable self, OT::String const & legendName)"""
        return _graph.Drawable_setLegendName(self, *args)

    def getLegend(self):
        """getLegend(Drawable self) -> OT::String"""
        return _graph.Drawable_getLegend(self)

    def setLegend(self, *args):
        """setLegend(Drawable self, OT::String const & legend)"""
        return _graph.Drawable_setLegend(self, *args)

    def getLineStyle(self):
        """getLineStyle(Drawable self) -> OT::String"""
        return _graph.Drawable_getLineStyle(self)

    def setLineStyle(self, *args):
        """setLineStyle(Drawable self, OT::String const & lineStyle)"""
        return _graph.Drawable_setLineStyle(self, *args)

    def getPointStyle(self):
        """getPointStyle(Drawable self) -> OT::String"""
        return _graph.Drawable_getPointStyle(self)

    def setPointStyle(self, *args):
        """setPointStyle(Drawable self, OT::String const & pointStyle)"""
        return _graph.Drawable_setPointStyle(self, *args)

    def getFillStyle(self):
        """getFillStyle(Drawable self) -> OT::String"""
        return _graph.Drawable_getFillStyle(self)

    def setFillStyle(self, *args):
        """setFillStyle(Drawable self, OT::String const & fillStyle)"""
        return _graph.Drawable_setFillStyle(self, *args)

    def getLineWidth(self):
        """getLineWidth(Drawable self) -> OT::UnsignedLong"""
        return _graph.Drawable_getLineWidth(self)

    def setLineWidth(self, *args):
        """setLineWidth(Drawable self, OT::UnsignedLong const lineWidth)"""
        return _graph.Drawable_setLineWidth(self, *args)

    def getColor(self):
        """getColor(Drawable self) -> OT::String"""
        return _graph.Drawable_getColor(self)

    def getColorCode(self):
        """getColorCode(Drawable self) -> OT::String"""
        return _graph.Drawable_getColorCode(self)

    def setColor(self, *args):
        """setColor(Drawable self, OT::String const & color)"""
        return _graph.Drawable_setColor(self, *args)

    def getEdgeColor(self):
        """getEdgeColor(Drawable self) -> OT::String"""
        return _graph.Drawable_getEdgeColor(self)

    def getPattern(self):
        """getPattern(Drawable self) -> OT::String"""
        return _graph.Drawable_getPattern(self)

    def setPattern(self, *args):
        """setPattern(Drawable self, OT::String const style)"""
        return _graph.Drawable_setPattern(self, *args)

    def getCenter(self):
        """getCenter(Drawable self) -> NumericalPoint"""
        return _graph.Drawable_getCenter(self)

    def setCenter(self, *args):
        """setCenter(Drawable self, NumericalPoint center)"""
        return _graph.Drawable_setCenter(self, *args)

    def getRadius(self):
        """getRadius(Drawable self) -> OT::NumericalScalar"""
        return _graph.Drawable_getRadius(self)

    def setRadius(self, *args):
        """setRadius(Drawable self, OT::NumericalScalar const radius)"""
        return _graph.Drawable_setRadius(self, *args)

    def getLabels(self):
        """getLabels(Drawable self) -> Description"""
        return _graph.Drawable_getLabels(self)

    def setLabels(self, *args):
        """setLabels(Drawable self, Description labels)"""
        return _graph.Drawable_setLabels(self, *args)

    def getPalette(self):
        """getPalette(Drawable self) -> Description"""
        return _graph.Drawable_getPalette(self)

    def setPalette(self, *args):
        """setPalette(Drawable self, Description palette)"""
        return _graph.Drawable_setPalette(self, *args)

    def getOrigin(self):
        """getOrigin(Drawable self) -> OT::NumericalScalar"""
        return _graph.Drawable_getOrigin(self)

    def setOrigin(self, *args):
        """setOrigin(Drawable self, OT::NumericalScalar const origin)"""
        return _graph.Drawable_setOrigin(self, *args)

    def getX(self):
        """getX(Drawable self) -> NumericalSample"""
        return _graph.Drawable_getX(self)

    def setX(self, *args):
        """setX(Drawable self, NumericalSample x)"""
        return _graph.Drawable_setX(self, *args)

    def getY(self):
        """getY(Drawable self) -> NumericalSample"""
        return _graph.Drawable_getY(self)

    def setY(self, *args):
        """setY(Drawable self, NumericalSample y)"""
        return _graph.Drawable_setY(self, *args)

    def getLevels(self):
        """getLevels(Drawable self) -> NumericalPoint"""
        return _graph.Drawable_getLevels(self)

    def setLevels(self, *args):
        """setLevels(Drawable self, NumericalPoint levels)"""
        return _graph.Drawable_setLevels(self, *args)

    def getDrawLabels(self):
        """getDrawLabels(Drawable self) -> OT::Bool"""
        return _graph.Drawable_getDrawLabels(self)

    def setDrawLabels(self, *args):
        """setDrawLabels(Drawable self, OT::Bool const & drawLabels)"""
        return _graph.Drawable_setDrawLabels(self, *args)

    def getData(self):
        """getData(Drawable self) -> NumericalSample"""
        return _graph.Drawable_getData(self)

    def draw(self):
        """draw(Drawable self) -> OT::String"""
        return _graph.Drawable_draw(self)

    def getPointCode(self, *args):
        """getPointCode(Drawable self, OT::String const key) -> OT::UnsignedLong"""
        return _graph.Drawable_getPointCode(self, *args)

    def clean(self):
        """clean(Drawable self)"""
        return _graph.Drawable_clean(self)

    def GetValidColors():
        """GetValidColors() -> Description"""
        return _graph.Drawable_GetValidColors()

    if _newclass:GetValidColors = staticmethod(GetValidColors)
    __swig_getmethods__["GetValidColors"] = lambda x: GetValidColors
    def GetValidLineStyles():
        """GetValidLineStyles() -> Description"""
        return _graph.Drawable_GetValidLineStyles()

    if _newclass:GetValidLineStyles = staticmethod(GetValidLineStyles)
    __swig_getmethods__["GetValidLineStyles"] = lambda x: GetValidLineStyles
    def GetValidFillStyles():
        """GetValidFillStyles() -> Description"""
        return _graph.Drawable_GetValidFillStyles()

    if _newclass:GetValidFillStyles = staticmethod(GetValidFillStyles)
    __swig_getmethods__["GetValidFillStyles"] = lambda x: GetValidFillStyles
    def GetValidPointStyles():
        """GetValidPointStyles() -> Description"""
        return _graph.Drawable_GetValidPointStyles()

    if _newclass:GetValidPointStyles = staticmethod(GetValidPointStyles)
    __swig_getmethods__["GetValidPointStyles"] = lambda x: GetValidPointStyles
    def ConvertFromName(*args):
        """ConvertFromName(OT::String const & name) -> OT::String"""
        return _graph.Drawable_ConvertFromName(*args)

    if _newclass:ConvertFromName = staticmethod(ConvertFromName)
    __swig_getmethods__["ConvertFromName"] = lambda x: ConvertFromName
    def ConvertFromRGB(*args):
        """
        ConvertFromRGB(OT::UnsignedLong const red, OT::UnsignedLong const green, OT::UnsignedLong const blue) -> OT::String
        ConvertFromRGB(OT::NumericalScalar const red, OT::NumericalScalar const green, OT::NumericalScalar const blue) -> OT::String
        """
        return _graph.Drawable_ConvertFromRGB(*args)

    if _newclass:ConvertFromRGB = staticmethod(ConvertFromRGB)
    __swig_getmethods__["ConvertFromRGB"] = lambda x: ConvertFromRGB
    def ConvertFromRGBA(*args):
        """
        ConvertFromRGBA(OT::UnsignedLong const red, OT::UnsignedLong const green, OT::UnsignedLong const blue, 
            OT::UnsignedLong const alpha) -> OT::String
        ConvertFromRGBA(OT::NumericalScalar const red, OT::NumericalScalar const green, OT::NumericalScalar const blue, 
            OT::NumericalScalar const alpha) -> OT::String
        """
        return _graph.Drawable_ConvertFromRGBA(*args)

    if _newclass:ConvertFromRGBA = staticmethod(ConvertFromRGBA)
    __swig_getmethods__["ConvertFromRGBA"] = lambda x: ConvertFromRGBA
    def ConvertFromHSVIntoRGB(*args):
        """ConvertFromHSVIntoRGB(OT::NumericalScalar const hue, OT::NumericalScalar const saturation, OT::NumericalScalar const value) -> NumericalPoint"""
        return _graph.Drawable_ConvertFromHSVIntoRGB(*args)

    if _newclass:ConvertFromHSVIntoRGB = staticmethod(ConvertFromHSVIntoRGB)
    __swig_getmethods__["ConvertFromHSVIntoRGB"] = lambda x: ConvertFromHSVIntoRGB
    def ConvertFromHSV(*args):
        """ConvertFromHSV(OT::NumericalScalar const hue, OT::NumericalScalar const saturation, OT::NumericalScalar const value) -> OT::String"""
        return _graph.Drawable_ConvertFromHSV(*args)

    if _newclass:ConvertFromHSV = staticmethod(ConvertFromHSV)
    __swig_getmethods__["ConvertFromHSV"] = lambda x: ConvertFromHSV
    def ConvertFromHSVA(*args):
        """
        ConvertFromHSVA(OT::NumericalScalar const hue, OT::NumericalScalar const saturation, OT::NumericalScalar const value, 
            OT::NumericalScalar const alpha) -> OT::String
        """
        return _graph.Drawable_ConvertFromHSVA(*args)

    if _newclass:ConvertFromHSVA = staticmethod(ConvertFromHSVA)
    __swig_getmethods__["ConvertFromHSVA"] = lambda x: ConvertFromHSVA
    def BuildDefaultPalette(*args):
        """BuildDefaultPalette(OT::UnsignedLong const size) -> Description"""
        return _graph.Drawable_BuildDefaultPalette(*args)

    if _newclass:BuildDefaultPalette = staticmethod(BuildDefaultPalette)
    __swig_getmethods__["BuildDefaultPalette"] = lambda x: BuildDefaultPalette
    def __init__(self, *args): 
        """
        __init__(OT::Drawable self) -> Drawable
        __init__(OT::Drawable self, DrawableImplementation implementation) -> Drawable
        __init__(OT::Drawable self, Drawable other) -> Drawable
        __init__(OT::Drawable self, PyObject * pyObj) -> Drawable
        """
        this = _graph.new_Drawable(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _graph.delete_Drawable
    __del__ = lambda self : None;
Drawable_swigregister = _graph.Drawable_swigregister
Drawable_swigregister(Drawable)

def Drawable_GetClassName():
  """Drawable_GetClassName() -> OT::String"""
  return _graph.Drawable_GetClassName()

def Drawable_GetValidColors():
  """Drawable_GetValidColors() -> Description"""
  return _graph.Drawable_GetValidColors()

def Drawable_GetValidLineStyles():
  """Drawable_GetValidLineStyles() -> Description"""
  return _graph.Drawable_GetValidLineStyles()

def Drawable_GetValidFillStyles():
  """Drawable_GetValidFillStyles() -> Description"""
  return _graph.Drawable_GetValidFillStyles()

def Drawable_GetValidPointStyles():
  """Drawable_GetValidPointStyles() -> Description"""
  return _graph.Drawable_GetValidPointStyles()

def Drawable_ConvertFromName(*args):
  """Drawable_ConvertFromName(OT::String const & name) -> OT::String"""
  return _graph.Drawable_ConvertFromName(*args)

def Drawable_ConvertFromRGB(*args):
  """
    ConvertFromRGB(OT::UnsignedLong const red, OT::UnsignedLong const green, OT::UnsignedLong const blue) -> OT::String
    Drawable_ConvertFromRGB(OT::NumericalScalar const red, OT::NumericalScalar const green, OT::NumericalScalar const blue) -> OT::String
    """
  return _graph.Drawable_ConvertFromRGB(*args)

def Drawable_ConvertFromRGBA(*args):
  """
    ConvertFromRGBA(OT::UnsignedLong const red, OT::UnsignedLong const green, OT::UnsignedLong const blue, 
        OT::UnsignedLong const alpha) -> OT::String
    Drawable_ConvertFromRGBA(OT::NumericalScalar const red, OT::NumericalScalar const green, OT::NumericalScalar const blue, 
        OT::NumericalScalar const alpha) -> OT::String
    """
  return _graph.Drawable_ConvertFromRGBA(*args)

def Drawable_ConvertFromHSVIntoRGB(*args):
  """Drawable_ConvertFromHSVIntoRGB(OT::NumericalScalar const hue, OT::NumericalScalar const saturation, OT::NumericalScalar const value) -> NumericalPoint"""
  return _graph.Drawable_ConvertFromHSVIntoRGB(*args)

def Drawable_ConvertFromHSV(*args):
  """Drawable_ConvertFromHSV(OT::NumericalScalar const hue, OT::NumericalScalar const saturation, OT::NumericalScalar const value) -> OT::String"""
  return _graph.Drawable_ConvertFromHSV(*args)

def Drawable_ConvertFromHSVA(*args):
  """
    Drawable_ConvertFromHSVA(OT::NumericalScalar const hue, OT::NumericalScalar const saturation, OT::NumericalScalar const value, 
        OT::NumericalScalar const alpha) -> OT::String
    """
  return _graph.Drawable_ConvertFromHSVA(*args)

def Drawable_BuildDefaultPalette(*args):
  """Drawable_BuildDefaultPalette(OT::UnsignedLong const size) -> Description"""
  return _graph.Drawable_BuildDefaultPalette(*args)

class GraphImplementation(openturns.common.PersistentObject):
    """Proxy of C++ OT::GraphImplementation class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, GraphImplementation, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, GraphImplementation, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _graph.GraphImplementation_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(GraphImplementation self) -> OT::String"""
        return _graph.GraphImplementation_getClassName(self)

    __swig_setmethods__["ValidLegendPositions"] = _graph.GraphImplementation_ValidLegendPositions_set
    __swig_getmethods__["ValidLegendPositions"] = _graph.GraphImplementation_ValidLegendPositions_get
    if _newclass:ValidLegendPositions = _swig_property(_graph.GraphImplementation_ValidLegendPositions_get, _graph.GraphImplementation_ValidLegendPositions_set)
    __swig_setmethods__["IsFirstInitialization"] = _graph.GraphImplementation_IsFirstInitialization_set
    __swig_getmethods__["IsFirstInitialization"] = _graph.GraphImplementation_IsFirstInitialization_get
    if _newclass:IsFirstInitialization = _swig_property(_graph.GraphImplementation_IsFirstInitialization_get, _graph.GraphImplementation_IsFirstInitialization_set)
    ALL = _graph.GraphImplementation_ALL
    PNG = _graph.GraphImplementation_PNG
    EPS = _graph.GraphImplementation_EPS
    FIG = _graph.GraphImplementation_FIG
    PDF = _graph.GraphImplementation_PDF
    NONE = _graph.GraphImplementation_NONE
    LOGX = _graph.GraphImplementation_LOGX
    LOGY = _graph.GraphImplementation_LOGY
    LOGXY = _graph.GraphImplementation_LOGXY
    def __repr__(self):
        """__repr__(GraphImplementation self) -> OT::String"""
        return _graph.GraphImplementation___repr__(self)

    def add(self, *args):
        """
        add(GraphImplementation self, Drawable aDrawable)
        add(GraphImplementation self, DrawableCollection drawableCollection)
        add(GraphImplementation self, GraphImplementation graphImplementation)
        """
        return _graph.GraphImplementation_add(self, *args)

    def erase(self, *args):
        """erase(GraphImplementation self, OT::UnsignedLong const i)"""
        return _graph.GraphImplementation_erase(self, *args)

    def getDrawables(self):
        """getDrawables(GraphImplementation self) -> DrawableCollection"""
        return _graph.GraphImplementation_getDrawables(self)

    def setDrawables(self, *args):
        """setDrawables(GraphImplementation self, DrawableCollection drawableCollection)"""
        return _graph.GraphImplementation_setDrawables(self, *args)

    def getDrawable(self, *args):
        """getDrawable(GraphImplementation self, OT::UnsignedLong const index) -> Drawable"""
        return _graph.GraphImplementation_getDrawable(self, *args)

    def setDrawable(self, *args):
        """setDrawable(GraphImplementation self, Drawable drawable, OT::UnsignedLong const index)"""
        return _graph.GraphImplementation_setDrawable(self, *args)

    def getColors(self):
        """getColors(GraphImplementation self) -> Description"""
        return _graph.GraphImplementation_getColors(self)

    def setColors(self, *args):
        """setColors(GraphImplementation self, Description colors)"""
        return _graph.GraphImplementation_setColors(self, *args)

    def getLegends(self):
        """getLegends(GraphImplementation self) -> Description"""
        return _graph.GraphImplementation_getLegends(self)

    def setLegends(self, *args):
        """setLegends(GraphImplementation self, Description legends)"""
        return _graph.GraphImplementation_setLegends(self, *args)

    def setAxes(self, *args):
        """setAxes(GraphImplementation self, OT::Bool const showAxes)"""
        return _graph.GraphImplementation_setAxes(self, *args)

    def getAxes(self):
        """getAxes(GraphImplementation self) -> OT::Bool"""
        return _graph.GraphImplementation_getAxes(self)

    def setLogScale(self, *args):
        """setLogScale(GraphImplementation self, OT::GraphImplementation::LogScale const logScale)"""
        return _graph.GraphImplementation_setLogScale(self, *args)

    def getLogScale(self):
        """getLogScale(GraphImplementation self) -> OT::GraphImplementation::LogScale"""
        return _graph.GraphImplementation_getLogScale(self)

    def setGrid(self, *args):
        """setGrid(GraphImplementation self, OT::Bool const showGrid)"""
        return _graph.GraphImplementation_setGrid(self, *args)

    def getGrid(self):
        """getGrid(GraphImplementation self) -> OT::Bool"""
        return _graph.GraphImplementation_getGrid(self)

    def setGridColor(self, *args):
        """setGridColor(GraphImplementation self, OT::String const & color)"""
        return _graph.GraphImplementation_setGridColor(self, *args)

    def getGridColor(self):
        """getGridColor(GraphImplementation self) -> OT::String"""
        return _graph.GraphImplementation_getGridColor(self)

    def getXTitle(self):
        """getXTitle(GraphImplementation self) -> OT::String"""
        return _graph.GraphImplementation_getXTitle(self)

    def setXTitle(self, *args):
        """setXTitle(GraphImplementation self, OT::String const & title)"""
        return _graph.GraphImplementation_setXTitle(self, *args)

    def getYTitle(self):
        """getYTitle(GraphImplementation self) -> OT::String"""
        return _graph.GraphImplementation_getYTitle(self)

    def setYTitle(self, *args):
        """setYTitle(GraphImplementation self, OT::String const & title)"""
        return _graph.GraphImplementation_setYTitle(self, *args)

    def getTitle(self):
        """getTitle(GraphImplementation self) -> OT::String"""
        return _graph.GraphImplementation_getTitle(self)

    def setTitle(self, *args):
        """setTitle(GraphImplementation self, OT::String const & title)"""
        return _graph.GraphImplementation_setTitle(self, *args)

    def getPath(self):
        """getPath(GraphImplementation self) -> OT::String"""
        return _graph.GraphImplementation_getPath(self)

    def getFileName(self):
        """getFileName(GraphImplementation self) -> OT::String"""
        return _graph.GraphImplementation_getFileName(self)

    def draw(self, *args):
        """
        draw(GraphImplementation self, OT::String const & path, OT::String const & file, OT::NumericalScalar const width, 
            OT::NumericalScalar const height, OT::GraphImplementation::Format const format=ALL)
        draw(GraphImplementation self, OT::String const & path, OT::String const & file, OT::NumericalScalar const width, 
            OT::NumericalScalar const height)
        draw(GraphImplementation self, OT::String const & file, OT::NumericalScalar const width=OT::ResourceMap::GetAsUnsignedLong("GraphImplementation-DefaultWidth"), 
            OT::NumericalScalar const height=OT::ResourceMap::GetAsUnsignedLong("GraphImplementation-DefaultHeight"), 
            OT::GraphImplementation::Format const format=ALL)
        draw(GraphImplementation self, OT::String const & file, OT::NumericalScalar const width=OT::ResourceMap::GetAsUnsignedLong("GraphImplementation-DefaultWidth"), 
            OT::NumericalScalar const height=OT::ResourceMap::GetAsUnsignedLong("GraphImplementation-DefaultHeight"))
        draw(GraphImplementation self, OT::String const & file, OT::NumericalScalar const width=OT::ResourceMap::GetAsUnsignedLong("GraphImplementation-DefaultWidth"))
        draw(GraphImplementation self, OT::String const & file)
        """
        return _graph.GraphImplementation_draw(self, *args)

    def getRCommand(self):
        """getRCommand(GraphImplementation self) -> OT::String"""
        return _graph.GraphImplementation_getRCommand(self)

    def clean(self):
        """clean(GraphImplementation self)"""
        return _graph.GraphImplementation_clean(self)

    def getBitmap(self):
        """getBitmap(GraphImplementation self) -> OT::String"""
        return _graph.GraphImplementation_getBitmap(self)

    def getPostscript(self):
        """getPostscript(GraphImplementation self) -> OT::String"""
        return _graph.GraphImplementation_getPostscript(self)

    def getPDF(self):
        """getPDF(GraphImplementation self) -> OT::String"""
        return _graph.GraphImplementation_getPDF(self)

    def getVectorial(self):
        """getVectorial(GraphImplementation self) -> OT::String"""
        return _graph.GraphImplementation_getVectorial(self)

    def getBoundingBox(self):
        """getBoundingBox(GraphImplementation self) -> NumericalPoint"""
        return _graph.GraphImplementation_getBoundingBox(self)

    def setBoundingBox(self, *args):
        """
        setBoundingBox(GraphImplementation self, NumericalPoint boundingBox)
        setBoundingBox(GraphImplementation self, Interval boundingBox)
        """
        return _graph.GraphImplementation_setBoundingBox(self, *args)

    def getAutomaticBoundingBox(self):
        """getAutomaticBoundingBox(GraphImplementation self) -> OT::Bool"""
        return _graph.GraphImplementation_getAutomaticBoundingBox(self)

    def setAutomaticBoundingBox(self, *args):
        """setAutomaticBoundingBox(GraphImplementation self, OT::Bool const automaticBoundingBox)"""
        return _graph.GraphImplementation_setAutomaticBoundingBox(self, *args)

    def getLegendPosition(self):
        """getLegendPosition(GraphImplementation self) -> OT::String"""
        return _graph.GraphImplementation_getLegendPosition(self)

    def setLegendPosition(self, *args):
        """setLegendPosition(GraphImplementation self, OT::String const & position)"""
        return _graph.GraphImplementation_setLegendPosition(self, *args)

    def getLegendFontSize(self):
        """getLegendFontSize(GraphImplementation self) -> OT::NumericalScalar"""
        return _graph.GraphImplementation_getLegendFontSize(self)

    def setLegendFontSize(self, *args):
        """setLegendFontSize(GraphImplementation self, OT::NumericalScalar const legendFontSize)"""
        return _graph.GraphImplementation_setLegendFontSize(self, *args)

    def isValidLegendPosition(self, *args):
        """isValidLegendPosition(GraphImplementation self, OT::String const & position) -> OT::Bool"""
        return _graph.GraphImplementation_isValidLegendPosition(self, *args)

    def initializeValidLegendPositions():
        """initializeValidLegendPositions()"""
        return _graph.GraphImplementation_initializeValidLegendPositions()

    if _newclass:initializeValidLegendPositions = staticmethod(initializeValidLegendPositions)
    __swig_getmethods__["initializeValidLegendPositions"] = lambda x: initializeValidLegendPositions
    def GetValidLegendPositions():
        """GetValidLegendPositions() -> Description"""
        return _graph.GraphImplementation_GetValidLegendPositions()

    if _newclass:GetValidLegendPositions = staticmethod(GetValidLegendPositions)
    __swig_getmethods__["GetValidLegendPositions"] = lambda x: GetValidLegendPositions
    def __init__(self, *args): 
        """
        __init__(OT::GraphImplementation self, OT::String const & title="") -> GraphImplementation
        __init__(OT::GraphImplementation self) -> GraphImplementation
        __init__(OT::GraphImplementation self, OT::String const & title, OT::String const & xTitle, OT::String const & yTitle, OT::Bool const showAxes, 
            OT::String const & legendPosition="", OT::NumericalScalar const legendFontSize=OT::ResourceMap::GetAsNumericalScalar("GraphImplementation-DefaultLegendFontSize"), 
            OT::GraphImplementation::LogScale const logScale=NONE) -> GraphImplementation
        __init__(OT::GraphImplementation self, OT::String const & title, OT::String const & xTitle, OT::String const & yTitle, OT::Bool const showAxes, 
            OT::String const & legendPosition="", OT::NumericalScalar const legendFontSize=OT::ResourceMap::GetAsNumericalScalar("GraphImplementation-DefaultLegendFontSize")) -> GraphImplementation
        __init__(OT::GraphImplementation self, OT::String const & title, OT::String const & xTitle, OT::String const & yTitle, OT::Bool const showAxes, 
            OT::String const & legendPosition="") -> GraphImplementation
        __init__(OT::GraphImplementation self, OT::String const & title, OT::String const & xTitle, OT::String const & yTitle, OT::Bool const showAxes) -> GraphImplementation
        __init__(OT::GraphImplementation self, GraphImplementation other) -> GraphImplementation
        """
        this = _graph.new_GraphImplementation(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _graph.delete_GraphImplementation
    __del__ = lambda self : None;
GraphImplementation_swigregister = _graph.GraphImplementation_swigregister
GraphImplementation_swigregister(GraphImplementation)

def GraphImplementation_GetClassName():
  """GraphImplementation_GetClassName() -> OT::String"""
  return _graph.GraphImplementation_GetClassName()
cvar = _graph.cvar

def GraphImplementation_initializeValidLegendPositions():
  """GraphImplementation_initializeValidLegendPositions()"""
  return _graph.GraphImplementation_initializeValidLegendPositions()

def GraphImplementation_GetValidLegendPositions():
  """GraphImplementation_GetValidLegendPositions() -> Description"""
  return _graph.GraphImplementation_GetValidLegendPositions()

class GraphImplementationTypedInterfaceObject(openturns.common.InterfaceObject):
    """Proxy of C++ OT::TypedInterfaceObject<(OT::GraphImplementation)> class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.InterfaceObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, GraphImplementationTypedInterfaceObject, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.InterfaceObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, GraphImplementationTypedInterfaceObject, name)
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """
        __init__(OT::TypedInterfaceObject<(OT::GraphImplementation)> self) -> GraphImplementationTypedInterfaceObject
        __init__(OT::TypedInterfaceObject<(OT::GraphImplementation)> self, GraphImplementationPointer impl) -> GraphImplementationTypedInterfaceObject
        """
        this = _graph.new_GraphImplementationTypedInterfaceObject(*args)
        try: self.this.append(this)
        except: self.this = this
    def getImplementation(self, *args):
        """
        getImplementation(GraphImplementationTypedInterfaceObject self) -> GraphImplementationPointer
        getImplementation(GraphImplementationTypedInterfaceObject self) -> GraphImplementationPointer
        """
        return _graph.GraphImplementationTypedInterfaceObject_getImplementation(self, *args)

    def getImplementationAsPersistentObject(self):
        """getImplementationAsPersistentObject(GraphImplementationTypedInterfaceObject self) -> PersistentObjectPointer"""
        return _graph.GraphImplementationTypedInterfaceObject_getImplementationAsPersistentObject(self)

    def setImplementationAsPersistentObject(self, *args):
        """setImplementationAsPersistentObject(GraphImplementationTypedInterfaceObject self, PersistentObjectPointer obj)"""
        return _graph.GraphImplementationTypedInterfaceObject_setImplementationAsPersistentObject(self, *args)

    def swap(self, *args):
        """swap(GraphImplementationTypedInterfaceObject self, GraphImplementationTypedInterfaceObject other)"""
        return _graph.GraphImplementationTypedInterfaceObject_swap(self, *args)

    def setName(self, *args):
        """setName(GraphImplementationTypedInterfaceObject self, OT::String const & name)"""
        return _graph.GraphImplementationTypedInterfaceObject_setName(self, *args)

    def getName(self):
        """getName(GraphImplementationTypedInterfaceObject self) -> OT::String"""
        return _graph.GraphImplementationTypedInterfaceObject_getName(self)

    def __eq__(self, *args):
        """__eq__(GraphImplementationTypedInterfaceObject self, GraphImplementationTypedInterfaceObject other) -> OT::Bool"""
        return _graph.GraphImplementationTypedInterfaceObject___eq__(self, *args)

    __swig_destroy__ = _graph.delete_GraphImplementationTypedInterfaceObject
    __del__ = lambda self : None;
GraphImplementationTypedInterfaceObject_swigregister = _graph.GraphImplementationTypedInterfaceObject_swigregister
GraphImplementationTypedInterfaceObject_swigregister(GraphImplementationTypedInterfaceObject)

class GraphCollection(_object):
    """Proxy of C++ OT::Collection<(OT::Graph)> class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, GraphCollection, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, GraphCollection, name)
    __swig_destroy__ = _graph.delete_GraphCollection
    __del__ = lambda self : None;
    def clear(self):
        """clear(GraphCollection self)"""
        return _graph.GraphCollection_clear(self)

    def __len__(self):
        """__len__(GraphCollection self) -> OT::UnsignedLong"""
        return _graph.GraphCollection___len__(self)

    def __eq__(self, *args):
        """__eq__(GraphCollection self, GraphCollection rhs) -> OT::Bool"""
        return _graph.GraphCollection___eq__(self, *args)

    def __contains__(self, *args):
        """__contains__(GraphCollection self, Graph val) -> OT::Bool"""
        return _graph.GraphCollection___contains__(self, *args)

    def __getitem__(self, *args):
        """__getitem__(GraphCollection self, OT::UnsignedLong const i) -> Graph"""
        return _graph.GraphCollection___getitem__(self, *args)

    def __setitem__(self, *args):
        """__setitem__(GraphCollection self, OT::UnsignedLong const i, Graph val)"""
        return _graph.GraphCollection___setitem__(self, *args)

    def __delitem__(self, *args):
        """__delitem__(GraphCollection self, OT::UnsignedLong const i)"""
        return _graph.GraphCollection___delitem__(self, *args)

    def at(self, *args):
        """
        at(GraphCollection self, OT::UnsignedLong const i) -> Graph
        at(GraphCollection self, OT::UnsignedLong const i) -> Graph
        """
        return _graph.GraphCollection_at(self, *args)

    def add(self, *args):
        """
        add(GraphCollection self, Graph elt)
        add(GraphCollection self, GraphCollection coll)
        """
        return _graph.GraphCollection_add(self, *args)

    def getSize(self):
        """getSize(GraphCollection self) -> OT::UnsignedLong"""
        return _graph.GraphCollection_getSize(self)

    def resize(self, *args):
        """resize(GraphCollection self, OT::UnsignedLong const newSize)"""
        return _graph.GraphCollection_resize(self, *args)

    def isEmpty(self):
        """isEmpty(GraphCollection self) -> OT::Bool"""
        return _graph.GraphCollection_isEmpty(self)

    def __repr__(self):
        """__repr__(GraphCollection self) -> OT::String"""
        return _graph.GraphCollection___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(GraphCollection self, OT::String const & offset="") -> OT::String
        __str__(GraphCollection self) -> OT::String
        """
        return _graph.GraphCollection___str__(self, offset)

    def __init__(self, *args): 
        """
        __init__(OT::Collection<(OT::Graph)> self) -> GraphCollection
        __init__(OT::Collection<(OT::Graph)> self, OT::UnsignedLong const size) -> GraphCollection
        __init__(OT::Collection<(OT::Graph)> self, OT::UnsignedLong const size, Graph value) -> GraphCollection
        __init__(OT::Collection<(OT::Graph)> self, PyObject * pyObj) -> GraphCollection
        __init__(OT::Collection<(OT::Graph)> self, GraphCollection other) -> GraphCollection
        """
        this = _graph.new_GraphCollection(*args)
        try: self.this.append(this)
        except: self.this = this
GraphCollection_swigregister = _graph.GraphCollection_swigregister
GraphCollection_swigregister(GraphCollection)

class Graph(GraphImplementationTypedInterfaceObject):
    """Proxy of C++ OT::Graph class"""
    __swig_setmethods__ = {}
    for _s in [GraphImplementationTypedInterfaceObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, Graph, name, value)
    __swig_getmethods__ = {}
    for _s in [GraphImplementationTypedInterfaceObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, Graph, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _graph.Graph_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(Graph self) -> OT::String"""
        return _graph.Graph_getClassName(self)

    def __repr__(self):
        """__repr__(Graph self) -> OT::String"""
        return _graph.Graph___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(Graph self, OT::String const & offset="") -> OT::String
        __str__(Graph self) -> OT::String
        """
        return _graph.Graph___str__(self, offset)

    def add(self, *args):
        """
        add(Graph self, Drawable aDrawable)
        add(Graph self, DrawableCollection drawableCollection)
        add(Graph self, Graph graph)
        """
        return _graph.Graph_add(self, *args)

    def erase(self, *args):
        """erase(Graph self, OT::UnsignedLong const i)"""
        return _graph.Graph_erase(self, *args)

    def getDrawables(self):
        """getDrawables(Graph self) -> DrawableCollection"""
        return _graph.Graph_getDrawables(self)

    def setDrawables(self, *args):
        """setDrawables(Graph self, DrawableCollection drawableCollection)"""
        return _graph.Graph_setDrawables(self, *args)

    def getDrawable(self, *args):
        """getDrawable(Graph self, OT::UnsignedLong const index) -> Drawable"""
        return _graph.Graph_getDrawable(self, *args)

    def setDrawable(self, *args):
        """setDrawable(Graph self, Drawable drawable, OT::UnsignedLong const index)"""
        return _graph.Graph_setDrawable(self, *args)

    def getColors(self):
        """getColors(Graph self) -> Description"""
        return _graph.Graph_getColors(self)

    def setColors(self, *args):
        """setColors(Graph self, Description colors)"""
        return _graph.Graph_setColors(self, *args)

    def getLegends(self):
        """getLegends(Graph self) -> Description"""
        return _graph.Graph_getLegends(self)

    def setLegends(self, *args):
        """setLegends(Graph self, Description legends)"""
        return _graph.Graph_setLegends(self, *args)

    def setAxes(self, *args):
        """setAxes(Graph self, OT::Bool const showAxes)"""
        return _graph.Graph_setAxes(self, *args)

    def getAxes(self):
        """getAxes(Graph self) -> OT::Bool"""
        return _graph.Graph_getAxes(self)

    def setLogScale(self, *args):
        """setLogScale(Graph self, OT::Graph::LogScale const logScale)"""
        return _graph.Graph_setLogScale(self, *args)

    def getLogScale(self):
        """getLogScale(Graph self) -> OT::Graph::LogScale"""
        return _graph.Graph_getLogScale(self)

    def setGrid(self, *args):
        """setGrid(Graph self, OT::Bool const showGrid)"""
        return _graph.Graph_setGrid(self, *args)

    def getGrid(self):
        """getGrid(Graph self) -> OT::Bool"""
        return _graph.Graph_getGrid(self)

    def setGridColor(self, *args):
        """setGridColor(Graph self, OT::String const & color)"""
        return _graph.Graph_setGridColor(self, *args)

    def getGridColor(self):
        """getGridColor(Graph self) -> OT::String"""
        return _graph.Graph_getGridColor(self)

    def getXTitle(self):
        """getXTitle(Graph self) -> OT::String"""
        return _graph.Graph_getXTitle(self)

    def setXTitle(self, *args):
        """setXTitle(Graph self, OT::String const & title)"""
        return _graph.Graph_setXTitle(self, *args)

    def getYTitle(self):
        """getYTitle(Graph self) -> OT::String"""
        return _graph.Graph_getYTitle(self)

    def setYTitle(self, *args):
        """setYTitle(Graph self, OT::String const & title)"""
        return _graph.Graph_setYTitle(self, *args)

    def getTitle(self):
        """getTitle(Graph self) -> OT::String"""
        return _graph.Graph_getTitle(self)

    def setTitle(self, *args):
        """setTitle(Graph self, OT::String const & title)"""
        return _graph.Graph_setTitle(self, *args)

    def getPath(self):
        """getPath(Graph self) -> OT::String"""
        return _graph.Graph_getPath(self)

    def getFileName(self):
        """getFileName(Graph self) -> OT::String"""
        return _graph.Graph_getFileName(self)

    def draw(self, *args):
        """
        draw(Graph self, OT::String const & path, OT::String const & file, OT::NumericalScalar const width, 
            OT::NumericalScalar const height, OT::Graph::Format const format=ALL)
        draw(Graph self, OT::String const & path, OT::String const & file, OT::NumericalScalar const width, 
            OT::NumericalScalar const height)
        draw(Graph self, OT::String const & file, OT::NumericalScalar const width=OT::ResourceMap::GetAsUnsignedLong("GraphImplementation-DefaultWidth"), 
            OT::NumericalScalar const height=OT::ResourceMap::GetAsUnsignedLong("GraphImplementation-DefaultHeight"), 
            OT::Graph::Format const format=ALL)
        draw(Graph self, OT::String const & file, OT::NumericalScalar const width=OT::ResourceMap::GetAsUnsignedLong("GraphImplementation-DefaultWidth"), 
            OT::NumericalScalar const height=OT::ResourceMap::GetAsUnsignedLong("GraphImplementation-DefaultHeight"))
        draw(Graph self, OT::String const & file, OT::NumericalScalar const width=OT::ResourceMap::GetAsUnsignedLong("GraphImplementation-DefaultWidth"))
        draw(Graph self, OT::String const & file)
        """
        return _graph.Graph_draw(self, *args)

    def getRCommand(self):
        """getRCommand(Graph self) -> OT::String"""
        return _graph.Graph_getRCommand(self)

    def clean(self):
        """clean(Graph self)"""
        return _graph.Graph_clean(self)

    def getBitmap(self):
        """getBitmap(Graph self) -> OT::String"""
        return _graph.Graph_getBitmap(self)

    def getPostscript(self):
        """getPostscript(Graph self) -> OT::String"""
        return _graph.Graph_getPostscript(self)

    def getVectorial(self):
        """getVectorial(Graph self) -> OT::String"""
        return _graph.Graph_getVectorial(self)

    def getBoundingBox(self):
        """getBoundingBox(Graph self) -> NumericalPoint"""
        return _graph.Graph_getBoundingBox(self)

    def setBoundingBox(self, *args):
        """
        setBoundingBox(Graph self, NumericalPoint boundingBox)
        setBoundingBox(Graph self, Interval boundingBox)
        """
        return _graph.Graph_setBoundingBox(self, *args)

    def getAutomaticBoundingBox(self):
        """getAutomaticBoundingBox(Graph self) -> OT::Bool"""
        return _graph.Graph_getAutomaticBoundingBox(self)

    def setAutomaticBoundingBox(self, *args):
        """setAutomaticBoundingBox(Graph self, OT::Bool const automaticBoundingBox)"""
        return _graph.Graph_setAutomaticBoundingBox(self, *args)

    def getLegendPosition(self):
        """getLegendPosition(Graph self) -> OT::String"""
        return _graph.Graph_getLegendPosition(self)

    def setLegendPosition(self, *args):
        """setLegendPosition(Graph self, OT::String const & position)"""
        return _graph.Graph_setLegendPosition(self, *args)

    def getLegendFontSize(self):
        """getLegendFontSize(Graph self) -> OT::NumericalScalar"""
        return _graph.Graph_getLegendFontSize(self)

    def setLegendFontSize(self, *args):
        """setLegendFontSize(Graph self, OT::NumericalScalar const legendFontSize)"""
        return _graph.Graph_setLegendFontSize(self, *args)

    def isValidLegendPosition(self, *args):
        """isValidLegendPosition(Graph self, OT::String const & position) -> OT::Bool"""
        return _graph.Graph_isValidLegendPosition(self, *args)

    def initializeValidLegendPositions(self):
        """initializeValidLegendPositions(Graph self)"""
        return _graph.Graph_initializeValidLegendPositions(self)

    def getValidLegendPositions(self):
        """getValidLegendPositions(Graph self) -> Description"""
        return _graph.Graph_getValidLegendPositions(self)

    def GetValidLegendPositions():
        """GetValidLegendPositions() -> Description"""
        return _graph.Graph_GetValidLegendPositions()

    if _newclass:GetValidLegendPositions = staticmethod(GetValidLegendPositions)
    __swig_getmethods__["GetValidLegendPositions"] = lambda x: GetValidLegendPositions
    def __init__(self, *args): 
        """
        __init__(OT::Graph self, OT::String const & title="") -> Graph
        __init__(OT::Graph self) -> Graph
        __init__(OT::Graph self, GraphImplementation implementation) -> Graph
        __init__(OT::Graph self, OT::String const & title, OT::String const & xTitle, OT::String const & yTitle, OT::Bool const showAxes, 
            OT::String const & legendPosition="", OT::NumericalScalar const legendFontSize=OT::ResourceMap::GetAsNumericalScalar("GraphImplementation-DefaultLegendFontSize"), 
            OT::Graph::LogScale const logScale=NONE) -> Graph
        __init__(OT::Graph self, OT::String const & title, OT::String const & xTitle, OT::String const & yTitle, OT::Bool const showAxes, 
            OT::String const & legendPosition="", OT::NumericalScalar const legendFontSize=OT::ResourceMap::GetAsNumericalScalar("GraphImplementation-DefaultLegendFontSize")) -> Graph
        __init__(OT::Graph self, OT::String const & title, OT::String const & xTitle, OT::String const & yTitle, OT::Bool const showAxes, 
            OT::String const & legendPosition="") -> Graph
        __init__(OT::Graph self, OT::String const & title, OT::String const & xTitle, OT::String const & yTitle, OT::Bool const showAxes) -> Graph
        __init__(OT::Graph self, Graph other) -> Graph
        __init__(OT::Graph self, PyObject * pyObj) -> Graph
        """
        this = _graph.new_Graph(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _graph.delete_Graph
    __del__ = lambda self : None;
Graph_swigregister = _graph.Graph_swigregister
Graph_swigregister(Graph)

def Graph_GetClassName():
  """Graph_GetClassName() -> OT::String"""
  return _graph.Graph_GetClassName()

def Graph_GetValidLegendPositions():
  """Graph_GetValidLegendPositions() -> Description"""
  return _graph.Graph_GetValidLegendPositions()

class BarPlot(DrawableImplementation):
    """Proxy of C++ OT::BarPlot class"""
    __swig_setmethods__ = {}
    for _s in [DrawableImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, BarPlot, name, value)
    __swig_getmethods__ = {}
    for _s in [DrawableImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, BarPlot, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _graph.BarPlot_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(BarPlot self) -> OT::String"""
        return _graph.BarPlot_getClassName(self)

    def __repr__(self):
        """__repr__(BarPlot self) -> OT::String"""
        return _graph.BarPlot___repr__(self)

    def getOrigin(self):
        """getOrigin(BarPlot self) -> OT::NumericalScalar"""
        return _graph.BarPlot_getOrigin(self)

    def setOrigin(self, *args):
        """setOrigin(BarPlot self, OT::NumericalScalar const origin)"""
        return _graph.BarPlot_setOrigin(self, *args)

    def getBoundingBox(self):
        """getBoundingBox(BarPlot self) -> NumericalPoint"""
        return _graph.BarPlot_getBoundingBox(self)

    def draw(self):
        """draw(BarPlot self) -> OT::String"""
        return _graph.BarPlot_draw(self)

    def __init__(self, *args): 
        """
        __init__(OT::BarPlot self, NumericalSample data, OT::NumericalScalar const origin, OT::String const & legend="") -> BarPlot
        __init__(OT::BarPlot self, NumericalSample data, OT::NumericalScalar const origin) -> BarPlot
        __init__(OT::BarPlot self, NumericalSample data, OT::NumericalScalar const origin, OT::String const & color, 
            OT::String const & fillStyle, OT::String const & lineStyle, OT::UnsignedLong const lineWidth, 
            OT::String const & legend="") -> BarPlot
        __init__(OT::BarPlot self, NumericalSample data, OT::NumericalScalar const origin, OT::String const & color, 
            OT::String const & fillStyle, OT::String const & lineStyle, OT::UnsignedLong const lineWidth) -> BarPlot
        __init__(OT::BarPlot self, NumericalSample data, OT::NumericalScalar const origin, OT::String const & color, 
            OT::String const & fillStyle, OT::String const & lineStyle, OT::String const & legend="") -> BarPlot
        __init__(OT::BarPlot self, NumericalSample data, OT::NumericalScalar const origin, OT::String const & color, 
            OT::String const & fillStyle, OT::String const & lineStyle) -> BarPlot
        __init__(OT::BarPlot self, BarPlot other) -> BarPlot
        """
        this = _graph.new_BarPlot(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _graph.delete_BarPlot
    __del__ = lambda self : None;
BarPlot_swigregister = _graph.BarPlot_swigregister
BarPlot_swigregister(BarPlot)

def BarPlot_GetClassName():
  """BarPlot_GetClassName() -> OT::String"""
  return _graph.BarPlot_GetClassName()

class Cloud(DrawableImplementation):
    """Proxy of C++ OT::Cloud class"""
    __swig_setmethods__ = {}
    for _s in [DrawableImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, Cloud, name, value)
    __swig_getmethods__ = {}
    for _s in [DrawableImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, Cloud, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _graph.Cloud_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(Cloud self) -> OT::String"""
        return _graph.Cloud_getClassName(self)

    def __repr__(self):
        """__repr__(Cloud self) -> OT::String"""
        return _graph.Cloud___repr__(self)

    def draw(self):
        """draw(Cloud self) -> OT::String"""
        return _graph.Cloud_draw(self)

    def __init__(self, *args): 
        """
        __init__(OT::Cloud self, NumericalSample data, OT::String const & legend="") -> Cloud
        __init__(OT::Cloud self, NumericalSample data) -> Cloud
        __init__(OT::Cloud self, NumericalComplexCollection data, OT::String const & legend="") -> Cloud
        __init__(OT::Cloud self, NumericalComplexCollection data) -> Cloud
        __init__(OT::Cloud self, NumericalSample dataX, NumericalSample dataY, OT::String const & legend="") -> Cloud
        __init__(OT::Cloud self, NumericalSample dataX, NumericalSample dataY) -> Cloud
        __init__(OT::Cloud self, NumericalSample data, OT::String const & color, OT::String const & pointStyle, OT::String const & legend="") -> Cloud
        __init__(OT::Cloud self, NumericalSample data, OT::String const & color, OT::String const & pointStyle) -> Cloud
        __init__(OT::Cloud self, Cloud other) -> Cloud
        """
        this = _graph.new_Cloud(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _graph.delete_Cloud
    __del__ = lambda self : None;
Cloud_swigregister = _graph.Cloud_swigregister
Cloud_swigregister(Cloud)

def Cloud_GetClassName():
  """Cloud_GetClassName() -> OT::String"""
  return _graph.Cloud_GetClassName()

class Contour(DrawableImplementation):
    """Proxy of C++ OT::Contour class"""
    __swig_setmethods__ = {}
    for _s in [DrawableImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, Contour, name, value)
    __swig_getmethods__ = {}
    for _s in [DrawableImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, Contour, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _graph.Contour_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(Contour self) -> OT::String"""
        return _graph.Contour_getClassName(self)

    def __repr__(self):
        """__repr__(Contour self) -> OT::String"""
        return _graph.Contour___repr__(self)

    def getX(self):
        """getX(Contour self) -> NumericalSample"""
        return _graph.Contour_getX(self)

    def setX(self, *args):
        """setX(Contour self, NumericalSample x)"""
        return _graph.Contour_setX(self, *args)

    def getY(self):
        """getY(Contour self) -> NumericalSample"""
        return _graph.Contour_getY(self)

    def setY(self, *args):
        """setY(Contour self, NumericalSample y)"""
        return _graph.Contour_setY(self, *args)

    def getLevels(self):
        """getLevels(Contour self) -> NumericalPoint"""
        return _graph.Contour_getLevels(self)

    def setLevels(self, *args):
        """setLevels(Contour self, NumericalPoint levels)"""
        return _graph.Contour_setLevels(self, *args)

    def getLabels(self):
        """getLabels(Contour self) -> Description"""
        return _graph.Contour_getLabels(self)

    def setLabels(self, *args):
        """setLabels(Contour self, Description labels)"""
        return _graph.Contour_setLabels(self, *args)

    def getDrawLabels(self):
        """getDrawLabels(Contour self) -> OT::Bool"""
        return _graph.Contour_getDrawLabels(self)

    def setDrawLabels(self, *args):
        """setDrawLabels(Contour self, OT::Bool const & drawLabels)"""
        return _graph.Contour_setDrawLabels(self, *args)

    def getBoundingBox(self):
        """getBoundingBox(Contour self) -> NumericalPoint"""
        return _graph.Contour_getBoundingBox(self)

    def draw(self):
        """draw(Contour self) -> OT::String"""
        return _graph.Contour_draw(self)

    def buildDefaultLevels(self, *args):
        """
        buildDefaultLevels(Contour self, OT::UnsignedLong const number=OT::ResourceMap::GetAsUnsignedLong( "Contour-DefaultLevelsNumber" ))
        buildDefaultLevels(Contour self)
        """
        return _graph.Contour_buildDefaultLevels(self, *args)

    def buildDefaultLabels(self):
        """buildDefaultLabels(Contour self)"""
        return _graph.Contour_buildDefaultLabels(self)

    def clean(self):
        """clean(Contour self)"""
        return _graph.Contour_clean(self)

    def __init__(self, *args): 
        """
        __init__(OT::Contour self, OT::UnsignedLong const dimX, OT::UnsignedLong const dimY, NumericalSample data, OT::String const & legend="") -> Contour
        __init__(OT::Contour self, OT::UnsignedLong const dimX, OT::UnsignedLong const dimY, NumericalSample data) -> Contour
        __init__(OT::Contour self, NumericalSample x, NumericalSample y, NumericalSample data, NumericalPoint levels, 
            Description labels, OT::Bool const drawLabels=True, OT::String const & legend="") -> Contour
        __init__(OT::Contour self, NumericalSample x, NumericalSample y, NumericalSample data, NumericalPoint levels, 
            Description labels, OT::Bool const drawLabels=True) -> Contour
        __init__(OT::Contour self, NumericalSample x, NumericalSample y, NumericalSample data, NumericalPoint levels, 
            Description labels) -> Contour
        __init__(OT::Contour self, Contour other) -> Contour
        """
        this = _graph.new_Contour(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _graph.delete_Contour
    __del__ = lambda self : None;
Contour_swigregister = _graph.Contour_swigregister
Contour_swigregister(Contour)

def Contour_GetClassName():
  """Contour_GetClassName() -> OT::String"""
  return _graph.Contour_GetClassName()

class Curve(DrawableImplementation):
    """Proxy of C++ OT::Curve class"""
    __swig_setmethods__ = {}
    for _s in [DrawableImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, Curve, name, value)
    __swig_getmethods__ = {}
    for _s in [DrawableImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, Curve, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _graph.Curve_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(Curve self) -> OT::String"""
        return _graph.Curve_getClassName(self)

    def __repr__(self):
        """__repr__(Curve self) -> OT::String"""
        return _graph.Curve___repr__(self)

    def draw(self):
        """draw(Curve self) -> OT::String"""
        return _graph.Curve_draw(self)

    def setShowPoints(self, *args):
        """setShowPoints(Curve self, OT::Bool const showPoints)"""
        return _graph.Curve_setShowPoints(self, *args)

    def getShowPoints(self):
        """getShowPoints(Curve self) -> OT::Bool"""
        return _graph.Curve_getShowPoints(self)

    def __init__(self, *args): 
        """
        __init__(OT::Curve self, OT::String const & legend="") -> Curve
        __init__(OT::Curve self) -> Curve
        __init__(OT::Curve self, NumericalSample data, OT::String const & legend="") -> Curve
        __init__(OT::Curve self, NumericalSample data) -> Curve
        __init__(OT::Curve self, NumericalSample dataX, NumericalSample dataY, OT::String const & legend="") -> Curve
        __init__(OT::Curve self, NumericalSample dataX, NumericalSample dataY) -> Curve
        __init__(OT::Curve self, NumericalSample data, OT::String const & color, OT::String const & lineStyle, OT::UnsignedLong const lineWidth=1, 
            OT::String const & legend="") -> Curve
        __init__(OT::Curve self, NumericalSample data, OT::String const & color, OT::String const & lineStyle, OT::UnsignedLong const lineWidth=1) -> Curve
        __init__(OT::Curve self, NumericalSample data, OT::String const & color, OT::String const & lineStyle) -> Curve
        __init__(OT::Curve self, Curve other) -> Curve
        """
        this = _graph.new_Curve(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _graph.delete_Curve
    __del__ = lambda self : None;
Curve_swigregister = _graph.Curve_swigregister
Curve_swigregister(Curve)

def Curve_GetClassName():
  """Curve_GetClassName() -> OT::String"""
  return _graph.Curve_GetClassName()

class Pairs(DrawableImplementation):
    """Proxy of C++ OT::Pairs class"""
    __swig_setmethods__ = {}
    for _s in [DrawableImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, Pairs, name, value)
    __swig_getmethods__ = {}
    for _s in [DrawableImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, Pairs, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _graph.Pairs_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(Pairs self) -> OT::String"""
        return _graph.Pairs_getClassName(self)

    def __repr__(self):
        """__repr__(Pairs self) -> OT::String"""
        return _graph.Pairs___repr__(self)

    def getData(self):
        """getData(Pairs self) -> NumericalSample"""
        return _graph.Pairs_getData(self)

    def getLabels(self):
        """getLabels(Pairs self) -> Description"""
        return _graph.Pairs_getLabels(self)

    def setLabels(self, *args):
        """setLabels(Pairs self, Description labels)"""
        return _graph.Pairs_setLabels(self, *args)

    def getTitle(self):
        """getTitle(Pairs self) -> OT::String"""
        return _graph.Pairs_getTitle(self)

    def setTitle(self, *args):
        """setTitle(Pairs self, OT::String const & title)"""
        return _graph.Pairs_setTitle(self, *args)

    def draw(self):
        """draw(Pairs self) -> OT::String"""
        return _graph.Pairs_draw(self)

    def buildDefaultLabels(self):
        """buildDefaultLabels(Pairs self)"""
        return _graph.Pairs_buildDefaultLabels(self)

    def clean(self):
        """clean(Pairs self)"""
        return _graph.Pairs_clean(self)

    def __init__(self, *args): 
        """
        __init__(OT::Pairs self, NumericalSample data, OT::String const & title="") -> Pairs
        __init__(OT::Pairs self, NumericalSample data) -> Pairs
        __init__(OT::Pairs self, NumericalSample data, OT::String const & title, Description labels, OT::String const color, 
            OT::String const PointStyle) -> Pairs
        __init__(OT::Pairs self, Pairs other) -> Pairs
        """
        this = _graph.new_Pairs(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _graph.delete_Pairs
    __del__ = lambda self : None;
Pairs_swigregister = _graph.Pairs_swigregister
Pairs_swigregister(Pairs)

def Pairs_GetClassName():
  """Pairs_GetClassName() -> OT::String"""
  return _graph.Pairs_GetClassName()

class Pie(DrawableImplementation):
    """Proxy of C++ OT::Pie class"""
    __swig_setmethods__ = {}
    for _s in [DrawableImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, Pie, name, value)
    __swig_getmethods__ = {}
    for _s in [DrawableImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, Pie, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _graph.Pie_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(Pie self) -> OT::String"""
        return _graph.Pie_getClassName(self)

    def __repr__(self):
        """__repr__(Pie self) -> OT::String"""
        return _graph.Pie___repr__(self)

    def getCenter(self):
        """getCenter(Pie self) -> NumericalPoint"""
        return _graph.Pie_getCenter(self)

    def setCenter(self, *args):
        """setCenter(Pie self, NumericalPoint center)"""
        return _graph.Pie_setCenter(self, *args)

    def getRadius(self):
        """getRadius(Pie self) -> OT::NumericalScalar"""
        return _graph.Pie_getRadius(self)

    def setRadius(self, *args):
        """setRadius(Pie self, OT::NumericalScalar const radius)"""
        return _graph.Pie_setRadius(self, *args)

    def getLabels(self):
        """getLabels(Pie self) -> Description"""
        return _graph.Pie_getLabels(self)

    def setLabels(self, *args):
        """setLabels(Pie self, Description labels)"""
        return _graph.Pie_setLabels(self, *args)

    def getPalette(self):
        """getPalette(Pie self) -> Description"""
        return _graph.Pie_getPalette(self)

    def setPalette(self, *args):
        """setPalette(Pie self, Description palette)"""
        return _graph.Pie_setPalette(self, *args)

    def getBoundingBox(self):
        """getBoundingBox(Pie self) -> NumericalPoint"""
        return _graph.Pie_getBoundingBox(self)

    def draw(self):
        """draw(Pie self) -> OT::String"""
        return _graph.Pie_draw(self)

    def buildDefaultPalette(self):
        """buildDefaultPalette(Pie self)"""
        return _graph.Pie_buildDefaultPalette(self)

    def buildDefaultLabels(self):
        """buildDefaultLabels(Pie self)"""
        return _graph.Pie_buildDefaultLabels(self)

    def IsValidColorPalette(*args):
        """IsValidColorPalette(Description palette) -> OT::Bool"""
        return _graph.Pie_IsValidColorPalette(*args)

    if _newclass:IsValidColorPalette = staticmethod(IsValidColorPalette)
    __swig_getmethods__["IsValidColorPalette"] = lambda x: IsValidColorPalette
    def __init__(self, *args): 
        """
        __init__(OT::Pie self, NumericalPoint data) -> Pie
        __init__(OT::Pie self, NumericalSample data) -> Pie
        __init__(OT::Pie self, NumericalPoint data, Description labels) -> Pie
        __init__(OT::Pie self, NumericalPoint data, Description labels, NumericalPoint center, OT::NumericalScalar const & radius, 
            Description palette) -> Pie
        __init__(OT::Pie self, NumericalSample data, Description labels, NumericalPoint center, OT::NumericalScalar const & radius, 
            Description palette) -> Pie
        __init__(OT::Pie self, Pie other) -> Pie
        """
        this = _graph.new_Pie(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _graph.delete_Pie
    __del__ = lambda self : None;
Pie_swigregister = _graph.Pie_swigregister
Pie_swigregister(Pie)

def Pie_GetClassName():
  """Pie_GetClassName() -> OT::String"""
  return _graph.Pie_GetClassName()

def Pie_IsValidColorPalette(*args):
  """Pie_IsValidColorPalette(Description palette) -> OT::Bool"""
  return _graph.Pie_IsValidColorPalette(*args)

class Polygon(DrawableImplementation):
    """Proxy of C++ OT::Polygon class"""
    __swig_setmethods__ = {}
    for _s in [DrawableImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, Polygon, name, value)
    __swig_getmethods__ = {}
    for _s in [DrawableImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, Polygon, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _graph.Polygon_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(Polygon self) -> OT::String"""
        return _graph.Polygon_getClassName(self)

    def __repr__(self):
        """__repr__(Polygon self) -> OT::String"""
        return _graph.Polygon___repr__(self)

    def draw(self):
        """draw(Polygon self) -> OT::String"""
        return _graph.Polygon_draw(self)

    def setEdgeColor(self, *args):
        """setEdgeColor(Polygon self, OT::String const & edgeColor)"""
        return _graph.Polygon_setEdgeColor(self, *args)

    def getEdgeColor(self):
        """getEdgeColor(Polygon self) -> OT::String"""
        return _graph.Polygon_getEdgeColor(self)

    def __init__(self, *args): 
        """
        __init__(OT::Polygon self, OT::String const & legend="") -> Polygon
        __init__(OT::Polygon self) -> Polygon
        __init__(OT::Polygon self, NumericalSample data, OT::String const & legend="") -> Polygon
        __init__(OT::Polygon self, NumericalSample data) -> Polygon
        __init__(OT::Polygon self, NumericalSample dataX, NumericalSample dataY, OT::String const & legend="") -> Polygon
        __init__(OT::Polygon self, NumericalSample dataX, NumericalSample dataY) -> Polygon
        __init__(OT::Polygon self, NumericalSample data, OT::String const & color, OT::String const & edgeColor, OT::String const & legend="") -> Polygon
        __init__(OT::Polygon self, NumericalSample data, OT::String const & color, OT::String const & edgeColor) -> Polygon
        __init__(OT::Polygon self, Polygon other) -> Polygon
        """
        this = _graph.new_Polygon(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _graph.delete_Polygon
    __del__ = lambda self : None;
Polygon_swigregister = _graph.Polygon_swigregister
Polygon_swigregister(Polygon)

def Polygon_GetClassName():
  """Polygon_GetClassName() -> OT::String"""
  return _graph.Polygon_GetClassName()

class Staircase(DrawableImplementation):
    """Proxy of C++ OT::Staircase class"""
    __swig_setmethods__ = {}
    for _s in [DrawableImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, Staircase, name, value)
    __swig_getmethods__ = {}
    for _s in [DrawableImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, Staircase, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _graph.Staircase_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(Staircase self) -> OT::String"""
        return _graph.Staircase_getClassName(self)

    def __repr__(self):
        """__repr__(Staircase self) -> OT::String"""
        return _graph.Staircase___repr__(self)

    def draw(self):
        """draw(Staircase self) -> OT::String"""
        return _graph.Staircase_draw(self)

    def getPattern(self):
        """getPattern(Staircase self) -> OT::String"""
        return _graph.Staircase_getPattern(self)

    def setPattern(self, *args):
        """setPattern(Staircase self, OT::String const style)"""
        return _graph.Staircase_setPattern(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::Staircase self) -> Staircase
        __init__(OT::Staircase self, NumericalSample data, OT::String const & legend="") -> Staircase
        __init__(OT::Staircase self, NumericalSample data) -> Staircase
        __init__(OT::Staircase self, NumericalSample data, OT::String const & color, OT::String const & lineStyle, OT::UnsignedLong const lineWidth, 
            OT::String const & pattern, OT::String const & legend="") -> Staircase
        __init__(OT::Staircase self, NumericalSample data, OT::String const & color, OT::String const & lineStyle, OT::UnsignedLong const lineWidth, 
            OT::String const & pattern) -> Staircase
        __init__(OT::Staircase self, NumericalSample data, OT::String const & color, OT::String const & lineStyle, OT::String const & pattern, 
            OT::String const & legend="") -> Staircase
        __init__(OT::Staircase self, NumericalSample data, OT::String const & color, OT::String const & lineStyle, OT::String const & pattern) -> Staircase
        __init__(OT::Staircase self, Staircase other) -> Staircase
        """
        this = _graph.new_Staircase(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _graph.delete_Staircase
    __del__ = lambda self : None;
Staircase_swigregister = _graph.Staircase_swigregister
Staircase_swigregister(Staircase)

def Staircase_GetClassName():
  """Staircase_GetClassName() -> OT::String"""
  return _graph.Staircase_GetClassName()

class DrawableImplementationPointer(_object):
    """Proxy of C++ OT::Pointer<(OT::DrawableImplementation)> class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, DrawableImplementationPointer, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, DrawableImplementationPointer, name)
    __swig_setmethods__["ptr_"] = _graph.DrawableImplementationPointer_ptr__set
    __swig_getmethods__["ptr_"] = _graph.DrawableImplementationPointer_ptr__get
    if _newclass:ptr_ = _swig_property(_graph.DrawableImplementationPointer_ptr__get, _graph.DrawableImplementationPointer_ptr__set)
    def __init__(self, *args): 
        """
        __init__(OT::Pointer<(OT::DrawableImplementation)> self) -> DrawableImplementationPointer
        __init__(OT::Pointer<(OT::DrawableImplementation)> self, DrawableImplementation ptr) -> DrawableImplementationPointer
        """
        this = _graph.new_DrawableImplementationPointer(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _graph.delete_DrawableImplementationPointer
    __del__ = lambda self : None;
    def reset(self):
        """reset(DrawableImplementationPointer self)"""
        return _graph.DrawableImplementationPointer_reset(self)

    def __ref__(self, *args):
        """
        __ref__(DrawableImplementationPointer self) -> DrawableImplementation
        __ref__(DrawableImplementationPointer self) -> DrawableImplementation
        """
        return _graph.DrawableImplementationPointer___ref__(self, *args)

    def __deref__(self):
        """__deref__(DrawableImplementationPointer self) -> DrawableImplementation"""
        return _graph.DrawableImplementationPointer___deref__(self)

    def isNull(self):
        """isNull(DrawableImplementationPointer self) -> OT::Bool"""
        return _graph.DrawableImplementationPointer_isNull(self)

    def __nonzero__(self):
        return _graph.DrawableImplementationPointer___nonzero__(self)
    __bool__ = __nonzero__


    def get(self):
        """get(DrawableImplementationPointer self) -> DrawableImplementation"""
        return _graph.DrawableImplementationPointer_get(self)

    def getImplementation(self):
        """getImplementation(DrawableImplementationPointer self) -> OT::Pointer< OT::DrawableImplementation >::pointer_type const &"""
        return _graph.DrawableImplementationPointer_getImplementation(self)

    def unique(self):
        """unique(DrawableImplementationPointer self) -> OT::Bool"""
        return _graph.DrawableImplementationPointer_unique(self)

    def use_count(self):
        """use_count(DrawableImplementationPointer self) -> OT::UnsignedLong"""
        return _graph.DrawableImplementationPointer_use_count(self)

    def swap(self, *args):
        """swap(DrawableImplementationPointer self, DrawableImplementationPointer other)"""
        return _graph.DrawableImplementationPointer_swap(self, *args)

    def GetClassName(self):
        """GetClassName(DrawableImplementationPointer self) -> OT::String"""
        return _graph.DrawableImplementationPointer_GetClassName(self)

    def getClassName(self):
        """getClassName(DrawableImplementationPointer self) -> OT::String"""
        return _graph.DrawableImplementationPointer_getClassName(self)

    def __repr__(self):
        """__repr__(DrawableImplementationPointer self) -> OT::String"""
        return _graph.DrawableImplementationPointer___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(DrawableImplementationPointer self, OT::String const & offset="") -> OT::String
        __str__(DrawableImplementationPointer self) -> OT::String
        """
        return _graph.DrawableImplementationPointer___str__(self, offset)

    def __eq__(self, *args):
        """__eq__(DrawableImplementationPointer self, DrawableImplementation other) -> OT::Bool"""
        return _graph.DrawableImplementationPointer___eq__(self, *args)

    def getPointCode(self, *args):
        """getPointCode(DrawableImplementationPointer self, OT::String const & key) -> OT::UnsignedLong"""
        return _graph.DrawableImplementationPointer_getPointCode(self, *args)

    def IsValidColorCode(self, *args):
        """IsValidColorCode(DrawableImplementationPointer self, OT::String const & key) -> OT::Bool"""
        return _graph.DrawableImplementationPointer_IsValidColorCode(self, *args)

    def IsValidColorName(self, *args):
        """IsValidColorName(DrawableImplementationPointer self, OT::String const & key) -> OT::Bool"""
        return _graph.DrawableImplementationPointer_IsValidColorName(self, *args)

    def IsValidColor(self, *args):
        """IsValidColor(DrawableImplementationPointer self, OT::String const & key) -> OT::Bool"""
        return _graph.DrawableImplementationPointer_IsValidColor(self, *args)

    def IsValidLineStyle(self, *args):
        """IsValidLineStyle(DrawableImplementationPointer self, OT::String const & key) -> OT::Bool"""
        return _graph.DrawableImplementationPointer_IsValidLineStyle(self, *args)

    def IsValidPointStyle(self, *args):
        """IsValidPointStyle(DrawableImplementationPointer self, OT::String const & key) -> OT::Bool"""
        return _graph.DrawableImplementationPointer_IsValidPointStyle(self, *args)

    def IsValidFillStyle(self, *args):
        """IsValidFillStyle(DrawableImplementationPointer self, OT::String const & key) -> OT::Bool"""
        return _graph.DrawableImplementationPointer_IsValidFillStyle(self, *args)

    def IsValidPattern(self, *args):
        """IsValidPattern(DrawableImplementationPointer self, OT::String const & pattern) -> OT::Bool"""
        return _graph.DrawableImplementationPointer_IsValidPattern(self, *args)

    def getLegendName(self):
        """getLegendName(DrawableImplementationPointer self) -> OT::String"""
        return _graph.DrawableImplementationPointer_getLegendName(self)

    def setLegendName(self, *args):
        """setLegendName(DrawableImplementationPointer self, OT::String const & legendName)"""
        return _graph.DrawableImplementationPointer_setLegendName(self, *args)

    def getLegend(self):
        """getLegend(DrawableImplementationPointer self) -> OT::String"""
        return _graph.DrawableImplementationPointer_getLegend(self)

    def setLegend(self, *args):
        """setLegend(DrawableImplementationPointer self, OT::String const & legend)"""
        return _graph.DrawableImplementationPointer_setLegend(self, *args)

    def getData(self):
        """getData(DrawableImplementationPointer self) -> NumericalSample"""
        return _graph.DrawableImplementationPointer_getData(self)

    def getLineStyle(self):
        """getLineStyle(DrawableImplementationPointer self) -> OT::String"""
        return _graph.DrawableImplementationPointer_getLineStyle(self)

    def setLineStyle(self, *args):
        """setLineStyle(DrawableImplementationPointer self, OT::String const & lineStyle)"""
        return _graph.DrawableImplementationPointer_setLineStyle(self, *args)

    def getColor(self):
        """getColor(DrawableImplementationPointer self) -> OT::String"""
        return _graph.DrawableImplementationPointer_getColor(self)

    def getColorCode(self):
        """getColorCode(DrawableImplementationPointer self) -> OT::String"""
        return _graph.DrawableImplementationPointer_getColorCode(self)

    def setColor(self, *args):
        """setColor(DrawableImplementationPointer self, OT::String const & color)"""
        return _graph.DrawableImplementationPointer_setColor(self, *args)

    def getEdgeColor(self):
        """getEdgeColor(DrawableImplementationPointer self) -> OT::String"""
        return _graph.DrawableImplementationPointer_getEdgeColor(self)

    def getPointStyle(self):
        """getPointStyle(DrawableImplementationPointer self) -> OT::String"""
        return _graph.DrawableImplementationPointer_getPointStyle(self)

    def setPointStyle(self, *args):
        """setPointStyle(DrawableImplementationPointer self, OT::String const & pointStyle)"""
        return _graph.DrawableImplementationPointer_setPointStyle(self, *args)

    def getFillStyle(self):
        """getFillStyle(DrawableImplementationPointer self) -> OT::String"""
        return _graph.DrawableImplementationPointer_getFillStyle(self)

    def setFillStyle(self, *args):
        """setFillStyle(DrawableImplementationPointer self, OT::String const & fillStyle)"""
        return _graph.DrawableImplementationPointer_setFillStyle(self, *args)

    def getLineWidth(self):
        """getLineWidth(DrawableImplementationPointer self) -> OT::UnsignedLong"""
        return _graph.DrawableImplementationPointer_getLineWidth(self)

    def setLineWidth(self, *args):
        """setLineWidth(DrawableImplementationPointer self, OT::UnsignedLong const lineWidth)"""
        return _graph.DrawableImplementationPointer_setLineWidth(self, *args)

    def getPattern(self):
        """getPattern(DrawableImplementationPointer self) -> OT::String"""
        return _graph.DrawableImplementationPointer_getPattern(self)

    def setPattern(self, *args):
        """setPattern(DrawableImplementationPointer self, OT::String const style)"""
        return _graph.DrawableImplementationPointer_setPattern(self, *args)

    def setShowPoints(self, *args):
        """setShowPoints(DrawableImplementationPointer self, OT::Bool const showPoints)"""
        return _graph.DrawableImplementationPointer_setShowPoints(self, *args)

    def getShowPoints(self):
        """getShowPoints(DrawableImplementationPointer self) -> OT::Bool"""
        return _graph.DrawableImplementationPointer_getShowPoints(self)

    def getCenter(self):
        """getCenter(DrawableImplementationPointer self) -> NumericalPoint"""
        return _graph.DrawableImplementationPointer_getCenter(self)

    def setCenter(self, *args):
        """setCenter(DrawableImplementationPointer self, NumericalPoint center)"""
        return _graph.DrawableImplementationPointer_setCenter(self, *args)

    def getRadius(self):
        """getRadius(DrawableImplementationPointer self) -> OT::NumericalScalar"""
        return _graph.DrawableImplementationPointer_getRadius(self)

    def setRadius(self, *args):
        """setRadius(DrawableImplementationPointer self, OT::NumericalScalar const radius)"""
        return _graph.DrawableImplementationPointer_setRadius(self, *args)

    def getLabels(self):
        """getLabels(DrawableImplementationPointer self) -> Description"""
        return _graph.DrawableImplementationPointer_getLabels(self)

    def setLabels(self, *args):
        """setLabels(DrawableImplementationPointer self, Description labels)"""
        return _graph.DrawableImplementationPointer_setLabels(self, *args)

    def getPalette(self):
        """getPalette(DrawableImplementationPointer self) -> Description"""
        return _graph.DrawableImplementationPointer_getPalette(self)

    def setPalette(self, *args):
        """setPalette(DrawableImplementationPointer self, Description palette)"""
        return _graph.DrawableImplementationPointer_setPalette(self, *args)

    def getOrigin(self):
        """getOrigin(DrawableImplementationPointer self) -> OT::NumericalScalar"""
        return _graph.DrawableImplementationPointer_getOrigin(self)

    def setOrigin(self, *args):
        """setOrigin(DrawableImplementationPointer self, OT::NumericalScalar const origin)"""
        return _graph.DrawableImplementationPointer_setOrigin(self, *args)

    def getX(self):
        """getX(DrawableImplementationPointer self) -> NumericalSample"""
        return _graph.DrawableImplementationPointer_getX(self)

    def setX(self, *args):
        """setX(DrawableImplementationPointer self, NumericalSample x)"""
        return _graph.DrawableImplementationPointer_setX(self, *args)

    def getY(self):
        """getY(DrawableImplementationPointer self) -> NumericalSample"""
        return _graph.DrawableImplementationPointer_getY(self)

    def setY(self, *args):
        """setY(DrawableImplementationPointer self, NumericalSample y)"""
        return _graph.DrawableImplementationPointer_setY(self, *args)

    def getLevels(self):
        """getLevels(DrawableImplementationPointer self) -> NumericalPoint"""
        return _graph.DrawableImplementationPointer_getLevels(self)

    def setLevels(self, *args):
        """setLevels(DrawableImplementationPointer self, NumericalPoint levels)"""
        return _graph.DrawableImplementationPointer_setLevels(self, *args)

    def getDrawLabels(self):
        """getDrawLabels(DrawableImplementationPointer self) -> OT::Bool"""
        return _graph.DrawableImplementationPointer_getDrawLabels(self)

    def setDrawLabels(self, *args):
        """setDrawLabels(DrawableImplementationPointer self, OT::Bool const & drawLabels)"""
        return _graph.DrawableImplementationPointer_setDrawLabels(self, *args)

    def getBoundingBox(self):
        """getBoundingBox(DrawableImplementationPointer self) -> NumericalPoint"""
        return _graph.DrawableImplementationPointer_getBoundingBox(self)

    def draw(self):
        """draw(DrawableImplementationPointer self) -> OT::String"""
        return _graph.DrawableImplementationPointer_draw(self)

    def clean(self):
        """clean(DrawableImplementationPointer self)"""
        return _graph.DrawableImplementationPointer_clean(self)

    def GetValidColors(self):
        """GetValidColors(DrawableImplementationPointer self) -> Description"""
        return _graph.DrawableImplementationPointer_GetValidColors(self)

    def GetValidLineStyles(self):
        """GetValidLineStyles(DrawableImplementationPointer self) -> Description"""
        return _graph.DrawableImplementationPointer_GetValidLineStyles(self)

    def GetValidFillStyles(self):
        """GetValidFillStyles(DrawableImplementationPointer self) -> Description"""
        return _graph.DrawableImplementationPointer_GetValidFillStyles(self)

    def GetValidPointStyles(self):
        """GetValidPointStyles(DrawableImplementationPointer self) -> Description"""
        return _graph.DrawableImplementationPointer_GetValidPointStyles(self)

    def ConvertFromName(self, *args):
        """ConvertFromName(DrawableImplementationPointer self, OT::String const & name) -> OT::String"""
        return _graph.DrawableImplementationPointer_ConvertFromName(self, *args)

    def ConvertFromRGB(self, *args):
        """
        ConvertFromRGB(DrawableImplementationPointer self, OT::UnsignedLong const red, OT::UnsignedLong const green, OT::UnsignedLong const blue) -> OT::String
        ConvertFromRGB(DrawableImplementationPointer self, OT::NumericalScalar const red, OT::NumericalScalar const green, OT::NumericalScalar const blue) -> OT::String
        """
        return _graph.DrawableImplementationPointer_ConvertFromRGB(self, *args)

    def ConvertFromRGBA(self, *args):
        """
        ConvertFromRGBA(DrawableImplementationPointer self, OT::UnsignedLong const red, OT::UnsignedLong const green, OT::UnsignedLong const blue, 
            OT::UnsignedLong const alpha) -> OT::String
        ConvertFromRGBA(DrawableImplementationPointer self, OT::NumericalScalar const red, OT::NumericalScalar const green, OT::NumericalScalar const blue, 
            OT::NumericalScalar const alpha) -> OT::String
        """
        return _graph.DrawableImplementationPointer_ConvertFromRGBA(self, *args)

    def ConvertFromHSVIntoRGB(self, *args):
        """ConvertFromHSVIntoRGB(DrawableImplementationPointer self, OT::NumericalScalar const hue, OT::NumericalScalar const saturation, OT::NumericalScalar const value) -> NumericalPoint"""
        return _graph.DrawableImplementationPointer_ConvertFromHSVIntoRGB(self, *args)

    def ConvertFromHSV(self, *args):
        """ConvertFromHSV(DrawableImplementationPointer self, OT::NumericalScalar const hue, OT::NumericalScalar const saturation, OT::NumericalScalar const value) -> OT::String"""
        return _graph.DrawableImplementationPointer_ConvertFromHSV(self, *args)

    def ConvertFromHSVA(self, *args):
        """
        ConvertFromHSVA(DrawableImplementationPointer self, OT::NumericalScalar const hue, OT::NumericalScalar const saturation, OT::NumericalScalar const value, 
            OT::NumericalScalar const alpha) -> OT::String
        """
        return _graph.DrawableImplementationPointer_ConvertFromHSVA(self, *args)

    def BuildDefaultPalette(self, *args):
        """BuildDefaultPalette(DrawableImplementationPointer self, OT::UnsignedLong const size) -> Description"""
        return _graph.DrawableImplementationPointer_BuildDefaultPalette(self, *args)

    def Is(self, *args):
        """Is(DrawableImplementationPointer self, PersistentObject other) -> OT::Bool"""
        return _graph.DrawableImplementationPointer_Is(self, *args)

    def getId(self):
        """getId(DrawableImplementationPointer self) -> OT::Id"""
        return _graph.DrawableImplementationPointer_getId(self)

    def setShadowedId(self, *args):
        """setShadowedId(DrawableImplementationPointer self, OT::Id id)"""
        return _graph.DrawableImplementationPointer_setShadowedId(self, *args)

    def getShadowedId(self):
        """getShadowedId(DrawableImplementationPointer self) -> OT::Id"""
        return _graph.DrawableImplementationPointer_getShadowedId(self)

    def setVisibility(self, *args):
        """setVisibility(DrawableImplementationPointer self, OT::Bool visible)"""
        return _graph.DrawableImplementationPointer_setVisibility(self, *args)

    def getVisibility(self):
        """getVisibility(DrawableImplementationPointer self) -> OT::Bool"""
        return _graph.DrawableImplementationPointer_getVisibility(self)

    def hasName(self):
        """hasName(DrawableImplementationPointer self) -> OT::Bool"""
        return _graph.DrawableImplementationPointer_hasName(self)

    def hasVisibleName(self):
        """hasVisibleName(DrawableImplementationPointer self) -> OT::Bool"""
        return _graph.DrawableImplementationPointer_hasVisibleName(self)

    def getName(self):
        """getName(DrawableImplementationPointer self) -> OT::String"""
        return _graph.DrawableImplementationPointer_getName(self)

    def setName(self, *args):
        """setName(DrawableImplementationPointer self, OT::String const & name)"""
        return _graph.DrawableImplementationPointer_setName(self, *args)

DrawableImplementationPointer_swigregister = _graph.DrawableImplementationPointer_swigregister
DrawableImplementationPointer_swigregister(DrawableImplementationPointer)

class GraphImplementationPointer(_object):
    """Proxy of C++ OT::Pointer<(OT::GraphImplementation)> class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, GraphImplementationPointer, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, GraphImplementationPointer, name)
    __swig_setmethods__["ptr_"] = _graph.GraphImplementationPointer_ptr__set
    __swig_getmethods__["ptr_"] = _graph.GraphImplementationPointer_ptr__get
    if _newclass:ptr_ = _swig_property(_graph.GraphImplementationPointer_ptr__get, _graph.GraphImplementationPointer_ptr__set)
    def __init__(self, *args): 
        """
        __init__(OT::Pointer<(OT::GraphImplementation)> self) -> GraphImplementationPointer
        __init__(OT::Pointer<(OT::GraphImplementation)> self, GraphImplementation ptr) -> GraphImplementationPointer
        """
        this = _graph.new_GraphImplementationPointer(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _graph.delete_GraphImplementationPointer
    __del__ = lambda self : None;
    def reset(self):
        """reset(GraphImplementationPointer self)"""
        return _graph.GraphImplementationPointer_reset(self)

    def __ref__(self, *args):
        """
        __ref__(GraphImplementationPointer self) -> GraphImplementation
        __ref__(GraphImplementationPointer self) -> GraphImplementation
        """
        return _graph.GraphImplementationPointer___ref__(self, *args)

    def __deref__(self):
        """__deref__(GraphImplementationPointer self) -> GraphImplementation"""
        return _graph.GraphImplementationPointer___deref__(self)

    def isNull(self):
        """isNull(GraphImplementationPointer self) -> OT::Bool"""
        return _graph.GraphImplementationPointer_isNull(self)

    def __nonzero__(self):
        return _graph.GraphImplementationPointer___nonzero__(self)
    __bool__ = __nonzero__


    def get(self):
        """get(GraphImplementationPointer self) -> GraphImplementation"""
        return _graph.GraphImplementationPointer_get(self)

    def getImplementation(self):
        """getImplementation(GraphImplementationPointer self) -> OT::Pointer< OT::GraphImplementation >::pointer_type const &"""
        return _graph.GraphImplementationPointer_getImplementation(self)

    def unique(self):
        """unique(GraphImplementationPointer self) -> OT::Bool"""
        return _graph.GraphImplementationPointer_unique(self)

    def use_count(self):
        """use_count(GraphImplementationPointer self) -> OT::UnsignedLong"""
        return _graph.GraphImplementationPointer_use_count(self)

    def swap(self, *args):
        """swap(GraphImplementationPointer self, GraphImplementationPointer other)"""
        return _graph.GraphImplementationPointer_swap(self, *args)

    def GetClassName(self):
        """GetClassName(GraphImplementationPointer self) -> OT::String"""
        return _graph.GraphImplementationPointer_GetClassName(self)

    def getClassName(self):
        """getClassName(GraphImplementationPointer self) -> OT::String"""
        return _graph.GraphImplementationPointer_getClassName(self)

    __swig_setmethods__["ValidLegendPositions"] = _graph.GraphImplementationPointer_ValidLegendPositions_set
    __swig_getmethods__["ValidLegendPositions"] = _graph.GraphImplementationPointer_ValidLegendPositions_get
    if _newclass:ValidLegendPositions = _swig_property(_graph.GraphImplementationPointer_ValidLegendPositions_get, _graph.GraphImplementationPointer_ValidLegendPositions_set)
    __swig_setmethods__["IsFirstInitialization"] = _graph.GraphImplementationPointer_IsFirstInitialization_set
    __swig_getmethods__["IsFirstInitialization"] = _graph.GraphImplementationPointer_IsFirstInitialization_get
    if _newclass:IsFirstInitialization = _swig_property(_graph.GraphImplementationPointer_IsFirstInitialization_get, _graph.GraphImplementationPointer_IsFirstInitialization_set)
    def __repr__(self):
        """__repr__(GraphImplementationPointer self) -> OT::String"""
        return _graph.GraphImplementationPointer___repr__(self)

    def add(self, *args):
        """
        add(GraphImplementationPointer self, Drawable aDrawable)
        add(GraphImplementationPointer self, DrawableCollection drawableCollection)
        add(GraphImplementationPointer self, GraphImplementation graphImplementation)
        """
        return _graph.GraphImplementationPointer_add(self, *args)

    def erase(self, *args):
        """erase(GraphImplementationPointer self, OT::UnsignedLong const i)"""
        return _graph.GraphImplementationPointer_erase(self, *args)

    def getDrawables(self):
        """getDrawables(GraphImplementationPointer self) -> DrawableCollection"""
        return _graph.GraphImplementationPointer_getDrawables(self)

    def setDrawables(self, *args):
        """setDrawables(GraphImplementationPointer self, DrawableCollection drawableCollection)"""
        return _graph.GraphImplementationPointer_setDrawables(self, *args)

    def getDrawable(self, *args):
        """getDrawable(GraphImplementationPointer self, OT::UnsignedLong const index) -> Drawable"""
        return _graph.GraphImplementationPointer_getDrawable(self, *args)

    def setDrawable(self, *args):
        """setDrawable(GraphImplementationPointer self, Drawable drawable, OT::UnsignedLong const index)"""
        return _graph.GraphImplementationPointer_setDrawable(self, *args)

    def getColors(self):
        """getColors(GraphImplementationPointer self) -> Description"""
        return _graph.GraphImplementationPointer_getColors(self)

    def setColors(self, *args):
        """setColors(GraphImplementationPointer self, Description colors)"""
        return _graph.GraphImplementationPointer_setColors(self, *args)

    def getLegends(self):
        """getLegends(GraphImplementationPointer self) -> Description"""
        return _graph.GraphImplementationPointer_getLegends(self)

    def setLegends(self, *args):
        """setLegends(GraphImplementationPointer self, Description legends)"""
        return _graph.GraphImplementationPointer_setLegends(self, *args)

    def setAxes(self, *args):
        """setAxes(GraphImplementationPointer self, OT::Bool const showAxes)"""
        return _graph.GraphImplementationPointer_setAxes(self, *args)

    def getAxes(self):
        """getAxes(GraphImplementationPointer self) -> OT::Bool"""
        return _graph.GraphImplementationPointer_getAxes(self)

    def setLogScale(self, *args):
        """setLogScale(GraphImplementationPointer self, OT::GraphImplementation::LogScale const logScale)"""
        return _graph.GraphImplementationPointer_setLogScale(self, *args)

    def getLogScale(self):
        """getLogScale(GraphImplementationPointer self) -> OT::GraphImplementation::LogScale"""
        return _graph.GraphImplementationPointer_getLogScale(self)

    def setGrid(self, *args):
        """setGrid(GraphImplementationPointer self, OT::Bool const showGrid)"""
        return _graph.GraphImplementationPointer_setGrid(self, *args)

    def getGrid(self):
        """getGrid(GraphImplementationPointer self) -> OT::Bool"""
        return _graph.GraphImplementationPointer_getGrid(self)

    def setGridColor(self, *args):
        """setGridColor(GraphImplementationPointer self, OT::String const & color)"""
        return _graph.GraphImplementationPointer_setGridColor(self, *args)

    def getGridColor(self):
        """getGridColor(GraphImplementationPointer self) -> OT::String"""
        return _graph.GraphImplementationPointer_getGridColor(self)

    def getXTitle(self):
        """getXTitle(GraphImplementationPointer self) -> OT::String"""
        return _graph.GraphImplementationPointer_getXTitle(self)

    def setXTitle(self, *args):
        """setXTitle(GraphImplementationPointer self, OT::String const & title)"""
        return _graph.GraphImplementationPointer_setXTitle(self, *args)

    def getYTitle(self):
        """getYTitle(GraphImplementationPointer self) -> OT::String"""
        return _graph.GraphImplementationPointer_getYTitle(self)

    def setYTitle(self, *args):
        """setYTitle(GraphImplementationPointer self, OT::String const & title)"""
        return _graph.GraphImplementationPointer_setYTitle(self, *args)

    def getTitle(self):
        """getTitle(GraphImplementationPointer self) -> OT::String"""
        return _graph.GraphImplementationPointer_getTitle(self)

    def setTitle(self, *args):
        """setTitle(GraphImplementationPointer self, OT::String const & title)"""
        return _graph.GraphImplementationPointer_setTitle(self, *args)

    def getPath(self):
        """getPath(GraphImplementationPointer self) -> OT::String"""
        return _graph.GraphImplementationPointer_getPath(self)

    def getFileName(self):
        """getFileName(GraphImplementationPointer self) -> OT::String"""
        return _graph.GraphImplementationPointer_getFileName(self)

    def draw(self, *args):
        """
        draw(GraphImplementationPointer self, OT::String const & path, OT::String const & file, OT::NumericalScalar const width, 
            OT::NumericalScalar const height, OT::GraphImplementation::Format const format=ALL)
        draw(GraphImplementationPointer self, OT::String const & path, OT::String const & file, OT::NumericalScalar const width, 
            OT::NumericalScalar const height)
        draw(GraphImplementationPointer self, OT::String const & file, OT::NumericalScalar const width=OT::ResourceMap::GetAsUnsignedLong("GraphImplementation-DefaultWidth"), 
            OT::NumericalScalar const height=OT::ResourceMap::GetAsUnsignedLong("GraphImplementation-DefaultHeight"), 
            OT::GraphImplementation::Format const format=ALL)
        draw(GraphImplementationPointer self, OT::String const & file, OT::NumericalScalar const width=OT::ResourceMap::GetAsUnsignedLong("GraphImplementation-DefaultWidth"), 
            OT::NumericalScalar const height=OT::ResourceMap::GetAsUnsignedLong("GraphImplementation-DefaultHeight"))
        draw(GraphImplementationPointer self, OT::String const & file, OT::NumericalScalar const width=OT::ResourceMap::GetAsUnsignedLong("GraphImplementation-DefaultWidth"))
        draw(GraphImplementationPointer self, OT::String const & file)
        """
        return _graph.GraphImplementationPointer_draw(self, *args)

    def getRCommand(self):
        """getRCommand(GraphImplementationPointer self) -> OT::String"""
        return _graph.GraphImplementationPointer_getRCommand(self)

    def clean(self):
        """clean(GraphImplementationPointer self)"""
        return _graph.GraphImplementationPointer_clean(self)

    def getBitmap(self):
        """getBitmap(GraphImplementationPointer self) -> OT::String"""
        return _graph.GraphImplementationPointer_getBitmap(self)

    def getPostscript(self):
        """getPostscript(GraphImplementationPointer self) -> OT::String"""
        return _graph.GraphImplementationPointer_getPostscript(self)

    def getPDF(self):
        """getPDF(GraphImplementationPointer self) -> OT::String"""
        return _graph.GraphImplementationPointer_getPDF(self)

    def getVectorial(self):
        """getVectorial(GraphImplementationPointer self) -> OT::String"""
        return _graph.GraphImplementationPointer_getVectorial(self)

    def getBoundingBox(self):
        """getBoundingBox(GraphImplementationPointer self) -> NumericalPoint"""
        return _graph.GraphImplementationPointer_getBoundingBox(self)

    def setBoundingBox(self, *args):
        """
        setBoundingBox(GraphImplementationPointer self, NumericalPoint boundingBox)
        setBoundingBox(GraphImplementationPointer self, Interval boundingBox)
        """
        return _graph.GraphImplementationPointer_setBoundingBox(self, *args)

    def getAutomaticBoundingBox(self):
        """getAutomaticBoundingBox(GraphImplementationPointer self) -> OT::Bool"""
        return _graph.GraphImplementationPointer_getAutomaticBoundingBox(self)

    def setAutomaticBoundingBox(self, *args):
        """setAutomaticBoundingBox(GraphImplementationPointer self, OT::Bool const automaticBoundingBox)"""
        return _graph.GraphImplementationPointer_setAutomaticBoundingBox(self, *args)

    def getLegendPosition(self):
        """getLegendPosition(GraphImplementationPointer self) -> OT::String"""
        return _graph.GraphImplementationPointer_getLegendPosition(self)

    def setLegendPosition(self, *args):
        """setLegendPosition(GraphImplementationPointer self, OT::String const & position)"""
        return _graph.GraphImplementationPointer_setLegendPosition(self, *args)

    def getLegendFontSize(self):
        """getLegendFontSize(GraphImplementationPointer self) -> OT::NumericalScalar"""
        return _graph.GraphImplementationPointer_getLegendFontSize(self)

    def setLegendFontSize(self, *args):
        """setLegendFontSize(GraphImplementationPointer self, OT::NumericalScalar const legendFontSize)"""
        return _graph.GraphImplementationPointer_setLegendFontSize(self, *args)

    def isValidLegendPosition(self, *args):
        """isValidLegendPosition(GraphImplementationPointer self, OT::String const & position) -> OT::Bool"""
        return _graph.GraphImplementationPointer_isValidLegendPosition(self, *args)

    def initializeValidLegendPositions(self):
        """initializeValidLegendPositions(GraphImplementationPointer self)"""
        return _graph.GraphImplementationPointer_initializeValidLegendPositions(self)

    def GetValidLegendPositions(self):
        """GetValidLegendPositions(GraphImplementationPointer self) -> Description"""
        return _graph.GraphImplementationPointer_GetValidLegendPositions(self)

    def __eq__(self, *args):
        """__eq__(GraphImplementationPointer self, PersistentObject other) -> OT::Bool"""
        return _graph.GraphImplementationPointer___eq__(self, *args)

    def Is(self, *args):
        """Is(GraphImplementationPointer self, PersistentObject other) -> OT::Bool"""
        return _graph.GraphImplementationPointer_Is(self, *args)

    def __str__(self, offset=""):
        """
        __str__(GraphImplementationPointer self, OT::String const & offset="") -> OT::String
        __str__(GraphImplementationPointer self) -> OT::String
        """
        return _graph.GraphImplementationPointer___str__(self, offset)

    def getId(self):
        """getId(GraphImplementationPointer self) -> OT::Id"""
        return _graph.GraphImplementationPointer_getId(self)

    def setShadowedId(self, *args):
        """setShadowedId(GraphImplementationPointer self, OT::Id id)"""
        return _graph.GraphImplementationPointer_setShadowedId(self, *args)

    def getShadowedId(self):
        """getShadowedId(GraphImplementationPointer self) -> OT::Id"""
        return _graph.GraphImplementationPointer_getShadowedId(self)

    def setVisibility(self, *args):
        """setVisibility(GraphImplementationPointer self, OT::Bool visible)"""
        return _graph.GraphImplementationPointer_setVisibility(self, *args)

    def getVisibility(self):
        """getVisibility(GraphImplementationPointer self) -> OT::Bool"""
        return _graph.GraphImplementationPointer_getVisibility(self)

    def hasName(self):
        """hasName(GraphImplementationPointer self) -> OT::Bool"""
        return _graph.GraphImplementationPointer_hasName(self)

    def hasVisibleName(self):
        """hasVisibleName(GraphImplementationPointer self) -> OT::Bool"""
        return _graph.GraphImplementationPointer_hasVisibleName(self)

    def getName(self):
        """getName(GraphImplementationPointer self) -> OT::String"""
        return _graph.GraphImplementationPointer_getName(self)

    def setName(self, *args):
        """setName(GraphImplementationPointer self, OT::String const & name)"""
        return _graph.GraphImplementationPointer_setName(self, *args)

GraphImplementationPointer_swigregister = _graph.GraphImplementationPointer_swigregister
GraphImplementationPointer_swigregister(GraphImplementationPointer)

# This file is compatible with both classic and new-style classes.