mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Changed to 1-based IJK indices in Octave NNC interface
This commit is contained in:
parent
8edac70013
commit
0a58a752ff
@ -86,7 +86,7 @@ public:
|
||||
hostGrid->ijkFromCellIndex(gridLocalCellIndex, &i, &j, &k);
|
||||
|
||||
socketStream << (qint32)hostGrid->gridIndex();
|
||||
socketStream << (qint32)i << (qint32)j << (qint32)k;
|
||||
socketStream << (qint32)(i+1) << (qint32)(j+1) << (qint32)(k+1);
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user