Jump to main content

Design Your Own 3D Printed Optical Illusion

1
2
3
4
5
41 reviews

Abstract

The "impossible arrow" is an amazing optical illusion: an arrow that always seems to point to the right, even when you rotate it 180°. If you place the arrow in front of a mirror, however, its reflection points to the left! How does this illusion work? Can you design your own "impossible" shapes? Try this project and find out!

Summary

Areas of Science
Difficulty
 
Time Required
Short (2-5 days)
Prerequisites
Experience programming in MATLAB or Python, or willingness to learn.
Material Availability
Access to 3D printer or online 3D printing service required (see materials section).
Cost
Low ($20 - $50)
Safety
No issues
Credits
Ben Finio, PhD, Science Buddies

Based on the work of Dr. Kokichi Sugihara

Thanks to Dr. Mark Veillette for helpful contributions and Python code

Objective

Design and 3D print your own seemingly impossible shapes that result in an optical illusion called "anomalous mirror symmetry."

Introduction

The "impossible arrow" is an optical illusion designed by Dr. Kokichi Sugihara. As the video shows, you can place the object so the arrow appears to point to the right. When you rotate the shape 180°, it appears to point to the right again!

Place the arrow in front of a mirror, though, and its reflection appears to point to the left (Figure 1). Dr. Sugihara calls this effect "anomalous mirror symmetry," and you can read about it in his 2016 paper, linked in the Bibliography.

A 3D printed object in front of a mirror. Image Credit: Ben Finio, Science Buddies / Science Buddies

The object looks like an arrow pointing to the right, but its reflection seems to show an arrow pointing to the left.


Figure 1. The "impossible arrow" illusion. The arrow appears to point to the right, but its reflection in the mirror points to the left.

What shape is the object, really? Take a look at Figure 2 and you will see that, when you view it from the top or the side, the shape does not look like an arrow at all.

Top view of the 3D printed impossible arrow. It does not look like an arrow from this angle. Image Credit: Ben Finio, Science Buddies / Science Buddies
Side view of the 3D printed impossible arrow. It does not look like an arrow from this angle.  Image Credit: Ben Finio, Science Buddies / Science Buddies
Figure 2. Top and side views of the "impossible arrow" reveal that it does not look like an arrow at all when viewed from these angles.

This illusion works because, from the correct viewing angle, your brain interprets the top of the object as flat. You can see in the side view in Figure 2, however, that the top and bottom surfaces are not flat at all — they follow a three-dimensional path.

The illusion works from both sides. In other words, you can rotate the object 180° and it will still look like the original shape, an arrow pointing to the right. Alternatively, you can put the object in front of a mirror and its reflection will appear flipped so the arrow points to the left.

This illusion works for other shapes as well. Examples from Dr. Sugihara's paper include a boat, a car, and a fish.

In this project, you will choose your own 2D shape and make it into a 3D shape that produces an "anomalous mirror symmetry" illusion.

The process to generate the three-dimensional shape based on a desired two-dimensional shape is explained in detail in the paper, but we will summarize it here.

Note: Depending on what math classes you have taken in school, you might not have seen all of the vocabulary used here, and that is OK. You can follow the procedure for this project to make your own 3D illusion shapes even if you do not understand the math in this background section.

First, you will create the outline of a two-dimensional shape in the x-y plane. The shape is defined by top and bottom curves, which we will call a1 and a2 (Figure 3). Note: The term "curve" in mathematics refers to a path that does not have be straight, although it can be. In other words, technically, a straight line can still be called a "curve." So we still refer to the paths in Figure 3 as "curves" even though they are made from straight line segments.

2D plot of an arrow pointing to the right in the x-y plane, with top curve a1 and bottom curve a2. Image Credit: Ben Finio, Science Buddies / Science Buddies
Figure 3. A two-dimensional drawing of an arrow in the x-y plane, with top curve a1 and bottom curve a2.

Each curve must be a function of x, meaning it has only one y-value per x-value in the domain.

The two curves must meet at their endpoints on the x-axis, forming a closed curve. For simple shapes, you can just plot some points in the function manually. Functions can also be defined using equations that calculate a y value for each x value in the domain. For example, the equation for a straight line is usually written in slope-intercept form:

