Blue Brain BioExplorer
Renderer.cpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015-2024, EPFL/Blue Brain Project
3  *
4  * The Blue Brain BioExplorer is a tool for scientists to extract and analyse
5  * scientific data from visualization
6  *
7  * This file is part of Blue Brain BioExplorer <https://github.com/BlueBrain/BioExplorer>
8  *
9  * This library is free software; you can redistribute it and/or modify it under
10  * the terms of the GNU Lesser General Public License version 3.0 as published
11  * by the Free Software Foundation.
12  *
13  * This library is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with this library; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21  */
22 
25 
26 #include "Renderer.h"
27 
28 namespace core
29 {
30 Renderer::Renderer(const AnimationParameters& animationParameters, const RenderingParameters& renderingParameters)
31  : _animationParameters(animationParameters)
32  , _renderingParameters(renderingParameters)
33 {
34  _currentType = RENDERER_PROPERTY_TYPE_BASIC;
35 }
36 } // namespace core
std::string _currentType
PLATFORM_API Renderer(const AnimationParameters &animationParameters, const RenderingParameters &renderingParameters)
Constructs the Renderer object with animationParameters and renderingParameters.
Definition: Renderer.cpp:30