qtgraphs/examples/graphs/3d/widgetgraphgallery/surfacegraphwidget.cpp

19 lines
474 B
C++

// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#include "surfacegraphwidget.h"
SurfaceGraphWidget::SurfaceGraphWidget() = default;
SurfaceGraphWidget::~SurfaceGraphWidget() = default;
void SurfaceGraphWidget::initialize()
{
m_surfaceGraph = new Q3DSurfaceWidgetItem();
m_surfaceGraph->setWidget(this);
}
Q3DSurfaceWidgetItem *SurfaceGraphWidget::surfaceGraph() const
{
return m_surfaceGraph;
}