summaryrefslogtreecommitdiffstats
path: root/src/datavisualization/engine
diff options
context:
space:
mode:
Diffstat (limited to 'src/datavisualization/engine')
-rw-r--r--src/datavisualization/engine/q3dsurface.cpp10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/datavisualization/engine/q3dsurface.cpp b/src/datavisualization/engine/q3dsurface.cpp
index 5705cc30..7724cb24 100644
--- a/src/datavisualization/engine/q3dsurface.cpp
+++ b/src/datavisualization/engine/q3dsurface.cpp
@@ -32,8 +32,8 @@ QT_BEGIN_NAMESPACE_DATAVISUALIZATION
* \since Qt Data Visualization 1.0
*
* This class enables developers to render 3D surface plots and to view them by rotating the scene
- * freely. The surface plotting includes also gridline that can be set on or off.
- * The visual appearance of the surface can be changed by controlling the smooth status.
+ * freely. The visual properties of the surface such as draw mode and shading can be controlled
+ * via QSurface3DSeries.
*
* The Q3DSurface supports selection by showing a highlighted ball on the data point where the user has clicked
* with left mouse button (when default input handler is in use) or selected via QSurface3DSeries.
@@ -49,8 +49,6 @@ QT_BEGIN_NAMESPACE_DATAVISUALIZATION
* These default axes can be modified via axis accessors, but as soon any axis is set explicitly
* for the orientation, the default axis for that orientation is destroyed.
*
- * Q3DSurface supports only single series at a time.
- *
* \section1 How to construct a minimal Q3DSurface graph
*
* First, construct Q3DSurface. Since we are running the graph as top level window
@@ -113,8 +111,6 @@ Q3DSurface::~Q3DSurface()
/*!
* Adds the \a series to the graph.
- *
- * \note The surface graph currently supports only a single series at a time.
*/
void Q3DSurface::addSeries(QSurface3DSeries *series)
{
@@ -131,8 +127,6 @@ void Q3DSurface::removeSeries(QSurface3DSeries *series)
/*!
* \return list of series added to this graph.
- *
- * \note The surface graph currently supports only a single series at a time.
*/
QList<QSurface3DSeries *> Q3DSurface::seriesList() const
{