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 <ideasman42@gmail.com>2021-04-08 09:20:22 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-04-08 13:22:45 +0300
commit3249ab70ef6124e7fb910f987b0e033f42035bfa (patch)
treec2f69de0c987fd5414d2355039263011733608f8 /intern/cycles/util
parent4d4368389945b2b78e5d4f89b544a837bc157930 (diff)
Cleanup: spelling
Diffstat (limited to 'intern/cycles/util')
-rw-r--r--intern/cycles/util/util_math.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/util/util_math.h b/intern/cycles/util/util_math.h
index ad04340231e..c5996ebfcb6 100644
--- a/intern/cycles/util/util_math.h
+++ b/intern/cycles/util/util_math.h
@@ -788,7 +788,7 @@ ccl_device_inline float compare_floats(float a, float b, float abs_diff, int ulp
}
/* Calculate the angle between the two vectors a and b.
- * The usual approach acos(dot(a, b)) has severe precision issues for small angles,
+ * The usual approach `acos(dot(a, b))` has severe precision issues for small angles,
* which are avoided by this method.
* Based on "Mangled Angles" from https://people.eecs.berkeley.edu/~wkahan/Mindless.pdf
*/