Changeset View
Changeset View
Standalone View
Standalone View
source/blender/io/wavefront_obj/IO_wavefront_obj.h
| Context not available. | |||||
| #include "BKE_context.h" | #include "BKE_context.h" | ||||
| #include "BLI_path_util.h" | #include "BLI_path_util.h" | ||||
| #include "DEG_depsgraph.h" | #include "DEG_depsgraph.h" | ||||
| #include "IO_path_util_types.h" | |||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| extern "C" { | extern "C" { | ||||
| Context not available. | |||||
| struct OBJExportParams { | struct OBJExportParams { | ||||
| /** Full path to the destination .OBJ file. */ | /** Full path to the destination .OBJ file. */ | ||||
| char filepath[FILE_MAX]; | char filepath[FILE_MAX]; | ||||
| /** Pretend that destination file folder is this, if non-empty. Used only for tests. */ | |||||
| char file_base_for_tests[FILE_MAX]; | |||||
| /** Full path to current blender file (used for comments in output). */ | /** Full path to current blender file (used for comments in output). */ | ||||
| const char *blen_filepath; | const char *blen_filepath; | ||||
| Context not available. | |||||
| bool export_materials; | bool export_materials; | ||||
| bool export_triangulated_mesh; | bool export_triangulated_mesh; | ||||
| bool export_curves_as_nurbs; | bool export_curves_as_nurbs; | ||||
| ePathReferenceMode path_mode; | |||||
| /* Grouping options. */ | /* Grouping options. */ | ||||
| bool export_object_groups; | bool export_object_groups; | ||||
| Context not available. | |||||