zoukankan      html  css  js  c++  java
  • kinova jaco2 TrajectoryPoint

    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();
        }
    };

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

  • 相关阅读:
    dp的冗余(选数类)
    noip2016自测报告
    dalao高精
    二叉苹果树
    最长上升子序列加强版
    Above the Median
    树状数组学习笔记
    Java委托机制
    Java集合
    Java异常
  • 原文地址:https://www.cnblogs.com/herd/p/15584261.html
Copyright © 2011-2022 走看看