| 1 | // Copyright (C) 2016 The Qt Company Ltd. |
|---|---|
| 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only |
| 3 | |
| 4 | #include "scatterrenderitem_p.h" |
| 5 | |
| 6 | QT_BEGIN_NAMESPACE |
| 7 | |
| 8 | ScatterRenderItem::ScatterRenderItem() |
| 9 | : AbstractRenderItem(), |
| 10 | m_visible(false) |
| 11 | { |
| 12 | } |
| 13 | |
| 14 | ScatterRenderItem::ScatterRenderItem(const ScatterRenderItem &other) |
| 15 | : AbstractRenderItem(other) |
| 16 | { |
| 17 | m_position = other.m_position; |
| 18 | m_visible = other.m_visible; |
| 19 | } |
| 20 | |
| 21 | ScatterRenderItem::~ScatterRenderItem() |
| 22 | { |
| 23 | } |
| 24 | |
| 25 | QT_END_NAMESPACE |
| 26 |
