Here is a bit of my code.
drawingContext.DrawEllipse(this.handOpenBrush, null, handPosition, HandSize, HandSize);
That code works fine.
Though, as soon as I do this, I get the errors that it has some invalid arguments.
drawingContext.DrawEllipse(this.handOpenBrush, null, (handPosition.Offset(20,20)), HandSize, HandSize);
All I am doing is offsetting the handPosition point by (20,20). I do not see what I could of done to cause the program to all of sudden have argument errors.