Kinect.Pong.Models.Ball.DetermineScore C# (CSharp) Method

DetermineScore() private method

private DetermineScore ( ) : void
return void
        private void DetermineScore()
        {
            if (Position.X + Radius >= Boundry.Width)
            {
                OnScored(Paddle.Side.Right, this);
            }
            if (Position.X <= 0 + Radius)
            {
                OnScored(Paddle.Side.Left, this);
            }
        }