summaryrefslogtreecommitdiffstats
path: root/src/datavisualization/data/abstractrenderitem.cpp
blob: e3811fd1d753673ad48690a88c6663a56f997f65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#include "abstractrenderitem_p.h"

QT_BEGIN_NAMESPACE

AbstractRenderItem::AbstractRenderItem()
{
}

AbstractRenderItem::AbstractRenderItem(const AbstractRenderItem &other)
{
    m_translation = other.m_translation;
    m_rotation = other.m_rotation;
}

AbstractRenderItem::~AbstractRenderItem()
{
}

QT_END_NAMESPACE