zoukankan      html  css  js  c++  java
  • 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. */
    };

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

  • 相关阅读:
    如何解决移动端滚动穿透问题
    如何在mac中通过命令行使用sublime
    正向代理和反向代理
    UTF8、UTF16、UTF16-LE、UTF16-BE、UTF32都是些什么?
    依赖的版本
    如何移除inline-block元素之间的空白
    如何用JavaScript重定向到另一个网页?
    [读书笔记] 高性能网站建设指南
    java使用jconsole查看java程序运行(jmx原理)
    oracle相关知识点
  • 原文地址:https://www.cnblogs.com/herd/p/15582279.html
Copyright © 2011-2022 走看看