public static Range3Single GetBoxTs(this IFace2 face)
        {
            var box = (double[])face.GetBox();

            return(new Range3Single(
                       box[0], box[1], box[2],
                       box[3], box[4], box[5]));
        }