BuildingCoder.CmdListAllRooms.BoundingBoxString2 C# (CSharp) Method

BoundingBoxString2() public static method

Return a string for a bounding box which may potentially be null with its coordinates formatted to two decimal places.
public static BoundingBoxString2 ( BoundingBoxXYZ bb ) : string
bb BoundingBoxXYZ
return string
        public static string BoundingBoxString2( BoundingBoxXYZ bb )
        {
            return null == bb
            ? "<null>"
            : Util.BoundingBoxString( bb );
        }