File: obj_writer.h

package info (click to toggle)
tinyobjloader 2.0.0~rc5%2Bdfsg1-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,280 kB
  • sloc: cpp: 5,860; python: 113; makefile: 38; sh: 31
file content (8 lines) | stat: -rw-r--r-- 328 bytes parent folder | download | duplicates (3)
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__