This file is indexed.

/usr/include/palabos/offLattice/triangularSurfaceMesh.hh is in libplb-dev 1.5~r1+repack1-2build2.

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
/* This file is part of the Palabos library.
 *
 * Copyright (C) 2011-2015 FlowKit Sarl
 * Route d'Oron 2
 * 1010 Lausanne, Switzerland
 * E-mail contact: contact@flowkit.com
 *
 * The most recent release of Palabos can be downloaded at 
 * <http://www.palabos.org/>
 *
 * The library Palabos is free software: you can redistribute it and/or
 * modify it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * The library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

/* Main author: Dimitrios Kontaxakis */

#ifndef TRIANGULAR_SURFACE_MESH_HH
#define TRIANGULAR_SURFACE_MESH_HH

#include <algorithm>
#include <limits>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "offLattice/triangularSurfaceMesh.h"
#include "offLattice/triangleSet.h"
#include "latticeBoltzmann/geometricOperationTemplates.h"
#include "core/globalDefs.h"
#include "core/plbDebug.h"
#include "parallelism/mpiManager.h"
#include "core/util.h"
#include "io/parallelIO.h"

#define FPEQUAL_ABS(x, y, eps) (std::fabs((x)-(y)) <= (eps)) // Macro definition for the function
                                                             // util::fpequal_abs<T>(T x, T y, T eps)