Equation 1:

Where m is the slope and b is the y-intercept of the line. If you know that a line goes through two points (x1, y1) and (x2, y2), you can also write the equation in two-point form:

Equation 2:

You can use piecewise functions — a combination of functions, each of which only applies on a certain section of the domain for x. This will allow you to draw shapes made out of multiple line segments. Figure 4 shows the piecewise functions for the arrow in Figure 3. You can use other mathematical functions (such as quadratic, polynomial, or trigonometric functions) to generate more complex shapes.

2D graph of the arrow shape with equations defining the lines for the top half of the shape. Image Credit: Ben Finio, Science Buddies / Science Buddies

The equations for the different segments of the curve, from left to right, are: y=5x+5; y=0.5; y=5x+1; y=-x-1


Figure 4. Piecewise functions that define the top curve a1 of the arrow shape.

Dr. Sugihara's paper contains equations that convert these two-dimensional curves into three-dimensional curves that look like the two-dimensional shape when viewed from an angle θ (Figure 5). The view angle is defined downward from a horizontal line that is parallel to the y-axis, so looking at the shape directly from the side would be a view angle of 0°, and looking at the shape from directly above would be a view angle of 90°.

A view of the y-z plane with the x axis pointing out of the screen. Image Credit: Ben Finio, Science Buddies / Science Buddies

A dashed line parallel to the y axis is offset in the positive z direction, with an angle theta defined downward from that line.


Figure 5. Definition of the view angle θ.

The equations to convert the 2D curves a1 and a2 into 3D curves c1 and c2 are:

Equation 3:

Equation 4:

where

Equation 5:

"tan" is short for tangent, a trigonometric function. A 45° viewing angle works well, and tan(45°)=1. If you want to experiment with other viewing angles, you will need to calculate the tangent of the desired angle. (Make sure you know whether your calculator is set to degrees or radians, or use an online calculator that lets you select the units.)

What is the result? You can draw a two-dimensional shape like the arrow in Figure 3 either by plotting the points manually or by using piecewise functions. Then, you plug the y-values for your curves a1 and a2 (whether they are points you plotted manually or calculated using an equation) into equations 3 and 4 to find the x, y, and z coordinates for the three-dimensional curves c1 and c2.

When you plot these curves in 3D space, they look nothing like an arrow unless you view along the y axis, looking down at the angle θ (Figure 6). If you keep the downward view angle θ constant and spin the shape around the z axis, you will see the 2D shape only when your view is aligned with the y axis (Figure 7). Even when the shape is rotated a full 180°, it still looks like the original 2D shape — in this case, an arrow pointed to the right.

Views of the 3D curves c1 and c2. Image Credit: Ben Finio, Science Buddies / Science Buddies

All three views are aligned along the y axis but at three different downward view angles: 90 degrees, 45 degrees, and 0 degrees. The 2D arrow shape is only visible at the 45-degree view angle.


Figure 6. Three different views of the 3D curves c1 and c2. Top view: Looking directly down at the curves (θ=90°). 3D view: Looking down at the shape at a θ=45° angle. Side view: Looking at the shape directly from the side (θ=0°).
Four views of the arrow outline with a downward view angle of 35 degrees Image Credit: Ben Finio, Science Buddies / Science Buddies

Rotations about the z axis of 0 degrees, 45 degrees, 135 degrees, and 180 degrees. The 2D arrow is only visible in the 0 degree and 180 degree views. In both cases it looks like the arrow is pointing to the right.


Figure 7. Multiple views of the shape with a constant downward view angle θ=45° while rotating the shape around the z-axis. The 2D arrow is only visible when the view is aligned with the y-axis. Regardless of whether the view is oriented with the positive or negative y axis, it looks like the arrow is pointing to the right. If you find it difficult to visualize this rotation, remember to watch the video at the beginning of the project.

