From fdb2167b4ad9f140708e38bfcc30fdbd3168bf1e Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 20 Dec 2021 19:01:14 +1100 Subject: Docs: use doxygen formatting for BLI Differentiate doc-strings from title/section text. --- source/blender/blenlib/BLI_math_geom.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'source/blender/blenlib/BLI_math_geom.h') diff --git a/source/blender/blenlib/BLI_math_geom.h b/source/blender/blenlib/BLI_math_geom.h index 55d118d17de..c2a5ffafa64 100644 --- a/source/blender/blenlib/BLI_math_geom.h +++ b/source/blender/blenlib/BLI_math_geom.h @@ -441,7 +441,9 @@ void isect_seg_seg_v3(const float a0[3], float r_a[3], float r_b[3]); -/* intersect Line-Line, shorts */ +/** + * Intersect Line-Line, integer. + */ int isect_seg_seg_v2_int(const int v1[2], const int v2[2], const int v3[2], const int v4[2]); /** * Get intersection point of two 2D segments. @@ -929,7 +931,7 @@ void interp_weights_quad_v3(float w[4], void interp_weights_poly_v3(float w[], float v[][3], const int n, const float co[3]); void interp_weights_poly_v2(float w[], float v[][2], const int n, const float co[2]); -/* (x1, v1)(t1=0)------(x2, v2)(t2=1), 0 (x, v)(t) */ +/** `(x1, v1)(t1=0)------(x2, v2)(t2=1), 0 (x, v)(t)`. */ void interp_cubic_v3(float x[3], float v[3], const float x1[3], -- cgit v1.2.3