Skip to content
Snippets Groups Projects
Verified Commit 2fdb9c3e authored by Vincent Le Garrec's avatar Vincent Le Garrec
Browse files

Improve doc of vtkColorTransferFunction::SetRange

parent 0144a227
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
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