kinova jaco2 TrajectoryPoint

 

/** @brief This data structure represents a point of a trajectory. It contains the position a limitation that you can applied.
 *  \struct TrajectoryPoint KinovaTypes.h "Definition"
 */
struct TrajectoryPoint
{
    /**
     * @brief Position information that described this trajectory point.
     */
    UserPosition Position;

    /**
     * @brief A flag that indicates if the limitation are active or not (1 is active 0 is not).
     */
    int LimitationsActive;

    /**
    * @brief A flag that indicates if the tracjetory's synchronization is active. (1 is active 0 is not). ONLY AVAILABLE IN ANGULAR CONTROL.
    */
    int SynchroType;

    /**
     * @brief Limitation applied to this point if the limitation flag is active.
     */
    Limitation Limitations;

    void InitStruct()
    {
        Position.InitStruct();
        LimitationsActive = 0;
        SynchroType = 0;
        Limitations.InitStruct();
    }
};

 

 

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

相关文章:

  • 2021-07-25
  • 2021-10-16
  • 2021-07-29
  • 2021-07-28
  • 2022-01-10
  • 2021-07-12
  • 2021-08-27
  • 2021-12-04
猜你喜欢
  • 2022-01-07
  • 2021-05-18
  • 2022-01-07
  • 2021-08-23
  • 2021-11-27
  • 2021-08-09
  • 2022-12-23
相关资源
相似解决方案