File: obj_writer.h

package info (click to toggle)
tinyobjloader 2.0.0~rc13%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,524 kB
  • sloc: cpp: 7,030; python: 120; sh: 57; makefile: 45
file content (8 lines) | stat: -rw-r--r-- 328 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
#ifndef __OBJ_WRITER_H__
#define __OBJ_WRITER_H__

#include "../../tiny_obj_loader.h"

extern bool WriteObj(const std::string& filename, const tinyobj::attrib_t& attributes, const std::vector<tinyobj::shape_t>& shapes, const std::vector<tinyobj::material_t>& materials, bool coordTransform = false);

#endif // __OBJ_WRITER_H__