
My Customized Improved Phone Case
thingiverse
It appears that you have a collection of 2D point data stored in the file format. I'll show you how to parse it into Python lists: ```python points_data_strs = [ """-22,24.476656],[-13.217648,18.235109],[15.111667,-12.113444],... [36.507259,-9.133493],[-10.216211,-10.144351],""", """[[49.317191,-23.142475], [-22,24.476656], [[25.770982,19.454158]]]],\nstencil_size = 40...""" ] # assuming first points_data_str points_data_1d = [ s.split(",") for point_str in points_data_strs[0].split("[")[2:][-2] for s in [point_str[:-1]] ] print("1D-Points-List") for i, p in enumerate(points_data_1d): print(f"{i+1}. {p}") points_3d_data_str = points_data_strs[0][...].strip() pattern_list_data_str = [ item for pattern_items in eval(points_data_strs[-1])['stencil_pattern_elements'][0]['point'] if len(item) == 4] data_out = {} data_out["stencil_points"] = [list(map(float, s.split(", "))) for i,s in enumerate(points_data_3d)] ``` Let me explain how I did this: I extracted two separate lists of data points.
With this file you will be able to print My Customized Improved Phone Case with your 3D printer. Click on the button and save the file on your computer to work, edit or customize your design. You can also find more 3D designs for printers on My Customized Improved Phone Case.