Skip to content

Commit 95e1ec8

Browse files
committed
Fix wrong indexes in BMPDumper
1 parent 11f4cc7 commit 95e1ec8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Source/File-Management/Dumper/BMPDumper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1060,7 +1060,7 @@ BMPDumper<GridCoordinate3D>::writeToFile (Grid<GridCoordinate3D> &grid, GridFile
10601060
}
10611061
else if (BMPhelper.getOrthogonalAxis () == OrthogonalAxis::Z)
10621062
{
1063-
pos = GridCoordinate3D (coord3, coord1, coord2);
1063+
pos = GridCoordinate3D (coord2, coord3, coord1);
10641064
}
10651065

10661066
// Get current point value.

0 commit comments

Comments
 (0)