5 #include <visualhelios/VHCanvas.h>
7 namespace visualhelios{
Visual Helios Canvas is a class which provides the base mechanisms to implement Helios visualizations...
Definition: VHCanvas.h:29
string const title
The title of the visual Helios canvas.
Definition: VHCanvas.h:36
Visual Helios Dynamic Canvas is a class which provides the basis layer to deal with dynamic objects r...
Definition: VHDynCanvas.h:15
VHDynCanvas()
Default constructor for the visual Helios dynamic canvas.
Definition: VHDynCanvas.h:32
virtual bool isNeedingUpdate() const
Check whether the dynamic canvas needs an update no matter what (true) or not (false)
Definition: VHDynCanvas.h:80
bool needsUpdate
Control whether an update is needed even when dynamic objects themselves have not been updated (true)...
Definition: VHDynCanvas.h:23
void postUpdate() override
Defines the default post update behavior for dynamic canvas and derived classes.
Definition: VHDynCanvas.cpp:10
VHDynCanvas(string const title)
Constructor for the visual Helios dynamic canvas which allows for title specification.
Definition: VHDynCanvas.h:39
virtual void setNeedsUpdate(bool const needsUpdate)
Specify if the dynamic canvas needs an update no matter what (true) or not (false)
Definition: VHDynCanvas.h:87