Skip to content
Snippets Groups Projects
Commit 8fae3fa4 authored by Pierre Fernbach's avatar Pierre Fernbach Committed by Pierre Fernbach
Browse files

[so3] fix XML serialization tag

parent ac1bd01d
No related branches found
No related tags found
No related merge requests found
......@@ -150,8 +150,8 @@ struct SO3Linear : public curve_abc<Time, Numeric, Safe, Eigen::Matrix<Numeric,
}
ar>> boost::serialization::make_nvp("dim", dim_);
matrix3_t init,end;
ar >> boost::serialization::make_nvp("init_rot", init);
ar >> boost::serialization::make_nvp("end_rot", end);
ar >> boost::serialization::make_nvp("init_rotation", init);
ar >> boost::serialization::make_nvp("end_rotation", end);
init_rot_ = quaternion_t(init);
end_rot_ = quaternion_t(end);
ar >> boost::serialization::make_nvp("angular_vel", angular_vel_);
......
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