We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9192fa commit 1a31c55Copy full SHA for 1a31c55
include/pinocchio/multibody/joint/joint-spline.hpp
@@ -198,7 +198,8 @@ namespace pinocchio
198
using Base::isEqual;
199
bool isEqual(const JointModelSplineTpl & other) const
200
{
201
- return Base::isEqual(other);
+ return Base::isEqual(other) && other.degree == degree && other.nbCtrlFrames == nbCtrlFrames
202
+ && other.ctrlFrames == ctrlFrames;
203
}
204
205
template<typename ConfigVector>
0 commit comments