From 249f4423ee1c28e7f8ad6fdfff6c61a1f3e6d53d Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 25 Nov 2019 01:14:39 +1100 Subject: Cleanup: doxygen comments Also correct some outdated symbol references, add missing 'name' commands. --- source/blender/python/bmesh/bmesh_py_types_meshdata.c | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'source/blender/python/bmesh') diff --git a/source/blender/python/bmesh/bmesh_py_types_meshdata.c b/source/blender/python/bmesh/bmesh_py_types_meshdata.c index 2e15c1d9ce0..0fd6d74c324 100644 --- a/source/blender/python/bmesh/bmesh_py_types_meshdata.c +++ b/source/blender/python/bmesh/bmesh_py_types_meshdata.c @@ -384,19 +384,21 @@ PyObject *BPy_BMLoopColor_CreatePyObject(struct MLoopCol *data) * This is python type wraps a deform vert as a python dictionary, * hiding the #MDeformWeight on access, since the mapping is very close, eg: * - * C: - * weight = defvert_find_weight(dv, group_nr); - * defvert_remove_group(dv, dw) + * \code{.c} + * weight = defvert_find_weight(dv, group_nr); + * defvert_remove_group(dv, dw) + * \endcode * - * Py: - * weight = dv[group_nr] - * del dv[group_nr] + * \code{.py} + * weight = dv[group_nr] + * del dv[group_nr] + * \endcode * - * \note: there is nothing BMesh specific here, + * \note There is nothing BMesh specific here, * its only that BMesh is the only part of blender that uses a hand written api like this. * This type could eventually be used to access lattice weights. * - * \note: Many of blender-api's dict-like-wrappers act like ordered dicts, + * \note Many of blender-api's dict-like-wrappers act like ordered dicts, * This is intentionally _not_ ordered, the weights can be in any order and it won't matter, * the order should not be used in the api in any meaningful way (as with a python dict) * only expose as mapping, not a sequence. -- cgit v1.2.3