This little toy script generates a PDF that can be printed out and followed to created a 3D paper star box.
See an example PDF here.
pip install numpy pillow reportlab
- Generate a PDF to print out.
import reportlab.lib.pagesizes from star_diagram import save_star_diagram page_size = reportlab.lib.pagesizes.letter # US letter paper size. save_star_diagram( page_size, num_sides=5, poly_height=5.1, two_page=False, landscape=False, is_metric=False, )
- Open up the generated
5-star.pdf
in your preferred printing application. I highly recommend Chrome. - Set the scaling option to match the paper size and print.
- If you're using two pages, paste the two pages together so that the second page's overlap runs along the main horizontal line (the midway line).
- Trim off the extra paper on the second page, removing the thick bottom line with the final cut.
- Pull a corner to a dot of that has the same color, lining up the pulled corner of the paper with the thinner, lighter guide lines coming from the point.
- Make the crease along where the thick line is shown (a light table can be very helpful here).
- Repeat this for all the colored points on the diagram. For very large diagrams, some of these points might be outside of the diagram itself. In this case, look for any guide lines running off the page that match the corner's color and reasonably corresponds to the fold you're trying to make.
- Fold the paper in half to get the main horizontal line that bisects the paper.
- For vertical/horizontal folds, pull and match sides up with the short gray notches to make the fold along the thick vertical/horizontal line.
- Fold the faint "beaming" lines coming from the star. These do not have any hint markers.
- Assemble the star. More detailed instructions will be added later. See this video to understand how it comes together.
- Folds are often drawn so they stop and don't go over the halfway line. This is done to avoid overcluttering the diagram. It can often help the construction process to continue these folds beyond the halfway line and to the very end of the paper, so long as you avoid making a crease inside one of the star shapes.
- For glueing, it seems to work best to find the side of the star that exists along the hinge (one solid side, no overlapping), and then go around, skipping every other side, and glueing those sides together. Note the video for further technique.