Kstars

mosaicrenderer.cpp
1/*
2 SPDX-FileCopyrightText: 2022 Jasem Mutlaq
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7#include "mosaicrenderer.h"
8#include "mosaictilesmanager.h"
9#include "projections/projector.h"
10
11namespace Ekos
12{
13
14MosaicRenderer::MosaicRenderer()
15{
16 m_TilesManager = new MosaicTilesManager(this);
17 m_TilesScene.addItem(m_TilesManager);
18}
19
20bool MosaicRenderer::render(uint16_t w, uint16_t h, QImage *image, const Projector *m_proj)
21{
22 return false;
23}
24
25}
The Projector class is the primary class that serves as an interface to handle projections.
Definition projector.h:58
Ekos is an advanced Astrophotography tool for Linux.
Definition align.cpp:78
void addItem(QGraphicsItem *item)
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:19:03 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.