/// <summary> /// Deserializes an shapes index from the given stream. /// </summary> public static ShapesArray CreateFrom(Stream stream, bool copy, bool hasElevation = false) { return(ShapesArray.CreateFrom(stream, copy, out var _, hasElevation)); }
/// <summary> /// Deserializes an shapes index from the given stream. /// </summary> public static ShapesArray CreateFrom(Stream stream, bool copy) { long size; return(ShapesArray.CreateFrom(stream, copy, out size)); }