public void WristPointingUp()
                    {
                        Point3 wrist = new Point3(8, 11, 9);
                        double roll  = InverseKinematics.GetShoulderRollLeft(neckToSpine, shoulderL, shoulderR, elbow, wrist);

                        Assert.AreEqual(90, roll, angleTolerance);
                    }
                    public void Inline()
                    {
                        Point3 wrist = new Point3(8, 10, 8);
                        double roll  = InverseKinematics.GetShoulderRollLeft(neckToSpine, shoulderL, shoulderR, elbow, wrist);

                        Assert.AreEqual(0, roll);
                    }