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>2016-07-31 10:41:05 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-07-31 10:41:05 +0300
commit710ab5be36cda9cba547502d5327f400f15935bc (patch)
tree6aea85a35111b236ad2bc5870a5e7c64ee8f896b /intern/cycles/kernel/geom
parenta96c9def6f57269f6ff10a189cd55ff43dc3a15f (diff)
Cleanup: spelling, style
Diffstat (limited to 'intern/cycles/kernel/geom')
-rw-r--r--intern/cycles/kernel/geom/geom_triangle_intersect.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/kernel/geom/geom_triangle_intersect.h b/intern/cycles/kernel/geom/geom_triangle_intersect.h
index eb0decc800b..dd5328220ab 100644
--- a/intern/cycles/kernel/geom/geom_triangle_intersect.h
+++ b/intern/cycles/kernel/geom/geom_triangle_intersect.h
@@ -346,7 +346,7 @@ ccl_device_inline float3 triangle_refine(KernelGlobals *kg,
if(det != 0.0f) {
/* If determinant is zero it means ray lies in the plane of
* the triangle. It is possible in theory due to watertight
- * nature of triangle intersection. For suc hcases we simply
+ * nature of triangle intersection. For such cases we simply
* don't refine intersection hoping it'll go all fine.
*/
float rt = dot(edge2, qvec) / det;