From d2ba632b89ef8cc327ba525c11f4d7b2aab665fd Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 17 Dec 2023 20:26:33 +1100 Subject: [PATCH] Cleanup: odd line wrapping for doc-string Caused by C++ migration. --- .../transform/transform_convert_mesh.cc | 25 ++++++++++--------- 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/source/blender/editors/transform/transform_convert_mesh.cc b/source/blender/editors/transform/transform_convert_mesh.cc index 2eb2b389645..2a62d231782 100644 --- a/source/blender/editors/transform/transform_convert_mesh.cc +++ b/source/blender/editors/transform/transform_convert_mesh.cc @@ -63,18 +63,19 @@ struct TransCustomData_PartialUpdate { * (which can happen when rotation is enabled with snapping). */ enum ePartialType { - PARTIAL_NONE = - -1, /** - * Update only faces between tagged and non-tagged faces (affine transformations). - * Use when transforming is guaranteed not to change the relative locations of vertices. - * - * This has the advantage that selecting the entire mesh or only isolated elements, - * can skip normal/tessellation updates entirely, so it's worth using when possible. - */ - PARTIAL_TYPE_GROUP = 0, /** - * Update for all tagged vertices (any kind of deformation). - * Use as a default since it can be used with any kind of deformation. - */ + PARTIAL_NONE = -1, + /** + * Update only faces between tagged and non-tagged faces (affine transformations). + * Use when transforming is guaranteed not to change the relative locations of vertices. + * + * This has the advantage that selecting the entire mesh or only isolated elements, + * can skip normal/tessellation updates entirely, so it's worth using when possible. + */ + PARTIAL_TYPE_GROUP = 0, + /** + * Update for all tagged vertices (any kind of deformation). + * Use as a default since it can be used with any kind of deformation. + */ PARTIAL_TYPE_ALL = 1, };