* \brief Add a function point at position (x, val). * \param[in] x The scalar position. * \param[in] val The opacity value [0, 1]. * \return Index of the added point. */
| 78 | * \return Index of the added point. |
| 79 | */ |
| 80 | int AddFunctionPoint(double x, double val) override { return m_PiecewiseFunction->AddPoint(x, val); } |
| 81 | |
| 82 | /** |
| 83 | * \brief Remove the function point at position x. |
no test coverage detected