• Kinova Type


    Kinova Type

    POSITION_TYPE Type;

    /**
     * @brief That represents the type of a position. If used during a trajectory, the type of position
     * will change the behaviour of the robot. For example if the position type is CARTESIAN_POSITION,
     * then the robot's end effector will move to that position using the inverse kinematics. But
     * if the type of position is CARTESIAN_VELOCITY then the robot will use the values as velocity command.
     */
    enum POSITION_TYPE
    {
        NOMOVEMENT_POSITION = 0,    /*!< Used for initialisation. */
        CARTESIAN_POSITION = 1,     /*!< A cartesian position described by a translation X, Y, Z and an orientation ThetaX, thetaY and ThetaZ. */
        ANGULAR_POSITION = 2,       /*!< An angular position described by a value for each actuator. */
        RETRACTED = 3,              /*!< The robotic arm is in retracted mode. It may be anywhere between the HOME position and the RETRACTED position. */
        PREDEFINED1 = 4,               /*!< The robotic arm is moving to the pre defined position #1. */
        PREDEFINED2 = 5,               /*!< The robotic arm is moving to the pre defined position #2. */
        PREDEFINED3 = 6,             /*!< The robotic arm is moving to the pre defined position #3. */
        CARTESIAN_VELOCITY = 7,     /*!< A velocity vector used for velocity control. */
        ANGULAR_VELOCITY = 8,       /*!< Used for initialisation. */
        PREDEFINED4 = 9,              /*!< The robotic arm is moving to the pre defined position #4. */
        PREDEFINED5 = 10,              /*!< The robotic arm is moving to the pre defined position #5. */
        ANY_TRAJECTORY = 11,        /*!< Not used. */
        TIME_DELAY = 12,            /*!< The robotic arm is on time delay. */
    };

    #######################################

  • 相关阅读:
    第一次结对编程作业
    第一次个人编程作业
    获取file中字段,写入到TXT文件中
    通过file中的字段查询MySQL内容
    MySQL常用语句
    MySQL乱码问题
    脚本数据编码格式转换
    mysql 常用命令操作
    thinkphp项目 Class 'finfo' not found
    POJ3255--次短路
  • 原文地址:https://www.cnblogs.com/herd/p/15582279.html
Copyright © 2020-2023  润新知