diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-09-20 17:09:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-20 17:09:05 +0200 |
commit | fdc2463a1ba6de47c13d976105153cfaa19b86d6 (patch) | |
tree | f4b714c1895c7a621d7ed76e61939e70d24392f1 /modules/csg/csg.cpp | |
parent | 6f10e994fbf282e4e9db0a5988884c50a15849c3 (diff) | |
parent | 91ecd7b6a679edeaee6b6ac147074c80d2bd30f6 (diff) |
Merge pull request #32150 from luzpaz/typos
Fix misc. source comment typos
Diffstat (limited to 'modules/csg/csg.cpp')
-rw-r--r-- | modules/csg/csg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/csg/csg.cpp b/modules/csg/csg.cpp index f1b3fa2ac6..5a76f32977 100644 --- a/modules/csg/csg.cpp +++ b/modules/csg/csg.cpp @@ -114,7 +114,7 @@ void CSGBrush::_regen_face_aabbs() { faces.write[i].aabb.position = faces[i].vertices[0]; faces.write[i].aabb.expand_to(faces[i].vertices[1]); faces.write[i].aabb.expand_to(faces[i].vertices[2]); - faces.write[i].aabb.grow_by(faces[i].aabb.get_longest_axis_size() * 0.001); //make it a tad bigger to avoid num precision erros + faces.write[i].aabb.grow_by(faces[i].aabb.get_longest_axis_size() * 0.001); //make it a tad bigger to avoid num precision errors } } |