Woolfrey / software_robot_library

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

Remove `using namespace Eigen` from header preamble #94

Closed Woolfrey closed 9 months ago

Woolfrey commented 9 months ago

By declaring using namespace Eigen in the preamble of the header file, anyone who uses RobotLibrary will be forced to use it as well.

It is better to declare it inside function scope where necessary.

Woolfrey commented 9 months ago

Completed.