Woolfrey / software_robot_library

Custom classes for robot control.
GNU General Public License v3.0
2 stars 1 forks source link

Swap `activeLink` property with `link` #92

Closed Woolfrey closed 1 year ago

Woolfrey commented 1 year ago

At the moment vector<Link<DataType>> link contains all the links in the kinematic tree, whereas vector<Link<DataType>> activeLink contains the reduced link list after merging those with fixed joints.

For clarity the "active" link list should just be called link to avoid confusion in the forward kinematics and inverse dynamics algorithm.

Woolfrey commented 1 year ago

Done!