Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guilhem Saurel
hpp-fcl
Commits
9c9bc60f
Commit
9c9bc60f
authored
Jul 28, 2017
by
Joseph Mirabel
Committed by
Joseph Mirabel
Jul 28, 2017
Browse files
Fix Intersect::buildEdgePlane
parent
60a56899
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/intersect.cpp
View file @
9c9bc60f
...
...
@@ -1131,7 +1131,7 @@ bool Intersect::buildEdgePlane(const Vec3f& v1, const Vec3f& v2, const Vec3f& tn
if
(
norm2
>
0
)
{
*
n
=
n_
/
sqrt
(
norm2
);
*
t
=
n
_
.
dot
(
v1
);
*
t
=
n
->
dot
(
v1
);
return
true
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment