Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-04-05 00:44:36 +0300
committerCampbell Barton <campbell@blender.org>2022-04-05 00:49:36 +0300
commit744369c1144ec4c4685732e6fb06ba7b9513de41 (patch)
tree88576f816d27f989d9a851e2c564eaa6410cfcc0 /source/blender/io/wavefront_obj/IO_wavefront_obj.h
parent22184f3aeef6181dd755579753ea6c92b2117578 (diff)
Cleanup: move doc-strings into headers
- The comment for create_normals was moved into an inline note as it's not related to the public API. - Use a colon after parameters. Ref T92709
Diffstat (limited to 'source/blender/io/wavefront_obj/IO_wavefront_obj.h')
-rw-r--r--source/blender/io/wavefront_obj/IO_wavefront_obj.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/io/wavefront_obj/IO_wavefront_obj.h b/source/blender/io/wavefront_obj/IO_wavefront_obj.h
index b80c1e073b8..b06ccbf8702 100644
--- a/source/blender/io/wavefront_obj/IO_wavefront_obj.h
+++ b/source/blender/io/wavefront_obj/IO_wavefront_obj.h
@@ -86,8 +86,14 @@ struct OBJImportParams {
eTransformAxisUp up_axis;
};
+/**
+ * Time the full import process.
+ */
void OBJ_import(bContext *C, const struct OBJImportParams *import_params);
+/**
+ * C-interface for the exporter.
+ */
void OBJ_export(bContext *C, const struct OBJExportParams *export_params);
#ifdef __cplusplus