Skip to content
Snippets Groups Projects
Commit e95318e7 authored by Hahn, Steven's avatar Hahn, Steven
Browse files

Fix release notes.

parent 7242a57a
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,7 @@ SliceViewer Improvements
- SliceViewer input of number of bins, thickness, and slice point now waits until the editing is finished to rebin or changing slice point instead of changing with each digit entered.
VSI Improvements
---------------
----------------
- ParaView has been updated to to `v5.4.0 <https://blog.kitware.com/paraview-5-4-0-release-notes/>`_.
.. figure:: ../../images/LaNaF4_3D_Slices.png
......
......@@ -154,7 +154,7 @@ void AlignedCutter::AlignedStructuredGridCutter(vtkDataSet *dataSetInput,
} else if (AxisNumber == 2) {
for (int i = 0; i < celldims[0]; ++i) {
for (int j=0; j < celldims[1]; ++j) {
auto index = i + j * celldims[0] + min * cd01;
vtkIdType index = i + j * celldims[0] + min * cd01;
if (input->IsCellVisible(index)) {
double x[3];
inPts->GetPoint(i + j * dims[0] + min * d01, x);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment