#include <ros/ros.h>
#include <actionlib/server/action_server.h>
#include <trajectory_msgs/JointTrajectory.h>
#include <control_msgs/JointTrajectoryAction.h>
#include <control_msgs/JointTrajectoryControllerState.h>
#include <katana_gazebo_plugins/gazebo_ros_katana_gripper_action_interface.h>
Go to the source code of this file.
|
static void | spline_smoother::generatePowers (int n, double x, double *powers) |
|
void | spline_smoother::getCubicSplineCoefficients (double start_pos, double start_vel, double end_pos, double end_vel, double time, std::vector< double > &coefficients) |
| Calculates cubic spline coefficients given the start and end way-points. More...
|
|
void | spline_smoother::sampleCubicSpline (const std::vector< double > &coefficients, double time, double &position, double &velocity, double &acceleration) |
| Samples a cubic spline segment at a particular time. More...
|
|