t
Loading...
Searching...
No Matches
Scene.hpp
1#include "Object3D.hpp"
2#include <memory>
3#include <vector>
4
5#ifndef SCENE_HPP
6#define SCENE_HPP
7
8namespace t {
9
18class Scene : public Object3D {};
19
20} // namespace t
21
22#endif // SCENE_HPP
The 3D object class.
Definition Object3D.hpp:24
The 3D scene class.
Definition Scene.hpp:18
The t software 3D graphics library namespace.
Definition algorithms.hpp:12