Robot.IK.lengthBetwenSolderandWrist C# (CSharp) Method

lengthBetwenSolderandWrist() public static method

public static lengthBetwenSolderandWrist ( double location, double wristLocation ) : double
location double
wristLocation double
return double
        public static double lengthBetwenSolderandWrist(double location, double wristLocation)
        {
            return Math.Sqrt(location*location + wristLocation*wristLocation);
        }