Shape.h 213 B
#pragma once
#include "../camera/Hit.h"
#include "../camera/Ray.h"
namespace shapes {
class Shape {
public:
virtual std::shared_ptr<cam::Hit> intersect(const cam::Ray& r) const = 0;
};
} // namespace shapes
Added const and override to all material-interface functions, sampler-function color, shape-function intersect.
Added const and override to all material-interface functions, sampler-function color, shape-function intersect.
#pragma once
#include "../camera/Hit.h"
#include "../camera/Ray.h"
namespace shapes {
class Shape {
public:
virtual std::shared_ptr<cam::Hit> intersect(const cam::Ray& r) const = 0;
};
} // namespace shapes