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-03-02 04:07:18 +0300
committerCampbell Barton <campbell@blender.org>2022-03-02 04:11:08 +0300
commitaa500c4fcabe7dad834b91572c75bee760041ede (patch)
tree4dd6884ac9713cf3e8fd64a1050c49c6833b58d6 /source/blender/io/wavefront_obj
parenteabdcdcd44b93943dc5aa595c7614d5ccdd11d6e (diff)
Cleanup: use back-slash for doxygen commands, color after parameters
Diffstat (limited to 'source/blender/io/wavefront_obj')
-rw-r--r--source/blender/io/wavefront_obj/exporter/obj_export_io.hh2
-rw-r--r--source/blender/io/wavefront_obj/exporter/obj_export_mesh.hh2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/io/wavefront_obj/exporter/obj_export_io.hh b/source/blender/io/wavefront_obj/exporter/obj_export_io.hh
index 7016dff2a29..3bee93b36a5 100644
--- a/source/blender/io/wavefront_obj/exporter/obj_export_io.hh
+++ b/source/blender/io/wavefront_obj/exporter/obj_export_io.hh
@@ -310,7 +310,7 @@ class FormatHandler : NonCopyable, NonMovable {
/**
* Example invocation: `writer->write<eMTLSyntaxElement::newmtl>("foo")`.
*
- * \param key Must match what the instance's filetype expects; i.e., `eMTLSyntaxElement` for
+ * \param key: Must match what the instance's filetype expects; i.e., `eMTLSyntaxElement` for
* `eFileType::MTL`.
*/
template<typename FileTypeTraits<filetype>::SyntaxType key, typename... T>
diff --git a/source/blender/io/wavefront_obj/exporter/obj_export_mesh.hh b/source/blender/io/wavefront_obj/exporter/obj_export_mesh.hh
index 9b9c8483464..5b11c85b7a4 100644
--- a/source/blender/io/wavefront_obj/exporter/obj_export_mesh.hh
+++ b/source/blender/io/wavefront_obj/exporter/obj_export_mesh.hh
@@ -189,7 +189,7 @@ class OBJMesh : NonCopyable {
}
/**
* Calculate a polygon's polygon/loop normal indices.
- * \param poly_index Index of the polygon to calculate indices for.
+ * \param poly_index: Index of the polygon to calculate indices for.
* \return Vector of normal indices, aligned with vertices of polygon.
*/
Vector<int> calc_poly_normal_indices(int poly_index) const;