From da3a9d21f5dbbc50d6db9cde81a96f7af9bba093 Mon Sep 17 00:00:00 2001 From: Miikka Heikkinen Date: Tue, 11 Feb 2014 14:28:37 +0200 Subject: Remove mentions about only supporting single surface Change-Id: I3daec1f80eb0c984c1ecc6e3defe81c795dd0077 Reviewed-by: Mika Salmela --- .../doc/src/qtdatavisualization-qml-surface3d.qdoc | 2 -- src/datavisualization/engine/q3dsurface.cpp | 10 ++-------- 2 files changed, 2 insertions(+), 10 deletions(-) (limited to 'src/datavisualization') diff --git a/src/datavisualization/doc/src/qtdatavisualization-qml-surface3d.qdoc b/src/datavisualization/doc/src/qtdatavisualization-qml-surface3d.qdoc index 0cc2a5ab..576496b9 100644 --- a/src/datavisualization/doc/src/qtdatavisualization-qml-surface3d.qdoc +++ b/src/datavisualization/doc/src/qtdatavisualization-qml-surface3d.qdoc @@ -88,13 +88,11 @@ * This property holds the series of the graph. * By default, this property contains an empty list. * To set the series, either use the addSeries() function or define them as children of the graph. - * \note The surface graph currently supports only a single series at a time. */ /*! * \qmlmethod void Surface3D::addSeries(Surface3DSeries series) * Adds the \a series to the graph. - * \note The surface graph currently supports only a single series at a time. */ /*! 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 Q3DSurface::seriesList() const { -- cgit v1.2.3