From 2fdb9c3e87dbfd4127c89960771e2aab53809ac7 Mon Sep 17 00:00:00 2001
From: LE GARREC Vincent <github@le-garrec.fr>
Date: Fri, 21 Jun 2024 11:22:01 +0200
Subject: [PATCH] Improve doc of vtkColorTransferFunction::SetRange

---
 Rendering/Core/vtkColorTransferFunction.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Rendering/Core/vtkColorTransferFunction.h b/Rendering/Core/vtkColorTransferFunction.h
index 1c8a2431e9a..8daeee49eb1 100644
--- a/Rendering/Core/vtkColorTransferFunction.h
+++ b/Rendering/Core/vtkColorTransferFunction.h
@@ -429,12 +429,14 @@ protected:
    */
   int TableSize;
 
+  ///@{
   /**
    * Set the range of scalars being mapped. This method has no functionality
    * in this subclass of vtkScalarsToColors.
    */
   void SetRange(double, double) override {}
   void SetRange(const double rng[2]) override { this->SetRange(rng[0], rng[1]); }
+  ///@}
 
   /**
    * Internal method to sort the vector and update the
-- 
GitLab