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:
Diffstat (limited to 'source/blender/blenlib/tests/BLI_mesh_intersect_test.cc')
-rw-r--r--source/blender/blenlib/tests/BLI_mesh_intersect_test.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/blenlib/tests/BLI_mesh_intersect_test.cc b/source/blender/blenlib/tests/BLI_mesh_intersect_test.cc
index 24fa7f1a476..0329fc156c0 100644
--- a/source/blender/blenlib/tests/BLI_mesh_intersect_test.cc
+++ b/source/blender/blenlib/tests/BLI_mesh_intersect_test.cc
@@ -866,11 +866,11 @@ static void fill_sphere_data(int nrings,
};
Array<int> eid = {0, 0, 0, 0}; /* Don't care about edge ids. */
/*
- * (x, y , z) is given from inclination theta and azimuth phi,
- * where 0 <= theta <= pi; 0 <= phi <= 2pi.
- * x = radius * sin(theta) cos(phi)
- * y = radius * sin(theta) sin(phi)
- * z = radius * cos(theta)
+ * (x, y, z) is given from inclination theta and azimuth phi,
+ * where: `0 <= theta <= pi; 0 <= phi <= 2pi`.
+ * `x = radius * sin(theta) cos(phi)`
+ * `y = radius * sin(theta) sin(phi)`
+ * `z = radius * cos(theta)`
*/
for (int s = 0; s < nsegs; ++s) {
double phi = s * delta_phi;