public static double CalcDiagonalYZ(double height, double depth)
        {
            var distance = EuclideanSpaceUtils.CalcDistanceBetweenPoints(new double[] { ZERO, ZERO }, new double[] { height, depth });

            return(distance);
        }
        public static double CalcDiagonalLengthXZ(double width, double depth)
        {
            var diagonalLength = EuclideanSpaceUtils.CalcDistanceBetweenPoints(new double[] { ZERO, ZERO }, new double[] { width, depth });

            return(diagonalLength);
        }