TinyURDF 1.0.0
A Modern C++ Library for Parsing and Visualizing URDF Model Files
Loading...
Searching...
No Matches
vtk_world_renderer.h
Go to the documentation of this file.
1#ifndef TINYURDF_WORLD_RENDERER_H_
2#define TINYURDF_WORLD_RENDERER_H_
3
4// Copyright 2025 Wissem CHIHA
5
6#include "renderer_base.h"
7#include "world.h"
8
9template<typename... PropertyBase>
10class vtkWorldRenderer : public RendererBase<World<PropertyBase...>>
11{
12public:
15private:
16};
17#endif // TINYURDF_WORLD_RENDERER_H_
Definition property_base.h:9
this is a base class for all renderers all renderers impentation should inherit from this class at th...
Definition renderer_base.h:15
Definition vtk_world_renderer.h:11