We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a4c00b commit fdcb465Copy full SHA for fdcb465
1 file changed
src/ScatterplotPlugin.cpp
@@ -579,9 +579,9 @@ void ScatterplotPlugin::samplePoints()
579
if (getSamplerAction().getRestrictNumberOfElementsAction().isChecked() && numberOfPoints >= getSamplerAction().getMaximumNumberOfElementsAction().getValue())
580
break;
581
582
- const auto& distance = sampledPoint.first;
583
- const auto& localPointIndex = sampledPoint.second;
584
- const auto& globalPointIndex = localGlobalIndices[localPointIndex];
+ const auto& distance = sampledPoint.first;
+ const auto& localPointIndex = sampledPoint.second;
+ const auto& globalPointIndex = localGlobalIndices[localPointIndex];
585
586
distances << distance;
587
localPointIndices << localPointIndex;
0 commit comments