示例#1
0
        //获取磁场校准水平均值
        //! Get current calibration score average value

        /*!
         * \param type Data glove hand type.
         * \return current calibration score average value.
         */
        public int GetReceivedCalScoreMean(HANDTYPE type)
        {
            switch (type)
            {
            case HANDTYPE.RIGHT_HAND:
            {
                return(RH.GetReceivedCalScoreMean());
            }

            case HANDTYPE.LEFT_HAND:
            {
                return(LH.GetReceivedCalScoreMean());
            }

            default:
                return(0);
            }
        }