opynsim
Unofficial C++ Documentation
Loading...
Searching...
No Matches
overlay_decoration_generator.h
Go to the documentation of this file.
1#pragma once
2
3#include <functional>
4
5namespace opyn { class OverlayDecorationOptions; }
6namespace osc { class BVH; }
7namespace osc { struct SceneDecoration; }
8namespace osc { class SceneCache; }
9
10namespace opyn
11{
12 // generates 3D overlays for the given options and passes them to the
13 // output consumer
17 const osc::BVH& sceneBVH,
18 float fixupScaleFactor,
19 const std::function<void(osc::SceneDecoration&&)>& out
20 );
21}
Definition overlay_decoration_options.h:14
Definition bvh.h:23
Definition scene_cache.h:25
Definition component_registry.h:14
void GenerateOverlayDecorations(osc::SceneCache &, const OverlayDecorationOptions &, const osc::BVH &sceneBVH, float fixupScaleFactor, const std::function< void(osc::SceneDecoration &&)> &out)
Definition custom_decoration_generator.h:5
Definition scene_decoration.h:15