|
Blender V4.3
|
#include <algorithm>#include <sstream>#include "BKE_attribute.hh"#include "BKE_blender_version.h"#include "BKE_mesh.hh"#include "BLI_color.hh"#include "BLI_enumerable_thread_specific.hh"#include "BLI_math_matrix.hh"#include "BLI_path_utils.hh"#include "BLI_string.h"#include "BLI_task.hh"#include "IO_path_util.hh"#include "obj_export_mesh.hh"#include "obj_export_mtl.hh"#include "obj_export_nurbs.hh"#include "obj_export_file_writer.hh"Go to the source code of this file.
Namespaces | |
| namespace | blender |
| namespace | blender::io |
| namespace | blender::io::obj |
Functions | |
| static void | blender::io::obj::spaces_to_underscores (std::string &r_name) |
| static int | blender::io::obj::calc_chunk_count (int count) |
| template<typename Function > | |
| void | blender::io::obj::obj_parallel_chunked_output (FormatHandler &fh, int tot_count, const Function &function) |
| static int | blender::io::obj::get_smooth_group (const OBJMesh &mesh, const OBJExportParams ¶ms, int face_idx) |
Variables | |
| const int | blender::io::obj::SMOOTH_GROUP_DISABLED = 0 |
| const int | blender::io::obj::SMOOTH_GROUP_DEFAULT = 1 |
| static const char * | blender::io::obj::DEFORM_GROUP_DISABLED = "off" |
| static const char * | blender::io::obj::MATERIAL_GROUP_DISABLED = "" |
| static const int | blender::io::obj::chunk_size = 32768 |
<tt>.MTL</tt> writers. | |
| static const char * | blender::io::obj::tex_map_type_to_string [] |
| blender::io::obj::BLI_STATIC_ASSERT (ARRAY_SIZE(tex_map_type_to_string)==int(MTLTexMapType::Count), "array size mismatch") | |
| static std::string | blender::io::obj::float3_to_string (const float3 &numbers) |
| static bool | blender::io::obj::is_pbr_map (MTLTexMapType type) |
| static bool | blender::io::obj::is_non_pbr_map (MTLTexMapType type) |