コード例 #1
0
ファイル: Connection.cs プロジェクト: LABSIM/APOLLON
        public UInt64 GetInterpolatedFrameSize(Int64 time)
        {
            UInt64  size   = 0;
            eLeapRS result = LeapC.GetFrameSize(_leapConnection, time, out size);

            reportAbnormalResults("LeapC get interpolated frame call was ", result);
            return(size);
        }