namespace plb {

template<typename T>
const T TriangularSurfaceMesh<T>::eps0 = std::numeric_limits<T>::epsilon();

template<typename T>
const T TriangularSurfaceMesh<T>::eps1 =
        (sizeof(T) == sizeof(float)) ?
             std::numeric_limits<float>::epsilon() :
             (T) 100.0 * std::numeric_limits<T>::epsilon();

template<typename T>
TriangularSurfaceMesh<T>::TriangularSurfaceMesh (
            std::vector<Array<T,3> >& vertexList_,
            std::vector<plint>& emanatingEdgeList_,
            std::vector<Edge>& edgeList_,
            plint numVertices_ )
      : vertexList(&vertexList_),
        emanatingEdgeList(&emanatingEdgeList_),
        edgeList(&edgeList_),
        numTriangles((plint)edges().size()/(plint)3),
        numVertices(numVertices_>=0 ? numVertices_ : ( (plint)vertices().size() ) )
{
    avoidIntegerPositions();
}

template<typename T>
void TriangularSurfaceMesh<T>::replaceVertex(plint iVertex, Array<T,3> const& newPosition)
{
    PLB_PRECONDITION( iVertex<getNumVertices() );
    (*vertexList)[iVertex] = newPosition;
    // avoidIntegerPosition(iVertex);
}

template<typename T>
void TriangularSurfaceMesh<T>::resetVertices(Array<T,3> const& defaultVertex)
{
    for (plint iVertex=0; iVertex<getNumVertices(); ++iVertex) {
        vertices()[iVertex] = defaultVertex;
    }
}

template<typename T>
inline void TriangularSurfaceMesh<T>::assertVertex(Array<T,3> const& vertex) const
{
#ifdef PLB_DEBUG
    if (global::IOpolicy().stlFilesHaveLowerBound()) {
        double bound = global::IOpolicy().getLowerBoundForStlFiles();
        PLB_ASSERT( !(vertex[0]<bound && vertex[1]<bound && vertex[2]<bound) );
    }
#endif // PLB_DEBUG
}

template<typename T>
inline Array<T,3> const& TriangularSurfaceMesh<T>::getVertex (
        plint iTriangle, int localVertex) const
{
    PLB_ASSERT(iTriangle >= 0 && iTriangle < numTriangles &&
               (localVertex == 0 || localVertex == 1 || localVertex == 2));
    Array<T,3> const& vertex (
            vertices()[ edges()[ 3*iTriangle + ((localVertex == 0) ? 2 : localVertex-1) ].pv ] );
    assertVertex(vertex);
    return vertex;
}

template<typename T>
inline Array<T,3>& TriangularSurfaceMesh<T>::getVertex (
        plint iTriangle, int localVertex )
{
    PLB_ASSERT(iTriangle >= 0 && iTriangle < numTriangles &&
               (localVertex == 0 || localVertex == 1 || localVertex == 2));
    Array<T,3>& vertex (
            vertices()[ edges()[ 3*iTriangle + ((localVertex == 0) ? 2 : localVertex-1) ].pv ] );
    assertVertex(vertex);
    return vertex;
}

template<typename T>
bool TriangularSurfaceMesh<T>::isValidVertex (
        plint iTriangle, int localVertex) const
{
    PLB_ASSERT(iTriangle >= 0 && iTriangle < numTriangles &&
               (localVertex == 0 || localVertex == 1 || localVertex == 2));
    if (global::IOpolicy().stlFilesHaveLowerBound()) {
        double bound = global::IOpolicy().getLowerBoundForStlFiles();
        Array<T,3> const& vertex (
                vertices()[ edges()[ 3*iTriangle + ((localVertex == 0) ? 2 : localVertex-1) ].pv ] );
        return !(vertex[0]<bound && vertex[1]<bound && vertex[2]<bound);
    }
    else {
        return true;
    }
}

template<typename T>
inline Array<T,3> const& TriangularSurfaceMesh<T>::getVertex (
        plint iVertex) const
{
    PLB_ASSERT(iVertex >= 0 && iVertex < numVertices);
    Array<T,3> const& vertex(vertices()[iVertex]);
    assertVertex(vertex);
    return vertex;
}

template<typename T>
inline Array<T,3>& TriangularSurfaceMesh<T>::getVertex (
        plint iVertex)
{
    PLB_ASSERT(iVertex >= 0 && iVertex < numVertices);
    Array<T,3>& vertex(vertices()[iVertex]);
    assertVertex(vertex);
    return vertex;
}

template<typename T>
inline bool TriangularSurfaceMesh<T>::isValidVertex (
        plint iVertex) const
{
    PLB_ASSERT(iVertex >= 0 && iVertex < numVertices);
    if (global::IOpolicy().stlFilesHaveLowerBound()) {
        Array<T,3> const& vertex(vertices()[iVertex]);
        double bound = global::IOpolicy().getLowerBoundForStlFiles();
        return !(vertex[0]<bound && vertex[1]<bound && vertex[2]<bound);
    }
    else {
        return true;
    }
}

template<typename T>
void TriangularSurfaceMesh<T>::computeBoundingBox (
        Array<T,2>& xRange, Array<T,2>& yRange, Array<T,2>& zRange ) const
{
    T maxVal = std::numeric_limits<T>::max();
    xRange = Array<T,2>(maxVal, -maxVal);
    yRange = Array<T,2>(maxVal, -maxVal);
    zRange = Array<T,2>(maxVal, -maxVal);
    for (plint iVertex=0; iVertex<getNumVertices(); ++iVertex) {
        Array<T,3> const& vertex = getVertex(iVertex);
        xRange[0] = std::min(xRange[0], vertex[0]);
        xRange[1] = std::max(xRange[1], vertex[0]);
        yRange[0] = std::min(yRange[0], vertex[1]);
        yRange[1] = std::max(yRange[1], vertex[1]);
        zRange[0] = std::min(zRange[0], vertex[2]);
        zRange[1] = std::max(zRange[1], vertex[2]);
    }
}

template<typename T>
void TriangularSurfaceMesh<T>::translate(Array<T,3> const& vector)
{
    if (util::fpequal(norm(vector), T(), eps0))
        return;

    for (plint i = 0; i < numVertices; i++)
        getVertex(i) += vector;
}

template<typename T>
void TriangularSurfaceMesh<T>::scale(T alpha)
{

    PLB_ASSERT(! util::fpequal(alpha, T(), eps0));
    if (util::fpequal(alpha, (T) 1.0, eps0))
        return;

    for (plint i = 0; i < numVertices; i++)
        getVertex(i) *= alpha;
}

template<typename T>
void TriangularSurfaceMesh<T>::rotate(T phi, T theta, T psi)
{
    static const T pi = std::acos((T) -1.0);

    PLB_ASSERT((theta > T() || util::fpequal(theta, T(), eps0)) &&
               (theta < pi  || util::fpequal(theta, pi, eps0)));

    T a[3][3];
    a[0][0] =  (T) 1.0;
    a[0][1] =  (T) 0.0;
    a[0][2] =  (T) 0.0;
    a[1][0] =  (T) 0.0;
    a[1][1] =  std::cos(theta);
    a[1][2] = -std::sin(theta);
    a[2][0] =  (T) 0.0;
    a[2][1] =  std::sin(theta);
    a[2][2] =  std::cos(theta);

    T b[3][3];
    b[0][0] =  std::cos(phi);
    b[0][1] = -std::sin(phi);
    b[0][2] =  (T) 0.0;
    b[1][0] =  std::sin(phi);
    b[1][1] =  std::cos(phi);
    b[1][2] =  (T) 0.0;
    b[2][0] =  (T) 0.0;
    b[2][1] =  (T) 0.0;
    b[2][2] =  (T) 1.0;

    T c[3][3];
    for (int i = 0; i < 3; i++) {
        for (int j = 0; j < 3; j++) {
            c[i][j] = (T) 0.0;
            for (int k = 0; k < 3; k++) {
                c[i][j] += a[i][k]*b[k][j];
            }
        }
    }

    b[0][0] =  std::cos(psi);
    b[0][1] = -std::sin(psi);
    b[0][2] =  (T) 0.0;
    b[1][0] =  std::sin(psi);
    b[1][1] =  std::cos(psi);
    b[1][2] =  (T) 0.0;
    b[2][0] =  (T) 0.0;
    b[2][1] =  (T) 0.0;
    b[2][2] =  (T) 1.0;

    for (int i = 0; i < 3; i++) {
        for (int j = 0; j < 3; j++) {
            a[i][j] = (T) 0.0;
            for (int k = 0; k < 3; k++) {
                a[i][j] += b[i][k]*c[k][j];
            }
        }
    }

    for (plint iVertex = 0; iVertex < numVertices; iVertex++) {
        Array<T,3> x = getVertex(iVertex);
        for (int i = 0; i < 3; i++) {
            getVertex(iVertex)[i] = (T) 0.0;
            for (int j = 0; j < 3; j++) {
                getVertex(iVertex)[i] += a[i][j]*x[j];
            }
        }
    }
}

template<typename T>
void TriangularSurfaceMesh<T>::smooth(plint maxiter, T relax, bool isMeasureWeighted)
{
    PLB_ASSERT(maxiter >= 0);
    PLB_ASSERT((relax > (T) 0.0 || std::fabs(relax) <= eps0) &&
               (relax < (T) 1.0 || std::fabs(relax - 1.0) <= eps0));

    if (maxiter <= 0)
        return;

    std::vector<Array<T,3> > *bp0;
    bp0 = vertexList;

    std::vector<Array<T,3> > buf;
    buf.resize(numVertices);

    std::vector<Array<T,3> > *bp1;
    bp1 = &buf;

    if (isMeasureWeighted) {
        for (plint iter = 0; iter < maxiter; iter++) {
            for (plint iVertex = 0; iVertex < numVertices; iVertex++) {
                Array<T,3> iVertexPos = (*bp0)[iVertex];
                std::vector<plint> neighborVertexIds = getNeighborVertexIds(iVertex);

                if (isInteriorVertex(iVertex)) {
                    pluint sizeIds = neighborVertexIds.size();
                    T area = (T) 0.0;
                    Array<T,3> tmp((T) 0.0, (T) 0.0, (T) 0.0);
                    for (pluint i = 0; i < sizeIds; i++) {
                        plint jVertex = neighborVertexIds[i];
                        plint kVertex = (i + 1 < sizeIds) ? neighborVertexIds[i + 1] : neighborVertexIds[0];

                        Array<T,3> jVertexPos = (*bp0)[jVertex];
                        Array<T,3> kVertexPos = (*bp0)[kVertex];

                        Array<T,3> middleVertexPos = (iVertexPos + jVertexPos + kVertexPos) / (T) 3.0;

                        Array<T,3> eij = jVertexPos - iVertexPos;
                        Array<T,3> eik = kVertexPos - iVertexPos;
                        Array<T,3> n;
                        crossProduct(eij, eik, n);
                        T locArea = (T) 0.5 * norm(n);

                        area += locArea;
                        tmp += middleVertexPos * locArea;
                    }
                    (*bp1)[iVertex] = ((T) 1.0 - relax) * (*bp0)[iVertex] + relax * tmp / area;
                } else {
                    plint jVertex = -1, kVertex = -1;
                    int counter = 0;
                    for (pluint i = 0; i < neighborVertexIds.size(); i++) {
                        plint vertexId = neighborVertexIds[i];
                        if (isBoundaryVertex(vertexId)) {
                            if (isBoundaryEdge(iVertex, vertexId)) {
                                counter++;
                                if (counter == 1) {
                                    jVertex = vertexId;
                                } else if (counter == 2) {
                                    kVertex = vertexId;
                                } else {
                                    PLB_ASSERT(false); // Problem with the boundary of the surface mesh.
                                }
                            }
                        }
                    }

                    PLB_ASSERT(counter == 2); // Problem with the boundary of the surface mesh.

                    Array<T,3> jVertexPos = (*bp0)[jVertex];
                    Array<T,3> kVertexPos = (*bp0)[kVertex];

                    Array<T,3> middleVertexPos0 = (iVertexPos + jVertexPos) / (T) 2.0;
                    Array<T,3> middleVertexPos1 = (iVertexPos + kVertexPos) / (T) 2.0;

                    T length0 = norm(jVertexPos - iVertexPos);
                    T length1 = norm(kVertexPos - iVertexPos);

                    (*bp1)[iVertex] = ((T) 1.0 - relax) * (*bp0)[iVertex] +
                                      relax * (middleVertexPos0*length0 + middleVertexPos1*length1) / (length0 + length1);
                }
            }
            // Swap buffers.
            std::vector<Array<T,3> > *tmp = bp0;
            bp0 = bp1;
            bp1 = tmp;
        }
    } else {
        for (plint iter = 0; iter < maxiter; iter++) {
            for (plint iVertex = 0; iVertex < numVertices; iVertex++) {
                std::vector<plint> neighborVertexIds = getNeighborVertexIds(iVertex);

                if (isInteriorVertex(iVertex)) {
                    pluint sizeIds = neighborVertexIds.size();
                    Array<T,3> tmp((T) 0.0, (T) 0.0, (T) 0.0);
                    for (pluint i = 0; i < sizeIds; i++) {
                        tmp += (*bp0)[neighborVertexIds[i]];
                    }
                    (*bp1)[iVertex] = ((T) 1.0 - relax) * (*bp0)[iVertex] + relax * tmp / (T) sizeIds;
                } else {
                    plint jVertex = -1, kVertex = -1;
                    int counter = 0;
                    for (pluint i = 0; i < neighborVertexIds.size(); i++) {
                        plint vertexId = neighborVertexIds[i];
                        if (isBoundaryVertex(vertexId)) {
                            if (isBoundaryEdge(iVertex, vertexId)) {
                                counter++;
                                if (counter == 1) {
                                    jVertex = vertexId;
                                } else if (counter == 2) {
                                    kVertex = vertexId;
                                } else {
                                    PLB_ASSERT(false); // Problem with the boundary of the surface mesh.
                                }
                            }
                        }
                    }

                    PLB_ASSERT(counter == 2); // Problem with the boundary of the surface mesh.

                    (*bp1)[iVertex] = ((T) 1.0 - relax) * (*bp0)[iVertex] +
                                      relax * ((*bp0)[jVertex] + (*bp0)[kVertex]) / (T) 2.0;
                }
            }
            // Swap buffers.
            std::vector<Array<T,3> > *tmp = bp0;
            bp0 = bp1;
            bp1 = tmp;
        }
    }

    // Final copy of vertex positions.
    if (vertexList != bp0)
        for (plint iVertex = 0; iVertex < numVertices; iVertex++)
           (*vertexList)[iVertex] = (*bp0)[iVertex];
}

template<typename T>
inline plint TriangularSurfaceMesh<T>::getVertexId(plint iTriangle, plint localVertex) const {
    PLB_ASSERT(iTriangle >= 0 && iTriangle < numTriangles &&
               (localVertex == 0 || localVertex == 1 || localVertex == 2));
    return edges() [ 3*iTriangle + ((localVertex == 0) ? 2 : localVertex-1) ].pv;
}

template<typename T>
std::vector<plint> TriangularSurfaceMesh<T>::getNeighborVertexIds(
    plint iVertex) const
{
    PLB_ASSERT(iVertex >= 0 && iVertex < numVertices);

    std::vector<plint> neighborVertexIds;

    plint ee = emanatingEdges()[iVertex];
    neighborVertexIds.push_back(edges()[ee].pv);

    plint pe = prev(ee);
    plint e = pe;
    if ((e = edges()[e].ne) < 0) {
        neighborVertexIds.push_back(edges()[prev(pe)].pv);
        e = ee;
    }

    while (e != ee) {
        neighborVertexIds.push_back(edges()[e].pv);

        e = pe = prev(e);
        if ((e = edges()[e].ne) < 0) {
            neighborVertexIds.push_back(edges()[prev(pe)].pv);
            e = ee;
        }
    }

    PLB_ASSERT(neighborVertexIds.size() > 1); // Problem with the topology of the surface mesh.

    return neighborVertexIds;
}

template<typename T>
std::vector<plint> TriangularSurfaceMesh<T>::getNeighborVertexIds(
    plint iVertex, plint jVertex) const
{
    std::vector<plint> neighborVertexIds;
    std::vector<plint> adjacentTriangleIds = getAdjacentTriangleIds(iVertex, jVertex);
    std::vector<plint>::iterator tit = adjacentTriangleIds.begin();
    for (; tit != adjacentTriangleIds.end(); ++tit) {
        plint iTriangle = *tit;
        plint id0 = getVertexId(iTriangle, 0);
        plint id1 = getVertexId(iTriangle, 1);
        plint id2 = getVertexId(iTriangle, 2);
        plint kVertex =  (iVertex != id0 && jVertex != id0) ? id0 :
                        ((iVertex != id1 && jVertex != id1) ? id1 : id2);
        neighborVertexIds.push_back(kVertex);
    }

#ifdef PLB_DEBUG
    plint size = neighborVertexIds.size();
#endif
    PLB_ASSERT(size == 1 || size == 2); // Problem with the topology of the surface mesh.

    return neighborVertexIds;
}

template<typename T>
std::vector<plint> TriangularSurfaceMesh<T>::getNeighborTriangleIds(
    plint iVertex ) const
{
    PLB_ASSERT(iVertex >= 0 && iVertex < numVertices);

    std::vector<plint> neighborTriangleIds;

    plint ee = emanatingEdges()[iVertex];
    neighborTriangleIds.push_back(ee/3);

    plint e = prev(ee);
    if ((e = edges()[e].ne) < 0)
        e = ee;

    while (e != ee) {
        neighborTriangleIds.push_back(e/3);

        e = prev(e);
        if ((e = edges()[e].ne) < 0)
            e = ee;
    }

    PLB_ASSERT(neighborTriangleIds.size() != 0); // Problem with the topology of the surface mesh.

    return neighborTriangleIds;
}

template<typename T>
std::vector<plint> TriangularSurfaceMesh<T>::getAdjacentTriangleIds(
    plint iTriangle) const
{
    PLB_ASSERT(iTriangle >= 0 && iTriangle < numTriangles);

    std::vector<plint> adjacentTriangleIds;
    for (int localEdge = 0; localEdge < 3; localEdge++) {
        plint e = edges()[3*iTriangle + localEdge].ne;
        if (e >= 0)
            adjacentTriangleIds.push_back(e/3);
    }
    return adjacentTriangleIds;
}

template<typename T>
std::vector<plint> TriangularSurfaceMesh<T>::getAdjacentTriangleIds(
    plint iVertex, plint jVertex) const
{
    PLB_ASSERT(iVertex >= 0 && iVertex < numVertices &&
               jVertex >= 0 && jVertex < numVertices &&
               iVertex != jVertex);

#ifdef PLB_DEBUG
    std::vector<plint> neighborVertexIds = getNeighborVertexIds(iVertex);
    std::vector<plint>::iterator vit;
    vit = find(neighborVertexIds.begin(), neighborVertexIds.end(), jVertex);
    PLB_ASSERT(vit != neighborVertexIds.end()); // Vertices do not belong to the same edge.
#endif // PLB_DEBUG

    std::vector<plint> adjacentTriangleIds;
    std::vector<plint> neighborTriangleIds = getNeighborTriangleIds(iVertex);
    std::vector<plint>::iterator tit = neighborTriangleIds.begin();
    for (; tit != neighborTriangleIds.end(); ++tit) {
        plint iTriangle = *tit;
        plint id0 = getVertexId(iTriangle, 0);
        plint id1 = getVertexId(iTriangle, 1);
        plint id2 = getVertexId(iTriangle, 2);
        if ((iVertex == id0 || iVertex == id1 || iVertex == id2) &&
            (jVertex == id0 || jVertex == id1 || jVertex == id2))
            adjacentTriangleIds.push_back(iTriangle);
    }

    PLB_ASSERT(adjacentTriangleIds.size() == 1 || adjacentTriangleIds.size() == 2); // Problem with the topology of the surface mesh.

    return adjacentTriangleIds;
}

template<typename T>
Array<T,3> TriangularSurfaceMesh<T>::computeTriangleNormal(
    plint iTriangle, bool isAreaWeighted) const
{
    PLB_ASSERT(iTriangle >= 0 && iTriangle < numTriangles);

    Array<T,3> v0 = getVertex(iTriangle, 0);
    Array<T,3> v1 = getVertex(iTriangle, 1);
    Array<T,3> v2 = getVertex(iTriangle, 2);

    Array<T,3> e01 = v1 - v0;
    Array<T,3> e02 = v2 - v0;

    Array<T,3> n;
    crossProduct(e01, e02, n);
    if (!isAreaWeighted)
        n /= norm(n);

    return n;
}

template<typename T>
Array<T,3> TriangularSurfaceMesh<T>::computeTriangleNormal(
    plint iVertex, plint jVertex, plint kVertex, bool isAreaWeighted) const
{
    PLB_ASSERT(iVertex >= 0 && iVertex < numVertices &&
               jVertex >= 0 && jVertex < numVertices &&
               kVertex >= 0 && kVertex < numVertices &&
               iVertex != jVertex && iVertex != kVertex &&
               jVertex != kVertex);

    plint id0 = iVertex;
    plint id1, id2;

    std::vector<plint> neighborVertexIds = getNeighborVertexIds(iVertex);
    std::vector<plint>::iterator it;
    it = find(neighborVertexIds.begin(), neighborVertexIds.end(), jVertex);
    PLB_ASSERT(it != neighborVertexIds.end()); // Vertices do not belong to the same triangle.

    plint prevVertex, nextVertex;
    if (jVertex == neighborVertexIds[0]) {
        prevVertex = neighborVertexIds[neighborVertexIds.size()-1];
        nextVertex = neighborVertexIds[1];
    }
    else if (jVertex == neighborVertexIds[neighborVertexIds.size()-1]) {
        prevVertex = neighborVertexIds[neighborVertexIds.size()-2];
        nextVertex = neighborVertexIds[0];
    }
    else {
        prevVertex = *(it - 1);
        nextVertex = *(it + 1);
    }

    if (kVertex == prevVertex) {
        id1 = kVertex;
        id2 = jVertex;
    }
    else if (kVertex == nextVertex) {
        id1 = jVertex;
        id2 = kVertex;
    }
    else {
        PLB_ASSERT(false); // Vertices do not belong to the same triangle.
    }

    Array<T,3> v0 = getVertex(id0);
    Array<T,3> v1 = getVertex(id1);
    Array<T,3> v2 = getVertex(id2);

    Array<T,3> e01 = v1 - v0;
    Array<T,3> e02 = v2 - v0;

    Array<T,3> n;
    crossProduct(e01, e02, n);
    if (!isAreaWeighted)
        n /= norm(n);

    return n;
}

template<typename T>
Array<T,3> TriangularSurfaceMesh<T>::computeEdgeNormal(
    plint iVertex, plint jVertex, bool isAreaWeighted) const
{
    Array<T,3> n;
    std::vector<plint> adjacentTriangleIds = getAdjacentTriangleIds(iVertex, jVertex);
    std::vector<plint>::iterator tit = adjacentTriangleIds.begin();
    for (n.resetToZero(); tit != adjacentTriangleIds.end(); ++tit)
        n += computeTriangleNormal(*tit, isAreaWeighted);

    n /= norm(n);
    return n;
}

template<typename T>
Array<T,3> TriangularSurfaceMesh<T>::computeVertexNormal(
    plint iVertex, bool isAreaWeighted) const
{
    std::vector<plint> neighborTriangleIds = getNeighborTriangleIds(iVertex);
    Array<T,3> n;
    std::vector<plint>::iterator it = neighborTriangleIds.begin();
    for (n.resetToZero(); it != neighborTriangleIds.end(); ++it)
        n += computeTriangleNormal(*it, isAreaWeighted);

    n /= norm(n);
    return n;
}

template<typename T>
Array<T,3> TriangularSurfaceMesh<T>::computeContinuousNormal(
    Array<T,3> const& p, plint iTriangle, bool isAreaWeighted) const
{
    plint id0 = getVertexId(iTriangle, 0);
    plint id1 = getVertexId(iTriangle, 1);
    plint id2 = getVertexId(iTriangle, 2);

    Array<T,3> v0 = getVertex(id0);
    Array<T,3> v1 = getVertex(id1);
    Array<T,3> v2 = getVertex(id2);

    Array<T,3> ep0 = v0 - p;
    Array<T,3> ep1 = v1 - p;
    Array<T,3> ep2 = v2 - p;

    Array<T,3> n;
    crossProduct(ep1, ep2, n);
    T area0 = (T) 0.5 * norm(n);
    crossProduct(ep2, ep0, n);
    T area1 = (T) 0.5 * norm(n);

    T area = computeTriangleArea(iTriangle);

    T u = area0 / area;
    T v = area1 / area;

    Array<T,3> n0 = computeVertexNormal(id0, isAreaWeighted);
    Array<T,3> n1 = computeVertexNormal(id1, isAreaWeighted);
    Array<T,3> n2 = computeVertexNormal(id2, isAreaWeighted);

    n = u * n0 + v * n1 + ((T)1. - u - v) * n2;
    n /= norm(n);
    return n;
}

template<typename T>
T TriangularSurfaceMesh<T>::computeTriangleArea(plint iTriangle) const
{
    Array<T,3> v0 = getVertex(iTriangle, 0);
    Array<T,3> v1 = getVertex(iTriangle, 1);
    Array<T,3> v2 = getVertex(iTriangle, 2);

    Array<T,3> e01 = v1 - v0;
    Array<T,3> e02 = v2 - v0;

    Array<T,3> n;
    crossProduct(e01, e02, n);
    return (T) 0.5 * norm(n);
}

template<typename T>
T TriangularSurfaceMesh<T>::computeTriangleArea(
    plint iVertex, plint jVertex, plint kVertex) const
{
    PLB_ASSERT(iVertex >= 0 && iVertex < numVertices &&
               jVertex >= 0 && jVertex < numVertices &&
               kVertex >= 0 && kVertex < numVertices &&
               iVertex != jVertex && iVertex != kVertex &&
               jVertex != kVertex);

#ifdef PLB_DEBUG
    std::vector<plint> neighborVertexIds = getNeighborVertexIds(iVertex);
    std::vector<plint>::iterator it;
    it = find(neighborVertexIds.begin(), neighborVertexIds.end(), jVertex);
    PLB_ASSERT(it != neighborVertexIds.end()); // Vertices do not belong to the same triangle.

    plint prevVertex, nextVertex;
    if (jVertex == neighborVertexIds[0]) {
        prevVertex = neighborVertexIds[neighborVertexIds.size()-1];
        nextVertex = neighborVertexIds[1];
    }
    else if (jVertex == neighborVertexIds[neighborVertexIds.size()-1]) {
        prevVertex = neighborVertexIds[neighborVertexIds.size()-2];
        nextVertex = neighborVertexIds[0];
    }
    else {
        prevVertex = *(it - 1);
        nextVertex = *(it + 1);
    }

    PLB_ASSERT(kVertex == prevVertex || kVertex == nextVertex); // Vertices do not belong to the same triangle.
#endif // PLB_DEBUG

    Array<T,3> v0 = getVertex(iVertex);
    Array<T,3> v1 = getVertex(jVertex);
    Array<T,3> v2 = getVertex(kVertex);

    return plb::computeTriangleArea(v0,v1,v2);
}

template<typename T>
T TriangularSurfaceMesh<T>::computeEdgeArea(plint iVertex, plint jVertex) const
{
    T area = T();
    std::vector<plint> adjacentTriangleIds = getAdjacentTriangleIds(iVertex, jVertex);
    std::vector<plint>::iterator tit = adjacentTriangleIds.begin();
    for (; tit != adjacentTriangleIds.end(); ++tit)
        area += computeTriangleArea(*tit);

    return area/3.0;
}

template<typename T>
T TriangularSurfaceMesh<T>::computeVertexArea(plint iVertex) const
{
    std::vector<plint> neighborTriangleIds = getNeighborTriangleIds(iVertex);
    T area = T();
    std::vector<plint>::iterator it = neighborTriangleIds.begin();
    for (; it != neighborTriangleIds.end(); ++it)
    {
        area += computeTriangleArea(*it);
    }

    return area/3.0;
}

template<typename T>
T TriangularSurfaceMesh<T>::computeEdgeLength(plint iVertex, plint jVertex) const
{
#ifdef PLB_DEBUG
    std::vector<plint> neighborVertexIds = getNeighborVertexIds(iVertex);
    std::vector<plint>::iterator it;
    it = find(neighborVertexIds.begin(), neighborVertexIds.end(), jVertex);
    PLB_ASSERT(it != neighborVertexIds.end()); // Vertices do not belong to the same edge.
#endif // PLB_DEBUG

    return norm(getVertex(iVertex) - getVertex(jVertex));
}

template<typename T>
T TriangularSurfaceMesh<T>::computeDihedralAngle(plint iVertex, plint jVertex) const
{
    std::vector<plint> adjacentTriangleIds = getAdjacentTriangleIds(iVertex, jVertex);
    if (adjacentTriangleIds.size() == 1)
        return T();

    return angleBetweenVectors(computeTriangleNormal(adjacentTriangleIds[0]),
                               computeTriangleNormal(adjacentTriangleIds[1]));
}

template<typename T>
T TriangularSurfaceMesh<T>::computeEdgeTileSpan(plint iVertex, plint jVertex) const
{
    std::vector<plint> neighborVertexIds = getNeighborVertexIds(iVertex, jVertex);

    Array<T,3> v0 = getVertex(neighborVertexIds[0]);
    Array<T,3> v1 = getVertex(iVertex);
    Array<T,3> v2 = getVertex(jVertex);

    Array<T,3> v01 = v1 - v0;
    Array<T,3> v21 = v1 - v2;
    T angle_012 = angleBetweenVectors(v21, v01);

    T span = std::fabs(std::sin(angle_012)) * norm(v01);

    if (neighborVertexIds.size() == 1)
        return span/6.0;

    Array<T,3> v3 = getVertex(neighborVertexIds[1]);

    Array<T,3> v32 = v2 - v3;
    Array<T,3> v12 = -v21;
    T angle_321 = angleBetweenVectors(v12, v32);
    
    span += std::fabs(std::sin(angle_321)) * norm(v32);

    return span/6.0;
}

template<typename T>
TriangleSet<T> TriangularSurfaceMesh<T>::toTriangleSet(Precision precision) const
{
    typedef typename TriangleSet<T>::Triangle Triangle;
    std::vector<Triangle> triangles(numTriangles);
    for (plint i = 0; i < numTriangles; i++) {
        Triangle triangle;
        triangle[0] = getVertex(i, 0);
        triangle[1] = getVertex(i, 1);
        triangle[2] = getVertex(i, 2);
        triangles[i] = triangle;
    }
    return TriangleSet<T>(triangles, precision);
}

template<typename T>
void TriangularSurfaceMesh<T>::writeAsciiSTL(std::string fname, T dx) const
{
    Array<T,3> location((T) 0, (T) 0, (T) 0);
    writeAsciiSTL(fname, dx, location);
}

template<typename T>
void TriangularSurfaceMesh<T>::writeAsciiSTL(std::string fname, T dx, Array<T,3> location) const
{
    // Output only from one MPI process.
    if (!global::mpi().isMainProcessor()) {
        return;
    }
    if (numTriangles == 0) {
        return;
    }
    FILE *fp = fopen(fname.c_str(), "w");
    PLB_ASSERT(fp != NULL);

    char fmt1[64] = "  facet normal ";
    char fmt2[64] = "      vertex ";
    if (sizeof(T) == sizeof(long double)) {
        strcat(fmt1, "% .12Le % .12Le % .12Le\n");
        strcat(fmt2, "% .12Le % .12Le % .12Le\n");
    }
    else if (sizeof(T) == sizeof(float) ||
             sizeof(T) == sizeof(double)) {
        strcat(fmt1, "% .10e % .10e % .10e\n");
        strcat(fmt2, "% .10e % .10e % .10e\n");
    }
    else {
        PLB_ASSERT(false);
    }

    fprintf(fp, "solid surface\n");
    for (plint i = 0; i < numTriangles; i++) {
        Array<T,3> n = computeTriangleNormal(i);
        Array<T,3> v;
        fprintf(fp, fmt1, n[0], n[1], n[2]);
        fprintf(fp, "    outer loop\n");
        v = getVertex(i, 0) * dx + location;
        fprintf(fp, fmt2, v[0], v[1], v[2]);
        v = getVertex(i, 1) * dx + location;
        fprintf(fp, fmt2, v[0], v[1], v[2]);
        v = getVertex(i, 2) * dx + location;
        fprintf(fp, fmt2, v[0], v[1], v[2]);
        fprintf(fp, "    endloop\n");
        fprintf(fp, "  endfacet\n");
    }
    fprintf(fp, "endsolid surface\n");

    fclose(fp);
}

template<typename T>
void TriangularSurfaceMesh<T>::writeBinarySTL(std::string fname, T dx) const
{
    Array<T,3> location((T) 0, (T) 0, (T) 0);
    writeBinarySTL(fname, dx, location);
}

template<typename T>
void TriangularSurfaceMesh<T>::writeBinarySTL(std::string fname, T dx, Array<T,3> location) const
{
    // Output only from one MPI process.
    if (!global::mpi().isMainProcessor()) {
        return;
    }
    if (numTriangles == 0) {
        return;
    }
    FILE *fp = fopen(fname.c_str(), "wb");
    PLB_ASSERT(fp != NULL);

    unsigned int nt = (unsigned int) numTriangles;
    unsigned short abc = 0;
    char buf[80];

    for (int i = 0; i < 80; i++)
        buf[i] = '\0';

    fwrite(buf, sizeof(char), 80, fp);
    fwrite(&nt, sizeof(unsigned int), 1, fp);
    for (plint i = 0; i < numTriangles; i++) {
        Array<T,3> vertex;
        Array<T,3> normal = computeTriangleNormal(i);
        float n[3];
        n[0] = normal[0];
        n[1] = normal[1];
        n[2] = normal[2];
        fwrite((void *) n, sizeof(float), 3, fp);
        vertex = getVertex(i, 0) * dx + location;
        float v[3];
        v[0] = vertex[0];
        v[1] = vertex[1];
        v[2] = vertex[2];
        fwrite((void *) v, sizeof(float), 3, fp);
        vertex = getVertex(i, 1) * dx + location;
        v[0] = vertex[0];
        v[1] = vertex[1];
        v[2] = vertex[2];
        fwrite((void *) v, sizeof(float), 3, fp);
        vertex = getVertex(i, 2) * dx + location;
        v[0] = vertex[0];
        v[1] = vertex[1];
        v[2] = vertex[2];
        fwrite((void *) v, sizeof(float), 3, fp);
        fwrite(&abc, sizeof(unsigned short), 1, fp);
    }

    fclose(fp);
}

template<typename T>
inline bool TriangularSurfaceMesh<T>::isBoundaryVertex(plint iVertex) const
{
    PLB_ASSERT(iVertex >= 0 && iVertex < numVertices);
    if ( edges()[ emanatingEdges()[iVertex] ].ne < 0)
        return true;
    return false;
}

template<typename T>
inline bool TriangularSurfaceMesh<T>::isInteriorVertex(plint iVertex) const
{
    PLB_ASSERT(iVertex >= 0 && iVertex < numVertices);
    if ( edges()[ emanatingEdges()[iVertex] ].ne >= 0)
        return true;
    return false;
}

template<typename T>
inline bool TriangularSurfaceMesh<T>::isBoundaryEdge(plint iVertex, plint jVertex) const
{
    if (getAdjacentTriangleIds(iVertex, jVertex).size() == 2)
        return false;

    return true;
}

template<typename T>
inline bool TriangularSurfaceMesh<T>::isInteriorEdge(plint iVertex, plint jVertex) const
{
    return !isBoundaryEdge(iVertex, jVertex);
}

template<typename T>
int TriangularSurfaceMesh<T>::pointOnTriangle (
    Array<T,3> const& point1, Array<T,3> const& point2, int flag,
    plint iTriangle, Array<T,3>& intersection, Array<T,3>& normal,
    T& distance) const
{
    if(!((flag == 0 || flag == 1 || flag == 2) &&iTriangle >= 0 && iTriangle < numTriangles)) {
        pcout << "iTriangle=" << iTriangle << std::endl;
        pcout << "numTriangles=" << numTriangles << std::endl;
        pcout << "flag=" << flag << std::endl;
    }
    PLB_ASSERT((flag == 0 || flag == 1 || flag == 2) &&
                iTriangle >= 0 && iTriangle < numTriangles);

    Array<T,3> v0 = getVertex(iTriangle, 0); // Triangle vertex coordinates
    Array<T,3> v1 = getVertex(iTriangle, 1);
    Array<T,3> v2 = getVertex(iTriangle, 2);

    Array<T,3> e0 = v1 - v0;  // Triangle edge vectors starting at v0
    Array<T,3> e1 = v2 - v0;

    crossProduct(e0, e1, normal); // Triangle unit normal
    normal /= norm(normal);

    Array<T,3> direction = point2 - point1;

    T num = dot(v0, normal) - dot(point1, normal);
    T denom = dot(direction, normal);

    T t = num / denom;

    // The function pointOnTriangle is essentially to verify crossings
    //   through the surface from inside to outside or vice versa. When
    //   one of the end-points of a segment is right on top of the surface
    //   this creates an awkward ambiguity. To remove this ambiguity, the
    //   triangle is slightly shifted in direction of its normal vector.
    if (    ( (flag==0||flag==1) && util::fpequal_abs(t, T(), eps1) )
         || ( (flag==0) && util::fpequal_abs(t, (T) 1.0, eps1) )
       )
    {
        // Shift the vertex, and recompute everything that needs to be
        //   recomputed. v1 and v2 are not used any more, so there is no
        //   need to recompute them.
        v0 += (T)2*eps1*normal;
        num = dot(v0, normal) - dot(point1, normal);
        t = num / denom;
    }

    if (util::fpequal_abs(denom, T(), eps1)) {
        if (util::fpequal_abs(num, T(), eps1)) {
            return -1; // Line belongs to the plane
        }
        else {
            return 0; // Line does not intersect the plane
        }
    }

    if (flag == 0) { // For intersection with a line segment
        if ((t < (T) 0.0 && !util::fpequal_abs(t, (T) 0.0, eps1)) ||
            (t > (T) 1.0 && !util::fpequal_abs(t, (T) 1.0, eps1))) {
            return 0;
        }
    }
    else if (flag == 1) { // For intersection with a half-line
        if (t < (T) 0.0 && !util::fpequal_abs(t, (T) 0.0, eps1)) {
            return 0;
        }
    }

    intersection = point1 + direction*t; // Intersection point with the plane

    T a[2][2];
    a[0][0] = dot(e0, e0);
    a[0][1] = dot(e0, e1);
    a[1][0] = a[0][1];
    a[1][1] = dot(e1, e1);

    T tmp[3];
    tmp[0] = intersection[0] - v0[0];
    tmp[1] = intersection[1] - v0[1];
    tmp[2] = intersection[2] - v0[2];

    T b[2];
    b[0] = dot(tmp, e0);
    b[1] = dot(tmp, e1);

    T det = a[0][0]*a[1][1] - a[0][1]*a[1][0];

    T u = (a[1][1]*b[0] - a[0][1]*b[1]) / det;
    T v = (a[0][0]*b[1] - a[1][0]*b[0]) / det;

    T upv = u + v;

    int ueq0   = util::fpequal_abs(u,   T(), eps1);
    int ueq1   = util::fpequal_abs(u,   (T) 1.0, eps1);
    int veq0   = util::fpequal_abs(v,   T(), eps1);
    int veq1   = util::fpequal_abs(v,   (T) 1.0, eps1);
    int upveq1 = util::fpequal_abs(upv, (T) 1.0, eps1);

    int is_vertex = -1;
    int is_in_edge = -1;

    if ((u < (T) 0.0 && !ueq0) || (u > (T) 1.0 && !ueq1) ||
        (v < (T) 0.0 && !veq0) || (v > (T) 1.0 && !veq1) ||
        (upv > (T) 1.0 && !upveq1))
        return 0; // The point does not belong to the triangle
    else { // The point belongs to the triangle (boundary or interior)
        distance = std::fabs(t) * norm(direction);
                    // Distance between intersection and point1

        if (!ueq0 && !veq0 && !upveq1)
            return 1; // Point is in the triangle interior
        else if (ueq0 && veq0)
            is_vertex = 0;
        else if (ueq1 && veq0)
            is_vertex = 1;
        else if (ueq0 && veq1)
            is_vertex = 2;
        else if (veq0 && !ueq0 && !ueq1)
            is_in_edge = 0;
        else if (ueq0 && !veq0 && !veq1)
            is_in_edge = 2;
        else if (upveq1 && !ueq1 && !veq1)
            is_in_edge = 1;
    }

    if (is_in_edge != -1) { // The point belongs to an edge
        plint iVertex = getVertexId(iTriangle, is_in_edge);
        plint jVertex = (is_in_edge == 2) ? getVertexId(iTriangle, 0) :
                                            getVertexId(iTriangle, is_in_edge+1);

        normal = computeEdgeNormal(iVertex, jVertex);
    } else if (is_vertex != -1) { // The point is a vertex
        normal = computeVertexNormal(getVertexId(iTriangle, is_vertex));
    }

    return 1;
}

template<typename T>
bool TriangularSurfaceMesh<T>::segmentIntersectsTriangle (
    Array<T,3> const& point1, Array<T,3> const& point2, plint iTriangle ) const
{
    PLB_ASSERT(iTriangle >= 0 && iTriangle < numTriangles);

    T v0[3], v1[3], v2[3]; // Triangle vertex coordinates

    Array<T,3> tv0 = getVertex(iTriangle, 0); tv0.to_cArray(v0);
    Array<T,3> tv1 = getVertex(iTriangle, 1); tv1.to_cArray(v1);
    Array<T,3> tv2 = getVertex(iTriangle, 2); tv2.to_cArray(v2);

    T e0[3], e1[3]; // Triangle edge vectors starting at v0

    e0[0] = v1[0] - v0[0];
    e0[1] = v1[1] - v0[1];
    e0[2] = v1[2] - v0[2];

    e1[0] = v2[0] - v0[0];
    e1[1] = v2[1] - v0[1];
    e1[2] = v2[2] - v0[2];

    T normal[3]; // Triangle normal

    normal[0] = e0[1]*e1[2] - e0[2]*e1[1];
    normal[1] = e0[2]*e1[0] - e0[0]*e1[2];
    normal[2] = e0[0]*e1[1] - e0[1]*e1[0];

    T direction[3], p1[3], p2[3];

    point1.to_cArray(p1);
    point2.to_cArray(p2);

    direction[0] = p2[0] - p1[0];
    direction[1] = p2[1] - p1[1];
    direction[2] = p2[2] - p1[2];

    T denom = direction[0]*normal[0] + direction[1]*normal[1] + direction[2]*normal[2];

    if (FPEQUAL_ABS(denom, T(), eps1))
        return false; // The segment belongs to the plane or it is parallel to it
                      //   and does not intersect it.

    T num = (v0[0]-p1[0])*normal[0] + (v0[1]-p1[1])*normal[1] + (v0[2]-p1[2])*normal[2];

    T t = num / denom;

    // The function segmentIntersectsTriangle is essentially to verify crossings
    //   through the surface from inside to outside or vice versa. When
    //   one of the end-points of a segment is right on top of the surface
    //   this creates an awkward ambiguity. To remove this ambiguity, the
    //   triangle is slightly shifted in direction of its normal vector.
    if (    ( FPEQUAL_ABS(t, T(),     eps1) )
         || ( FPEQUAL_ABS(t, (T) 1.0, eps1) )
       )
    {
        T norm_normal = std::sqrt(util::sqr(normal[0])+util::sqr(normal[1])+util::sqr(normal[2]));
        normal[0] /= norm_normal;
        normal[1] /= norm_normal;
        normal[2] /= norm_normal;
        // Shift the vertex, and recompute everything that needs to be
        //   recomputed. v1 and v2 are not used any more, so there is no
        //   need to recompute them.
        T tmp = (T)2*eps1;
        v0[0] += tmp*normal[0];
        v0[1] += tmp*normal[1];
        v0[2] += tmp*normal[2];
        num = (v0[0]-p1[0])*normal[0] + (v0[1]-p1[1])*normal[1] + (v0[2]-p1[2])*normal[2];
        t = num / denom;
    }

    if ((t < (T) 0.0 && !FPEQUAL_ABS(t, (T) 0.0, eps1)) ||
        (t > (T) 1.0 && !FPEQUAL_ABS(t, (T) 1.0, eps1)))
        return false;

    T intersection[3];

    intersection[0] = p1[0] + direction[0]*t; // Intersection point with the plane
    intersection[1] = p1[1] + direction[1]*t;
    intersection[2] = p1[2] + direction[2]*t;

    T a[2][2];
    a[0][0] = e0[0]*e0[0] + e0[1]*e0[1] + e0[2]*e0[2];
    a[0][1] = e0[0]*e1[0] + e0[1]*e1[1] + e0[2]*e1[2];
    a[1][0] = a[0][1];
    a[1][1] = e1[0]*e1[0] + e1[1]*e1[1] + e1[2]*e1[2];

    T tmp[3];
    tmp[0] = intersection[0] - v0[0];
    tmp[1] = intersection[1] - v0[1];
    tmp[2] = intersection[2] - v0[2];

    T b[2];
    b[0] = tmp[0]*e0[0] + tmp[1]*e0[1] + tmp[2]*e0[2];
    b[1] = tmp[0]*e1[0] + tmp[1]*e1[1] + tmp[2]*e1[2];

    T det = a[0][0]*a[1][1] - a[0][1]*a[1][0];

    T u = (a[1][1]*b[0] - a[0][1]*b[1])/det;
    T v = (a[0][0]*b[1] - a[1][0]*b[0])/det;

    T upv = u + v;

    if ((u   < (T) 0.0 && !FPEQUAL_ABS(u,   (T) 0.0, eps1)) ||
        (u   > (T) 1.0 && !FPEQUAL_ABS(u,   (T) 1.0, eps1)) ||
        (v   < (T) 0.0 && !FPEQUAL_ABS(v,   (T) 0.0, eps1)) ||
        (v   > (T) 1.0 && !FPEQUAL_ABS(v,   (T) 1.0, eps1)) ||
        (upv > (T) 1.0 && !FPEQUAL_ABS(upv, (T) 1.0, eps1)))
        return false; // The point does not belong to the triangle

    return true;
}

template<typename T>
void TriangularSurfaceMesh<T>::distanceToEdgeLine (
        Array<T,3> const& point, plint iTriangle, plint whichEdge,
        T& distance, bool& intersectionIsInside ) const
{
    PLB_ASSERT(iTriangle >= 0 && iTriangle < numTriangles &&
               (whichEdge == 0 || whichEdge == 1 || whichEdge == 2));

    plint iVertex1 = edges()[3*iTriangle+((whichEdge==0) ? 2:whichEdge-1)].pv;
    plint iVertex2 = edges()[3*iTriangle+whichEdge].pv;
    Array<T,3> vertex1 = getVertex(iVertex1);
    Array<T,3> vertex2 = getVertex(iVertex2);
    Array<T,3> pv = point-vertex1;
    Array<T,3> e = vertex2-vertex1;

    T u = dot(pv,e) / dot(e,e);
    Array<T,3> x = vertex1+u*e;
    distance = norm(point-x);

    int ueq0 = util::fpequal_abs(u, (T) 0.0, eps1);
    int ueq1 = util::fpequal_abs(u, (T) 1.0, eps1);
    intersectionIsInside = (u >= (T) 0.0 || ueq0) && (u <= (T) 1.0 || ueq1);
}

template<typename T>
void TriangularSurfaceMesh<T>::distanceToTrianglePlane (
        Array<T,3> const& point, plint iTriangle,
        T& distance, bool& intersectionIsInside, bool& pointIsBehind ) const
{
    Array<T,3> normal = computeTriangleNormal(iTriangle);
    Array<T,3> intersection;
    int flag = 2; // Line.
    intersectionIsInside =
        pointOnTriangle( point, point+normal, flag, iTriangle,
                         intersection, normal, distance ) == 1;
    T projection = dot(normal, point-intersection);

    pointIsBehind = projection <= (T)0. ||
                    util::fpequal_abs(projection, (T)0., eps1);
}

template<typename T>
void TriangularSurfaceMesh<T>::distanceToTriangle (
        Array<T,3> const& point, plint iTriangle,
        T& distance, bool& pointIsBehind ) const
{
    bool intersectionIsInside;
    // First possibility: The projection of the point is inside the triangle.
    distanceToTrianglePlane( point, iTriangle, distance,
                             intersectionIsInside, pointIsBehind );
    if (intersectionIsInside) {
        return;
    }
    // Second possibility: The projection of the point is inside an edge.
    bool intersectsWithEdge = false;
    for (plint iEdge=0; iEdge<=2; ++iEdge) {
        T newDistance;
        distanceToEdgeLine(point, iTriangle, iEdge, newDistance, intersectionIsInside);
        if (iEdge==0 || newDistance<distance) {
            distance = newDistance;
            // The edge-line to which the point is closest should be selected if
            //   and only if the intersection is inside the edge. Otherwise
            //   the closest distance to the triangle is on one of the vertices
            //   which is selected further down.
            intersectsWithEdge = intersectionIsInside;
        }
    }
    if (intersectsWithEdge) {
        return;
    }
    // Default: Compute the closest distance to one of the vertices.
    T d0Sqr = normSqr(point-getVertex(iTriangle, 0));
    T d1Sqr = normSqr(point-getVertex(iTriangle, 1));
    T d2Sqr = normSqr(point-getVertex(iTriangle, 2));
    T minDistSqr = std::min(d0Sqr, std::min(d1Sqr,d2Sqr));
    distance = std::sqrt(minDistSqr);
}

template<typename T>
void TriangularSurfaceMesh<T>::reverseOrientation()
{
    // Rearrange the emanating edge list.
    for (plint iVertex = 0; iVertex < numVertices; iVertex++)
        if (isInteriorVertex(iVertex)) {
            emanatingEdges()[iVertex] = changeEdgeId(edges()[emanatingEdges()[iVertex]].ne);
        }
        else {
            plint ee = emanatingEdges()[iVertex];
            plint pe = prev(ee);
            plint e = pe;
            if ((e = edges()[e].ne) < 0) {
                emanatingEdges()[iVertex] = changeEdgeId(pe);
                e = ee;
            }
            while (e != ee) {
                e = pe = prev(e);
                if ((e = edges()[e].ne) < 0) {
                    emanatingEdges()[iVertex] = changeEdgeId(pe);
                    e = ee;
                }
            }
        }

    // Rearrange the neighboring edge list.
    std::vector<Edge> tmp = edges();
    for (plint iEdge = 0; iEdge < 3*numTriangles; iEdge++)
        if (edges()[iEdge].ne < 0) {
            tmp[changeEdgeId(iEdge)].ne = -1;
        }
        else {
            tmp[changeEdgeId(iEdge)].ne = changeEdgeId(edges()[iEdge].ne);
        }

    edges().swap(tmp);

    // Rearrange the pointing vertex list.
    for (plint iTriangle = 0; iTriangle < numTriangles; iTriangle++) {
        plint id0 = getVertexId(iTriangle, 0);
        plint id1 = getVertexId(iTriangle, 1);
        plint id2 = getVertexId(iTriangle, 2);

        edges()[3*iTriangle].pv     = id2;
        edges()[3*iTriangle + 1].pv = id1;
        edges()[3*iTriangle + 2].pv = id0;
    }
}

template<typename T>
std::vector<Lid> TriangularSurfaceMesh<T>::closeHoles() {
    std::vector<std::vector<plint> > holes = detectHoles();
    std::vector<Lid> lids(holes.size());
    for (pluint iHole=0; iHole<holes.size(); ++iHole) {
        lids[iHole] = closeHole(holes[iHole]);
    }
    return lids;
}

template<typename T>
void TriangularSurfaceMesh<T>::avoidIntegerPositions() {
    for (plint iVertex=0; iVertex<getNumVertices(); ++iVertex) {
        avoidIntegerPosition(iVertex);
    }
}

template<typename T>
void TriangularSurfaceMesh<T>::avoidIntegerPosition(plint iVertex) {
    Array<T,3>& vertex = getVertex(iVertex);
    Array<T,3> normal = computeVertexNormal(iVertex);
    if ( vertex[0]-(plint)vertex[0] < 1.e-12 ||
         vertex[1]-(plint)vertex[1] < 1.e-12 ||
         vertex[2]-(plint)vertex[2] < 1.e-12 )
    {
        vertex += (T)1.e-12 * normal;
    }
}

template<typename T>
void TriangularSurfaceMesh<T>::inflate(T amount) {
    for (plint iVertex=0; iVertex<getNumVertices(); ++iVertex) {
        Array<T,3>& vertex = getVertex(iVertex);
        Array<T,3> normal = computeVertexNormal(iVertex);
        vertex += amount * normal;
    }
}

template<typename T>
inline plint TriangularSurfaceMesh<T>::prev(plint iEdge) const
{
    PLB_ASSERT(iEdge >= 0 && iEdge < 3*numTriangles);
    return (iEdge%3 == 0) ? iEdge+2 : iEdge-1;
}

template<typename T>
inline plint TriangularSurfaceMesh<T>::next(plint iEdge) const
{
    PLB_ASSERT(iEdge >= 0 && iEdge < 3*numTriangles);
    return (iEdge%3 == 2) ? iEdge-2 : iEdge+1;
}

template<typename T>
inline plint TriangularSurfaceMesh<T>::changeEdgeId(plint iEdge) const
{
    plint iTriangle = iEdge/3;
    plint mod = iEdge%3;
    return (mod == 0) ? 3*iTriangle+2 : ((mod == 1) ? iEdge : 3*iTriangle);
}

template<typename T>
std::vector<std::vector<plint> >
    TriangularSurfaceMesh<T>::detectHoles()
{
    std::vector<std::vector<plint> > holes;
    std::vector<bool> check(getNumVertices());
    // Whenever a vertex is identified as part of a given hole boundary, it is
    //   opted out in the "check" array to avoid that it is mistakingly
    //   identified later on as the starting vertex for a new hole.
    std::fill(check.begin(), check.end(), false);
    // Check all vertices ...
    for(plint iVertex=0; iVertex<numVertices; ++iVertex) {
        //                               ... unless they've been previously opted out.
        if (isBoundaryVertex(iVertex) && !check[iVertex]) {
            check[iVertex] = true;
            std::vector<plint> newHole;
            newHole.push_back(iVertex);
            Edge nextEdge = edges()[emanatingEdges()[iVertex]];
            // Loop around the hole, until we're back to the first vertex.
            while (nextEdge.pv != iVertex) {
                plint nextVertex = nextEdge.pv;
                check[nextVertex] = true;
                newHole.push_back(nextVertex);
                nextEdge = edges()[emanatingEdges()[nextVertex]];
            }
            holes.push_back(newHole);
        }
    }
    return holes;
}

template<typename T>
Lid TriangularSurfaceMesh<T>::closeHole(std::vector<plint> const& hole)
{
    plint numHoleVertices = (plint) hole.size();

    // 1. Create a new vertex, corresponding to the barycenter.
    Array<T,3> baryCenter; baryCenter.resetToZero();
    for (plint iHole=0; iHole<numHoleVertices; ++iHole) {
        plint iVertex = hole[iHole];
        baryCenter += getVertex(iVertex);
    }
    baryCenter /= (T)numHoleVertices;
    vertices().push_back(baryCenter);
    plint iCenter = numVertices;
    ++numVertices; // Don't forget to update this class variable.

    // 2. Create the new triangles.
    plint edgeIndex = edges().size()-1;
    plint firstAddedEdge = edgeIndex+1;
    // There is exactly one new triangle for each vertex along the hole.
    for (plint iTriangle=0; iTriangle<numHoleVertices; ++iTriangle) {
        plint iVertex = hole[iTriangle];
        plint nextVertex = hole[iTriangle==numHoleVertices-1 ? 0 : iTriangle+1];

        // a) Add the new edge which is horizontal to the hole boundary.
        Edge counterEdge; ++edgeIndex;
        counterEdge.pv = iVertex;
        counterEdge.ne = emanatingEdges()[iVertex];
        edges().push_back(counterEdge);
        // Convert this former boundary edge to a bulk edge.
        edges()[counterEdge.ne].ne = edgeIndex; 

        // b) Add the edge that goes from a boundary vertex to the barycenter.
        Edge firstEdge; ++edgeIndex;
        firstEdge.pv = iCenter;
        if (iTriangle>0) {
            firstEdge.ne = edgeIndex-2;
            // Convert this former boundary edge to a bulk edge.
            edges()[firstEdge.ne].ne = edgeIndex;
        }
        edges().push_back(firstEdge);

        // c) Add the edge that goes from the barycenter to a boundary vertex.
        Edge secondEdge; ++edgeIndex;
        secondEdge.pv = nextVertex;
        if (iTriangle==numHoleVertices-1) {
            secondEdge.ne = firstAddedEdge+1;
            // Convert this former boundary edge to a bulk edge.
            edges()[secondEdge.ne].ne = edgeIndex;
        }
        edges().push_back(secondEdge);

        ++numTriangles; // Don't forget to update this class variable.
    }
    // For the newly created barycenter, define the emanating edge to
    //   be the one corresponding to the first added triangle.
    emanatingEdges().push_back(firstAddedEdge+2);

    // 3. Make sure this will not become a degenerate case.
    avoidIntegerPosition(iCenter);

    // 4. Keep track of the newly created triangles with help of a "Lid" structure.
    Lid lid;
    lid.firstTriangle = firstAddedEdge/3;
    lid.numTriangles = numHoleVertices;
    lid.boundaryVertices = hole;
    lid.centerVertex = iCenter;
    return lid;
}


template<typename T>
void toLatticeUnits (
        TriangularSurfaceMesh<T>& mesh,
        plint resolution, plint referenceDirection,
        Array<T,3>& location, T& dx)
{
    PLB_ASSERT(referenceDirection>=0 && referenceDirection <=2);
    Array<T,2> xRange, yRange, zRange;
    mesh.computeBoundingBox(xRange, yRange, zRange);
    T deltaX = T();
    switch (referenceDirection) {
        case 0: deltaX = xRange[1] - xRange[0];
                break;
        case 1: deltaX = yRange[1] - yRange[0];
                break;
        case 2: deltaX = zRange[1] - zRange[0];
                break;
    }
    
    T scalingFactor = (T)(resolution)/deltaX;

    // Transform mesh into the frame of coordinate of the multiScalarField.
    location = Array<T,3>(xRange[0],yRange[0],zRange[0]);
    mesh.translate(Array<T,3>(-location));
    mesh.scale(scalingFactor);
    dx = 1./scalingFactor;
}


/* ******* Lid operations ************************************************** */

template<typename T>
Array<T,3> computeBaryCenter (
        TriangularSurfaceMesh<T> const& mesh, Lid const& lid )
{
    Array<T,3> baryCenter; baryCenter.resetToZero();
    for ( plint iBoundary=0;
          iBoundary<(plint)lid.boundaryVertices.size(); ++iBoundary)
    {
        plint iVertex = lid.boundaryVertices[iBoundary];
        baryCenter += mesh.getVertex(iVertex);
    }
    baryCenter /= (T)lid.boundaryVertices.size();
    return baryCenter;
}

template<typename T>
Array<T,3> computeGeometricCenter (
        TriangularSurfaceMesh<T> const& mesh, Lid const& lid )
{
    typedef typename TriangularSurfaceMesh<T>::Edge Edge;
    Array<T,3> center; center.resetToZero();
    T circumference = T();
    for ( plint iBoundary=0;
          iBoundary<(plint)lid.boundaryVertices.size(); ++iBoundary)
    {
        plint iVertex = lid.boundaryVertices[iBoundary];
        Edge edge = mesh.edges()[mesh.emanatingEdges()[iVertex]];
        plint iNextVertex = edge.pv;
        Array<T,3> v1 = mesh.getVertex(iVertex);
        Array<T,3> v2 = mesh.getVertex(iNextVertex);
        T l = norm(v2-v1);
        center += (v1+v2)*l;
        circumference += l;
    }
    center /= (T)2.*circumference;
    return center;
}

template<typename T>
T computeGeometricRadius (
        TriangularSurfaceMesh<T> const& mesh, Lid const& lid )
{
    typedef typename TriangularSurfaceMesh<T>::Edge Edge;
    Array<T,3> center= computeGeometricCenter(mesh, lid);
    T radius = T();
    T circumference = T();
    for ( plint iBoundary=0;
          iBoundary<(plint)lid.boundaryVertices.size(); ++iBoundary)
    {
        plint iVertex = lid.boundaryVertices[iBoundary];
        Edge edge = mesh.edges()[mesh.emanatingEdges()[iVertex]];
        plint iNextVertex = edge.pv;
        Array<T,3> v1 = mesh.getVertex(iVertex);
        Array<T,3> v2 = mesh.getVertex(iNextVertex);
        T l = norm(v2-v1);
        radius += norm(v1-center)*l;
        circumference += l;
    }
    radius /= circumference;
    return radius;
}

template<typename T>
void computeBoundingBox (
        TriangularSurfaceMesh<T> const& mesh, Lid const& lid,
        Array<T,2>& xLim, Array<T,2>& yLim, Array<T,2>& zLim )
{
    xLim[0] = yLim[0] = zLim[0] = std::numeric_limits<T>::max();
    xLim[1] = yLim[1] = zLim[1] = std::numeric_limits<T>::min();
    for ( plint iBoundary=0;
          iBoundary<(plint)lid.boundaryVertices.size(); ++iBoundary )
    {
        plint iVertex = lid.boundaryVertices[iBoundary];
        Array<T,3> const& vertex = mesh.getVertex(iVertex);
        xLim[0] = std::min(xLim[0], vertex[0]);
        xLim[1] = std::max(xLim[1], vertex[0]);
        yLim[0] = std::min(yLim[0], vertex[1]);
        yLim[1] = std::max(yLim[1], vertex[1]);
        zLim[0] = std::min(zLim[0], vertex[2]);
        zLim[1] = std::max(zLim[1], vertex[2]);
    }
}

template<typename T>
T computeInnerRadius (
        TriangularSurfaceMesh<T> const& mesh, Lid const& lid )
{
    if (lid.boundaryVertices.empty()) {
        return T();
    }
    else {
        T innerRadius = mesh.computeEdgeLength (
                lid.centerVertex, lid.boundaryVertices[0] );
        for ( plint iBoundary=1;
              iBoundary<(plint)lid.boundaryVertices.size(); ++iBoundary)
        {
            T nextLength = mesh.computeEdgeLength (
                    lid.centerVertex, lid.boundaryVertices[iBoundary] );
            innerRadius = std::min(innerRadius, nextLength);
        }
        return innerRadius;
    }
}

template<typename T>
T computeOuterRadius (
        TriangularSurfaceMesh<T> const& mesh, Lid const& lid )
{
    if (lid.boundaryVertices.empty()) {
        return T();
    }
    else {
        T innerRadius = mesh.computeEdgeLength (
                lid.centerVertex, lid.boundaryVertices[0] );
        for ( plint iBoundary=1;
              iBoundary<(plint)lid.boundaryVertices.size(); ++iBoundary)
        {
            T nextLength = mesh.computeEdgeLength (
                    lid.centerVertex, lid.boundaryVertices[iBoundary] );
            innerRadius = std::max(innerRadius, nextLength);
        }
        return innerRadius;
    }
}

template<typename T>
T computeArea (
        TriangularSurfaceMesh<T> const& mesh, Lid const& lid )
{
    T area = T();
    plint numVertices = (plint)lid.boundaryVertices.size();
    plint centerVertex = lid.centerVertex;
    for ( plint iBoundary=0; iBoundary<numVertices; ++iBoundary)
    {
        plint vertex1 = lid.boundaryVertices[iBoundary];
        plint vertex2 = lid.boundaryVertices[(iBoundary+1)%numVertices];
        area += mesh.computeTriangleArea(centerVertex, vertex1, vertex2);
    }
    return area;
}

template<typename T>
Array<T,3> computeNormal (
        TriangularSurfaceMesh<T> const& mesh, Lid const& lid )
{
    return mesh.computeVertexNormal(lid.centerVertex);
}


template<typename T>
void reCenter (
        TriangularSurfaceMesh<T>& mesh, Lid const& lid )
{
    Array<T,3> newCenter = computeBaryCenter(mesh,lid);
    mesh.replaceVertex(lid.centerVertex, newCenter);
}


template<typename T>
void TriangularSurfaceMesh<T>::writeHTML(std::string fname)
{
    writeHTML(fname, "Palabos html output", T(), Array<T,3>((T)0.,(T)0.,(T)0.));
}

template<typename T>
void TriangularSurfaceMesh<T>::writeHTML (
        std::string fname, std::string title, T phys_dx, Array<T,3> phys_location)
{
    if (!global::mpi().isMainProcessor()) {
        return;
    }
    if (numTriangles == 0) {
        return;
    }
    std::vector<Array<T,3> > posVect(getNumVertices());
    T maxLimit = std::numeric_limits<T>::max();
    T minLimit = std::numeric_limits<T>::min();
    Array<T,3> minPos(maxLimit,maxLimit,maxLimit), maxPos(minLimit,minLimit,minLimit);
    for (plint i=0; i<getNumVertices(); ++i) {
        posVect[i] = (*vertexList)[i];
        if (posVect[i][0]<minPos[0]) minPos[0] = posVect[i][0];
        if (posVect[i][1]<minPos[1]) minPos[1] = posVect[i][1];
        if (posVect[i][2]<minPos[2]) minPos[2] = posVect[i][2];
        if (posVect[i][0]>maxPos[0]) maxPos[0] = posVect[i][0];
        if (posVect[i][1]>maxPos[1]) maxPos[1] = posVect[i][1];
        if (posVect[i][2]>maxPos[2]) maxPos[2] = posVect[i][2];
    }

    T diffx = maxPos[0]-minPos[0];
    T diffy = maxPos[1]-minPos[1];
    T diffz = maxPos[2]-minPos[2];
    T diff = std::max(diffx,std::max(diffy,diffz));
    T dx_nonDim = (T)2./diff;
    Array<T,3> offset_nonDim (
                 -((T)1.0+minPos[0]/diff),
                 -((T)1.0+minPos[1]/diff),
                 -((T)1.0+minPos[2]/diff) );
    for (plint i=0; i<getNumVertices(); ++i) {
        posVect[i] *= dx_nonDim;
        posVect[i] += offset_nonDim;
    }
    T dx_ndToPhys = phys_dx/dx_nonDim;
    Array<T,3> location_ndToPhys = phys_location-dx_ndToPhys*offset_nonDim;
    
    std::ofstream ofile(fname.c_str());
    ofile << std::fixed << std::setprecision(5);
    ofile << "<!DOCTYPE HTML>\n";
    ofile << "<html>\n";
    ofile << "    <head>\n";
    ofile << "        <title>" << "Palabos Geometry" << "</title>\n";
    ofile << "        <link rel=\"stylesheet\" type=\"text/css\" href=\"http://www.x3dom.org/download/x3dom.css\">\n";
    ofile << "        <script type=\"text/javascript\" src=\"http://www.x3dom.org/download/1.4/x3dom-full.js\">\n";
    ofile << "        </script>\n";

    ofile << "        <script type=\"text/javascript\">\n";
    ofile << "            var scale = " << std::setprecision(5) << dx_ndToPhys << ";\n";
    ofile << "            var offset = new Array(" << std::setprecision(5)
          << location_ndToPhys[0] << ","
          << location_ndToPhys[1] << ","
          << location_ndToPhys[2] << ");\n";
    ofile << "        </script>\n";
    ofile << "    </head>\n";
    ofile << "    <x3d style=\"width: 100%; height :100%\">\n";
    ofile << "        <scene>\n";
    ofile << "            <shape>\n";
    ofile << "            <indexedtriangleset index=\"";

    for (plint iTriangle=0; iTriangle<getNumTriangles(); ++iTriangle) {
        plint i0 = getVertexId(iTriangle, 0);
        plint i1 = getVertexId(iTriangle, 1);
        plint i2 = getVertexId(iTriangle, 2);
        ofile << i0 << " " << i1 << " " << i2 << " ";
    }
    ofile << "\" solid=\"false\">\n";
    ofile << "            <coordinate point=\"";
    for (plint iVertex=0; iVertex<getNumVertices(); ++iVertex) {
        ofile << posVect[iVertex][0] << " "
              << posVect[iVertex][1] << " "
              << posVect[iVertex][2];
        if (iVertex < getNumVertices()-1) {
            ofile << " ";
        }
    }
    ofile << "\"> </coordinate>\n";
    ofile << "            <normal vector=\"";
    for (plint iVertex=0; iVertex<getNumVertices(); ++iVertex) {
        Array<T,3> normal = computeVertexNormal(iVertex);
        ofile << normal[0] << " "
              << normal[1] << " "
              << normal[2];
        if (iVertex < getNumVertices()-1) {
            ofile << " ";
        }
    }
    ofile << "\"> </normal>\n";
    ofile << "            </indexedtriangleset>\n";
    ofile << "            </shape>\n";
    ofile << "            <viewpoint position=\'0.0 0.0 4.0\' orientation=\'0.0 0.0 0.0 0.0\'></viewpoint>\n";
    ofile << "        </scene>\n";
    ofile << "    </x3d>\n";
    ofile << "</html>\n";
}

template<typename T>
void TriangularSurfaceMesh<T>::writeX3D(std::string fname)
{
    writeX3D(fname, "Palabos X3D output", T(), Array<T,3>((T)0.,(T)0.,(T)0.));
}

template<typename T>
void TriangularSurfaceMesh<T>::writeX3D (
        std::string fname, std::string title, T phys_dx, Array<T,3> phys_location)
{
    if (!global::mpi().isMainProcessor()) {
        return;
    }
    if (numTriangles == 0) {
        return;
    }
    std::vector<Array<T,3> > posVect(getNumVertices());
    T maxLimit = std::numeric_limits<T>::max();
    T minLimit = std::numeric_limits<T>::min();
    Array<T,3> minPos(maxLimit,maxLimit,maxLimit), maxPos(minLimit,minLimit,minLimit);
    for (plint i=0; i<getNumVertices(); ++i) {
        posVect[i] = (*vertexList)[i];
        if (posVect[i][0]<minPos[0]) minPos[0] = posVect[i][0];
        if (posVect[i][1]<minPos[1]) minPos[1] = posVect[i][1];
        if (posVect[i][2]<minPos[2]) minPos[2] = posVect[i][2];
        if (posVect[i][0]>maxPos[0]) maxPos[0] = posVect[i][0];
        if (posVect[i][1]>maxPos[1]) maxPos[1] = posVect[i][1];
        if (posVect[i][2]>maxPos[2]) maxPos[2] = posVect[i][2];
    }

    T diffx = maxPos[0]-minPos[0];
    T diffy = maxPos[1]-minPos[1];
    T diffz = maxPos[2]-minPos[2];
    T diff = std::max(diffx,std::max(diffy,diffz));
    T dx_nonDim = (T)2./diff;
    Array<T,3> offset_nonDim (
                 -((T)1.0+minPos[0]/diff),
                 -((T)1.0+minPos[1]/diff),
                 -((T)1.0+minPos[2]/diff) );
    for (plint i=0; i<getNumVertices(); ++i) {
        posVect[i] *= dx_nonDim;
        posVect[i] += offset_nonDim;
    }
    
    std::ofstream ofile(fname.c_str());
    ofile << std::fixed << std::setprecision(5);
    ofile << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
    ofile << "<!DOCTYPE X3D PUBLIC \"ISO//Web3D//DTD X3D 3.0//EN\" \"http://www.web3d.org/specifications/x3d-3.0.dtd\">\n";
    ofile << "<X3D version=\"3.0\" profile=\"Immersive\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema-instance\" xsd:noNamespaceSchemaLocation=\"http://www.web3d.org/specifications/x3d-3.0.xsd\">\n";
    ofile << "        <Scene>\n";
    ofile << "            <Shape>\n";
    ofile << "            <IndexedFaceSet coordIndex=\"";

    for (plint iTriangle=0; iTriangle<getNumTriangles(); ++iTriangle) {
        plint i0 = getVertexId(iTriangle, 0);
        plint i1 = getVertexId(iTriangle, 1);
        plint i2 = getVertexId(iTriangle, 2);
        ofile << i0 << " " << i1 << " " << i2 << " -1 ";
    }
    ofile << "\" solid=\"false\">\n";
    ofile << "            <Coordinate point=\"";
    for (plint iVertex=0; iVertex<getNumVertices(); ++iVertex) {
        ofile << posVect[iVertex][0] << " "
              << posVect[iVertex][1] << " "
              << posVect[iVertex][2];
        if (iVertex < getNumVertices()-1) {
            ofile << " ";
        }
    }
    ofile << "\"/>\n";
    ofile << "            <Normal vector=\"";
    for (plint iVertex=0; iVertex<getNumVertices(); ++iVertex) {
        Array<T,3> normal = computeVertexNormal(iVertex);
        ofile << normal[0] << " "
              << normal[1] << " "
              << normal[2];
        if (iVertex < getNumVertices()-1) {
            ofile << " ";
        }
    }
    ofile << "\"/>\n";
    ofile << "            </IndexedFaceSet>\n";
    ofile << "            </Shape>\n";
    ofile << "        </Scene>\n";
    ofile << "    </X3D>\n";
}

} // namespace plb

#endif  // TRIANGULAR_SURFACE_MESH_HH