Physics Simulation & Visualization Tool 0.1
A C++ physics simulation engine with real-time 3D visualization
Loading...
Searching...
No Matches
ScenePresets.cpp
Go to the documentation of this file.
2
4
5namespace {
6constexpr ScenePresets::PresetDescriptor kPresets[] = {
7 {
8 "Astronomical Systems",
9 "Real Solar System",
10 "Real-scale Sun, planets, and Moon generated from orbital elements.",
12 },
13};
14}
15
16namespace ScenePresets {
17
18std::span<const PresetDescriptor> all() {
19 return kPresets;
20}
21
22}
void createRealSolarSystem(SceneManager &sceneManager)
std::span< const PresetDescriptor > all()