Go to the documentation of this file.00001 #ifndef DESCARTES_TEST_TRAJECTORY_MAKER_H
00002 #define DESCARTES_TEST_TRAJECTORY_MAKER_H
00003
00004 #include "descartes_trajectory/cart_trajectory_pt.h"
00005 #include "descartes_core/utils.h"
00006
00007 namespace descartes_tests
00008 {
00009
00010 std::vector<descartes_core::TrajectoryPtPtr> makeConstantVelocityTrajectory(const Eigen::Vector3d& start,
00011 const Eigen::Vector3d& stop,
00012 double tool_vel, size_t n_steps);
00013
00014
00015
00016 std::vector<descartes_core::TrajectoryPtPtr> makeZigZagTrajectory(double x_start, double x_stop, double y_amplitude,
00017 double tool_vel, size_t n_steps);
00018 }
00019
00020 #endif