[docs]defload_path(file_obj,file_type:Optional[str]=None,**kwargs):""" Load a file to a Path file_object. Parameters ----------- file_obj Accepts many types: - Path, Path2D, or Path3D file_objects - open file file_object (dxf or svg) - file name (dxf or svg) - shapely.geometry.Polygon - shapely.geometry.MultiLineString - dict with kwargs for Path constructor - `(n, 2, (2|3)) float` line segments file_type Type of file is required if file object is passed. Returns --------- path : Path, Path2D, Path3D file_object Data as a native trimesh Path file_object """# avoid a circular importfrom...exchange.loadimport_load_kwargs,_parse_file_argsarg=_parse_file_args(file_obj=file_obj,file_type=file_type,**kwargs)ifisinstance(file_obj,Path):# we have been passed a file object that is already a loaded# trimesh.path.Path object so do nothing and returnreturnfile_objelifutil.is_file(arg.file_obj):ifarg.file_typeinpath_loaders:kwargs.update(path_loaders[arg.file_type](file_obj=arg.file_obj,file_type=arg.file_type))elifarg.file_type=="ply":# we cannot register this exporter to path_loaders since# this is already reserved by Trimesh in ply format in trimesh.load()kwargs.update(load_ply(file_obj=arg.file_obj,file_type=arg.file_type))elifutil.is_instance_named(file_obj,["Polygon","MultiPolygon"]):# convert from shapely polygons to Path2Dkwargs.update(misc.polygon_to_path(file_obj))elifutil.is_instance_named(file_obj,"MultiLineString"):# convert from shapely LineStrings to Path2Dkwargs.update(misc.linestrings_to_path(file_obj))elifisinstance(file_obj,dict):# load as kwargskwargs=file_objelifutil.is_sequence(file_obj):# load as lines in spacekwargs.update(misc.lines_to_path(file_obj))else:raiseValueError("Not a supported object type!")# actually loadresult=_load_kwargs(kwargs)result._source=argreturnresult
defpath_formats()->Set[str]:""" Get a list of supported path formats. Returns ------------ loaders Extensions of loadable formats, i.e. {'svg', 'dxf'} """return{kfork,vinpath_loaders.items()ifnotisinstance(v,ExceptionWrapper)}path_loaders={}path_loaders.update(_svg_loaders)path_loaders.update(_dxf_loaders)