diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-05-14 17:26:52 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-05-14 17:26:52 -0400 |
commit | af1740bde341ef7703696cb7fd26d66cd8a37462 (patch) | |
tree | cc2276fbe88fd225f068a0eb89ea8b28846f4961 /world.h | |
parent | 8a8fab0c68d867d1e1e870252819d15e2b6d0c6f (diff) |
move classes to headers
Diffstat (limited to 'world.h')
-rw-r--r-- | world.h | 38 |
1 files changed, 38 insertions, 0 deletions
@@ -0,0 +1,38 @@ +#ifndef WORLD_H +#define WORLD_H + +#include "sphere.h" + +#include <limits> +#include <optional> +#include <tuple> +#include <vector> + +struct World +{ + std::vector<Sphere> objects; + + void add(auto&&... args) { + objects.emplace_back(args...); + } + + std::optional<std::pair<double, Sphere>> hit(const ray& r) const { + double closest = std::numeric_limits<double>::infinity(); + Sphere sphere; + + for (const auto& o : objects) { + if (auto t = o.hit(r, 0.001, closest); t) { + closest = *t; + sphere = o; + } + } + + if (closest != std::numeric_limits<double>::infinity()) + return std::pair {closest, sphere}; + else + return {}; + } +}; + +#endif // WORLD_H + |