While this 3D curve works to generate the illusion on a computer screen, it does not work for 3D printing. The curve has zero thickness. If you want to 3D print something, you need a model of a solid object. To do that, you will need to generate an STL file. An STL is a file originally designed for a type of 3D printing called stereolithography. While the acronym may vary depending on where you look, STL stands for either standard triangle language or standard tessellation language. An STL represents a solid object using triangles to define its surface. An STL file of a cube, for example, will consist of twelve triangles, two on each of the six faces of the cube (Figure 8).

Two 3D plots of a cube. One has each face represented by a square. The other has each face broken up into two triangles. Image Credit: Ben Finio, Science Buddies / Science Buddies
Figure 8. Left: A cube plotted in 3D space. Right: An STL representation of the same cube, with each face broken up into two triangles.

To generate a solid 3D shape, first we will make a copy of our curve and shift it upward in the z direction by a distance equal to the desired thickness of our shape (Figure 9). This creates the top and bottom edges of the 3D shape.

Plot of the original 3D curves c1 and c2 and additional curves with the same x y coordinates offset in the z direction Image Credit: Ben Finio, Science Buddies / Science Buddies
Figure 9. 3D curves offset in the z direction to create the top and bottom edges of the 3D shape.

Next, we need to fill in the surface of the shape with triangles. This process would be difficult to do by hand, but luckily a computer program can do it for you (Figure 10). The end result is a 3D shape format that can be exported for viewing in a computer-aided design (CAD) program (Figure 11) or for 3D printing.

3D plot of the impossible arrow shape with the surface filled in with triangles Image Credit: Ben Finio, Science Buddies / Science Buddies
Figure 10. 3D shape with the surface filled in with triangles.

STL of the impossible arrow shape loaded into a CAD program Image Credit: Ben Finio, Science Buddies / Science Buddies
Figure 11. The STL file imported into a CAD program (Tinkercad). Note that some of the edges visible in Figure 8 are not visible in the CAD program. If the triangles are in the same plane, the CAD program does not draw their edges.

In this project, you will use either MATLAB or Python code that automatically generates the 3D shape and exports an STL file based on the original 2D shape. Defining the original 2D shape is up to you! You can plot the points in the shape manually or define it using functions. Then, you can choose whether you just want to view the illusion on a computer screen, open it in a CAD program, or 3D print it.

What types of illusions can you generate? Do certain shapes not work with the illusion? Try it and find out!

Technical Note: Parametric Curves

Technically, Dr. Sugihara's paper defines the top and bottom curves a1 and a2 as parametric curves, meaning their x, y, and z coordinates are defined as functions of the parameter t:

Equation 6:

Equation 7:

Both curves must be monotone in x, meaning each x value can only occur once on the curve.

This means that the curves c1 and c2 are also parametric and defined as functions of t, not x:

Equation 8:

Equation 9:

These are the equations you will see if you read Dr. Sugihara's paper. Since many students will not have learned parametric functions, Science Buddies has simplified the equations in this project to just be functions of x.

Terms and Concepts

Questions

Bibliography

Materials and Equipment

Experimental Procedure

  1. Make sure you understand the requirements for your 2D shape. (If you have not already done so, go back and read the Background section for this project).
    1. Your shape should consist of upper and lower curves a1 and a2.
    2. Each curve should be a function of x (each curve has only one y-value per x-value).
    3. Each curve should start at the point (-1,0) and end at the point (1,0) on the x-axis, forming a closed curve.
    4. The curves do not have to be symmetric about the x-axis, even though they are symmetric in the example arrow shape.
  2. Design your 2D shape. There are two different ways you can do this:
    1. Draw your shape by hand on graph paper. Label the (x,y) coordinates of each point in increments of 0.1 along the x-axis (Figure 12). You can enter these points directly in MATLAB or Python later in the procedure. This approach works well for simple shapes.
    2. Design your shape in a spreadsheet program like Microsoft Excel or Google Sheets (Figure 13). You can do this by defining piecewise functions of x, entering the equations in your spreadsheet, graphing them, and then changing the functions to see how they affect the shape.

      This approach works well for more complex shapes, making it easier to define more points (for example, in increments of 0.01 on the x axis instead of 0.1) or to use equations to define more complex curves. You will need to export your spreadsheet as a CSV file with three columns: the x-coordinate, the y-coordinate of a1, and the y-coordinate of a2. Make sure each column includes a header, with the data starting in the second row. An example xlsx file and an example csv file are available for download.

