optima 0.0.4

An easy to set up and easy optimization and planning toolbox, particularly for robotics.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use crate::robot_set_modules::robot_set::RobotSet;

pub trait GetRobotSet {
    fn get_robot_set(&self) -> &RobotSet;
}
impl Clone for Box<dyn GetRobotSet> {
    fn clone(&self) -> Self {
        unimplemented!()
    }
}

pub mod robot_set_configuration_module;
pub mod robot_set_joint_state_module;
pub mod robot_set_kinematics_module;
pub mod robot_set_mesh_file_manager_module;
pub mod robot_set_geometric_shape_module;
pub mod robot_set;