scenepic 1.1.0
3D Visualization Made Easy
io.h
Go to the documentation of this file.
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4#ifndef _SCENEPIC_IO_H_
5#define _SCENEPIC_IO_H_
6
7#include "mesh_info.h"
8
9#include <iostream>
10#include <memory>
11#include <string>
12
13namespace scenepic
14{
21 std::shared_ptr<MeshInfo> load_obj(const std::string& path);
22
29 std::shared_ptr<MeshInfo> load_obj(std::istream& stream);
30}
31
32#endif
Definition: audio_track.h:14
std::shared_ptr< MeshInfo > load_obj(const std::string &path)
Load the geometry of a WaveFront OBJ file from a location on disk.