Skip to content
Snippets Groups Projects
ObjectLoader.h 250 B
#pragma once

#include <fstream>
#include <vector>

#include "../shape/Triangle.h"

namespace util {
std::vector<shapes::Triangle> loadObj(
    std::istream& in,
    const std::shared_ptr<material::Material>& material = nullptr);
}  // namespace util