add this->

This commit is contained in:
Kenneth Moreland 2024-01-03 17:43:26 -05:00 committed by Roxana Bujack
parent 4fabc168ef
commit 60fdcbaf70

@ -70,7 +70,8 @@ struct CompareIndices
}
else
{
return (vtkm::Dot(Centers[i], CameraDirection) < vtkm::Dot(Centers[j], CameraDirection));
return (vtkm::Dot(this->Centers[i], this->CameraDirection) <
vtkm::Dot(this->Centers[j], this->CameraDirection));
}
}
};