Outline of an arrow in the x-y plane with points labeled in increments of 0.1 along the x-axis Image Credit: Ben Finio, Science Buddies / Science Buddies
Figure 12. A 2D drawing of an arrow in the x-y plane with points drawn in increments of 0.1 along the x-axis. Some of the points have their (x,y) coordinates labeled as examples.

Screenshot of an Excel document with columns for the x and y coordinates of the curves a1 and a2. Image Credit: Ben Finio, Science Buddies / Science Buddies

The y coordinates are defined by equations. On the right is a graph of the resulting arrow.


Figure 13. The same arrow from Figure 12 designed in Microsoft Excel, with more points (increments of 0.05 on the x-axis) and with the y-coordinates defined by equations instead of being entered manually.
  1. Depending on which programming language you want to use, follow one of these two steps:
    1. For MATLAB, download impossible_shape_generator.m, save it on your computer, and open it in the MATLAB editor. You can also download CSV files for the boat, fish, and car shapes from Dr. Sugihara's paper.
    2. For Python, make a copy of this Google Colab notebook to your personal Google Drive by clicking the "Copy to Drive" button at the top of the screen. Google Colab is an environment that lets you run Python code directly in a web browser. You do not need to download anything.
  2. Each program comes loaded with a default arrow shape. Do not change anything yet — just run the program to see how it works. Run the code one section at a time, either using the Run and Advance button in the Section part of the MATLAB menu or the Run Cell button (that looks like a Play button) in the top left of each section in Google Colab. Read the on-screen instructions for each section.

    Each program will generate six figures (Figure 14). It is easier to understand the figures if you run the code in sections and look at them one at a time, instead of running the whole program at once.

    1. Figure 1: Plot of the original 2D shape in the x-y plane.
    2. Figure 2: 3D plot of the curves c1 and c2.
    3. Figure 3: 3D plot of the original curves c1 and c2, and additional curves offset in the z direction, forming the edges of a 3D shape.
    4. Figure 4: 3D plot of all the vertices on the top and bottom edges of the 3D shape. These vertices will be connected with triangles to form the STL file.
    5. Figure 5: 3D plot of the surface triangles using "method 1." This method adds vertical triangles to form the side walls of the shape, then adds triangles connecting the opposite edges to form the top and bottom surfaces of the shape.
    6. Figure 6: 3D plot of the surface triangles using "method 2." This method adds vertical triangles to form the side walls (the same as method 1), but it connects triangles to a central point to form the top and bottom surfaces of the shape.

    The code will also save two STL files, one for each method of adding triangles to the top and bottom surfaces of the shape. For MATLAB, these files will be saved in the same directory as your MATLAB program. For Python, your browser will prompt you to download and save the files.

    Output figure of the MATLAB program showing the six graphs described in step 4 of the procedure for the impossible arrow shape. Image Credit: Ben Finio, Science Buddies / Science Buddies
    Figure 14. Example output of Figures 1–6 from the MATLAB program.
  3. For each of the 3D graphs, try rotating the graph so you can see the effect of the illusion. The graphs should load with the correct default view so you see the illusion (like the 2D arrow in Figure 14).
    1. Look at the graph from the top or the side. Does it look anything like the original 2D shape?
    2. "Spin" the shape about the z axis. In other words, imagine that you have the shape sitting flat on the table in front of you. Spin it while keeping it flat on the table (do not flip it over). What do you see when you rotate the shape a full 180°?
  4. Now, try entering your own 2D shape in the program. Read the comments in the program you are using to learn how to do this. You will have the option to type the (x,y) coordinates of the points directly into the program manually, or to load them from a CSV file.
  5. Re-run the program with your new 2D shape and look at each of the resulting figures. Try rotating the plots to different angles again to view the illusion. Note: The MATLAB program will automatically change the names of the output STL files each time you run it, so you do not need to worry about accidentally overwriting previous files.
  6. Depending on how well the illusion works with the solid 3D shapes, you may want to change the design of your 2D shape. You can also change the height and viewing_angle variables in the code to change the height of the 3D shape and the view angle at which the illusion will appear, respectively. Try changing your shape and re-running the code. Note: If you are storing your 2D shapes in CSV files, you should give each iteration a new filename instead of overwriting the same file when you make changes.
  7. Keep iterating until you are happy with how your illusion appears on a computer screen. Make sure you keep track of your shape iterations in your lab notebook (if you are entering points manually) or in your CSV filenames (if you are using a spreadsheet program).
  8. Now you are ready to work with your STL file for viewing in a CAD program or for 3D printing. STL files do not include units, so when uploading to a CAD program or 3D printing service you will need to select the units for the shape. You are usually given options in millimeters or inches. Since your shape goes from -1 to +1 on the x axis, inches are a better choice, or your shape will be too small to print.
  9. Optionally, you can open your STL files in a CAD program. Tinkercad is a good free option for a beginner-friendly CAD program.
  10. 3D print one or both versions of your shape. Instructions for doing this will vary depending on your printer. If you are using an online 3D printing service (see materials section), follow the instructions on their site to upload your model, select a material, and order your part. In addition to selecting units when you first upload the model, you may also want to scale the model to make it bigger or smaller. Most 3D printer software and online 3D printing services will give you an option to do this.
  11. Look at your 3D printed shapes.
    1. What do you see if you look at the shape from directly above or from the side?
    2. What do you see if you look at the shape from above at roughly a 45° angle or at your chosen viewing angle?
    3. What happens if you rotate the shape 180° (put the shape flat on the table and spin it)?
    4. What happens if you put the shape in front of a mirror?
    5. Are there any differences between the physical 3D printed shape and what you saw on a computer screen?
  12. Continue to explore your illusion and try improving your shape or designing new ones.
    1. Can you design a 2D shape that does not work or that "breaks" the illusion?
    2. Which STL method for the top and bottom triangles works better for the illusion? Is this the same for all shapes?
    3. Does increasing the resolution (number of points along the x axis) improve the illusion for one or both methods?
