My Customized Improved  Phone Case

My Customized Improved Phone Case

thingiverse

The input code is written in a language that is specific to Autodesk's computer-aided design (CAD) software, specifically Inventor and Fusion 360, due to the custom variables at the end of the code such as `stencil_rotation`, `use_mouse_ears`, `pattern_element_overlap`, etc. Below is a general breakdown of how this script can be used or understood: ### Customizing Case Designs The code includes settings for creating various phone cases, with features such as: - Adjusting case shapes (with different values in custom_corner_resolution, stencil_pattern_line_thickness) - Defining the placement and sizes of camera holes - Customization of back, top, bottom ports and how they fit to each other - The positioning and details of side grips, back extra ports etc ### Importing Points from File This script also seems to be loading 122 points or possibly corners of an STL or similar 3D file (possibly the shape of the device or part it will make a casing for). These might not all directly be visible with every phone model chosen in this design process. Here is some example code that one can copy into your Python script which makes it easier to convert the string to usable values, note that if `x`, `y` coordinates follow each point then we have enough information. ```python def read_string(): s = """[[35.155363,-48.331011],[31.115144,-46.551103],[24.528111,-47.245141], [18.875211,-49.032131],[9.964123,-46.955311],[11.143231,-42.531113], [-3.161919,-39.951191],[-4.656939,-44.931099],[-7.115101,-43.541911], [-1.561139,-45.151129],[15.441219,-49.141119],[17.011219,-46.661119], [26.051229,-43.551031],[-9.191211,-45.491041]]""" l = eval(s[1:-1]) for pair in l: x, y = pair print(f'Point({x},{y})') # Run the function to see points read from the string read_string() ``` Here you would substitute each new coordinate or point inside each list in your script, if any coordinates change between the designs being modelled here you would likely have a few choices on how to do so (including modifying what code will read out those changes, then changing that specific area based off said design variables). Let me know if there are further parts you require clarified!

Download Model from thingiverse

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.