Skip to content
Snippets Groups Projects
Background.h 289 B
Newer Older
Postea's avatar
Postea committed
#pragma once
Postea's avatar
Postea committed
#include "Shape.h"
Postea's avatar
Postea committed
namespace shapes {
class Background : public Shape {
public:
    Background(const std::shared_ptr<material::Material>& material);
    std::shared_ptr<cam::Hit> intersect(const cam::Ray& r);
Postea's avatar
Postea committed

    std::shared_ptr<material::Material> material;