icon scientific method

Ask an Expert

Do you have specific questions about your science project? Our team of volunteer scientists can help. Our Experts won't do the work for you, but they will make suggestions, offer guidance, and help you troubleshoot.

Global Connections

The United Nations Sustainable Development Goals (UNSDGs) are a blueprint to achieve a better and more sustainable future for all.

This project explores topics key to Industry, Innovation and Infrastructure: Build resilient infrastructure, promote sustainable industrialization and foster innovation.

Variations

Careers

If you like this project, you might enjoy exploring these related careers:

Career Profile
Mathematicians are part of an ancient tradition of searching for patterns, conjecturing, and figuring out truths based on rigorous deduction. Some mathematicians focus on purely theoretical problems, with no obvious or immediate applications, except to advance our understanding of mathematics, while others focus on applied mathematics, where they try to solve problems in economics, business, science, physics, or engineering. Read more
Career Profile
Computers are essential tools in the modern world, handling everything from traffic control, car welding, movie animation, shipping, aircraft design, and social networking to book publishing, business management, music mixing, health care, agriculture, and online shopping. Computer programmers are the people who write the instructions that tell computers what to do. Read more

News Feed on This Topic

 
, ,

Cite This Page

General citation information is provided here. Be sure to check the formatting, including capitalization, for the method you are using and update your citation, as needed.

MLA Style

Finio, Ben. "Design Your Own 3D Printed Optical Illusion." Science Buddies, 31 May 2022, https://www.sciencebuddies.org/science-fair-projects/project-ideas/3D-Printing_p003/3D-printing/3d-printed-optical-illusion. Accessed 25 Apr. 2024.

APA Style

Finio, B. (2022, May 31). Design Your Own 3D Printed Optical Illusion. Retrieved from https://www.sciencebuddies.org/science-fair-projects/project-ideas/3D-Printing_p003/3D-printing/3d-printed-optical-illusion


Last edit date: 2022-05-31
Top
We use cookies and those of third party providers to deliver the best possible web experience and to compile statistics.
By continuing and using the site, including the landing page, you agree to our Privacy Policy and Terms of Use.
OK, got it
Free science fair projects.