From af1740bde341ef7703696cb7fd26d66cd8a37462 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 14 May 2024 17:26:52 -0400 Subject: move classes to headers --- world.h | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 world.h (limited to 'world.h') diff --git a/world.h b/world.h new file mode 100644 index 0000000..4e01bcf --- /dev/null +++ b/world.h @@ -0,0 +1,38 @@ +#ifndef WORLD_H +#define WORLD_H + +#include "sphere.h" + +#include +#include +#include +#include + +struct World +{ + std::vector objects; + + void add(auto&&... args) { + objects.emplace_back(args...); + } + + std::optional> hit(const ray& r) const { + double closest = std::numeric_limits::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::infinity()) + return std::pair {closest, sphere}; + else + return {}; + } +}; + +#endif // WORLD_H + -- cgit v1.2.3