示例#1
0
        //获取磁场校准水平,值越小代表效果越好
        //! Get current calibration score for specific IMU sensor

        /*!
         * \param bone specific joint of hand.
         * \return current calibration score for specific IMU sensor. Lower value of score means better calibration performance.
         */
        public int GetCalScore(VRTRIXBones bone)
        {
            if ((int)bone < 16)
            {
                return(RH.GetReceivedCalScore(bone));
            }
            else
            {
                return(LH.GetReceivedCalScore(bone));
            }
        }