Skip to content
Snippets Groups Projects
Commit b6fb3714 authored by jpan's avatar jpan
Browse files

n = R * n --> n = R * s.n

git-svn-id: https://kforge.ros.org/fcl/fcl_ros@80 253336fb-580f-4252-a368-f3cef5a2a82b
parent c800b64f
No related branches found
No related tags found
No related merge requests found
......@@ -127,7 +127,7 @@ void computeBV<AABB>(const Plane& s, const SimpleTransform& tf, AABB& bv)
{
Matrix3f R = tf.getRotation() * s.getLocalRotation();
Vec3f n = R * n;
Vec3f n = R * s.n;
AABB bv_;
if(n[1] == (BVH_REAL)0.0 && n[2] == (BVH_REAL)0.0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment