def load_point_input(self, path): ext = path.split('.')[-1] if ext == "npy": points = np.load(path) elif ext == "ply" or ext == "obj": import pymesh points ...
確定! 回上一頁