TechfairKinect.Gestures.Kinect.KinectSensorWrapper.OnSkeletonFrameRead C# (CSharp) Method

OnSkeletonFrameRead() private method

private OnSkeletonFrameRead ( int trackingId, ScaledJoint>.Dictionary scaledSkeleton, long timestamp ) : void
trackingId int
scaledSkeleton ScaledJoint>.Dictionary
timestamp long
return void
        private void OnSkeletonFrameRead(int trackingId, Dictionary<JointType, ScaledJoint> scaledSkeleton, long timestamp)
        {
            var args = new SkeletonReadEventArgs(trackingId, scaledSkeleton, timestamp);
            if (OnSkeletonRead != null)
                OnSkeletonRead(this, args);
        }