SPH
|
#include <ParticleRenderer.h>
Public Member Functions | |
ParticleRenderer (const GuiSettings &settings) | |
virtual void | initialize (const Storage &storage, const IColorizer &colorizer, const ICamera &camera) override |
Prepares the objects for rendering and updates its data. More... | |
virtual bool | isInitialized () const override |
Checks if the renderer has been initialized. More... | |
virtual void | render (const RenderParams ¶ms, Statistics &stats, IRenderOutput &output) const override |
Draws particles into the bitmap, given the data provided in initialize. More... | |
virtual void | cancelRender () override |
Stops the rendering if it is currently in progress. More... | |
![]() | |
virtual | ~Polymorphic () |
Definition at line 26 of file ParticleRenderer.h.
|
explicit |
Definition at line 190 of file ParticleRenderer.cpp.
|
overridevirtual |
Stops the rendering if it is currently in progress.
Implements IRenderer.
Definition at line 387 of file ParticleRenderer.cpp.
|
overridevirtual |
Prepares the objects for rendering and updates its data.
Called every time a parameter changes. Renderer should cache any data necessary for rendering of particles (particle positions, colors, etc.).
storage | Storage containing positions of particles, must match the particles in colorizer. |
colorizer | Data-to-color conversion object for particles. Must be already initialized! |
camera | Camera used for rendering. |
Implements IRenderer.
Definition at line 199 of file ParticleRenderer.cpp.
|
overridevirtual |
Checks if the renderer has been initialized.
Implements IRenderer.
Definition at line 269 of file ParticleRenderer.cpp.
|
overridevirtual |
Draws particles into the bitmap, given the data provided in initialize.
This function is called every time the view changes (display parameters change, camera pan & zoom, ...). Implementation shall be callable from any thread, but does not have to be thread-safe (never will be executed from multiple threads at once).
params | Parameters of the render |
stats | Input-output parameter, contains run statistics that can be included in the render (run time, timestep, ...), renderers can also output some statistics of their own (time used in rendering, framerate, ...) |
Implements IRenderer.
Definition at line 290 of file ParticleRenderer.cpp.
Vector ParticleRenderer::cameraDir |
Camera direction for which the cached values have been sorted.
Definition at line 49 of file ParticleRenderer.h.
Colors of particles assigned by the colorizer.
Definition at line 40 of file ParticleRenderer.h.
Indices (in parent storage) of particles.
Definition at line 37 of file ParticleRenderer.h.
Color palette or NOTHING if no palette is drawn.
Definition at line 46 of file ParticleRenderer.h.
Positions of particles.
Definition at line 34 of file ParticleRenderer.h.
Vectors representing the colorized quantity. May be empty.
Definition at line 43 of file ParticleRenderer.h.