Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to draw intersecting planes?

Tags:

I want to use matplotlib to draw more or less the figure I attached below, which includes the two intersecting planes with the right amount of transparency indicating their relative orientations, and the circles and vectors in the two planes projected in 2D.

I'm not sure if there is an existing package for doing this, any hints?image credit: M Strassler

like image 873
nye17 Avatar asked Feb 12 '13 03:02

nye17


People also ask

What are 2 intersecting planes?

The intersection of two planes is always a line If two planes intersect each other, the intersection will always be a line. where r 0 r_0 r0​ is a point on the line and v is the vector result of the cross product of the normal vectors of the two planes.

What is an example of intersecting planes?

The two connecting walls, the binding edge of a book, where all the papers (planes) meet is a real-life example of intersecting planes. Thus, the intersection of two planes is always a straight line.


2 Answers

from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as plt import numpy as np   fig = plt.figure() ax = fig.add_subplot(111, projection='3d')  dim = 10  X, Y = np.meshgrid([-dim, dim], [-dim, dim]) Z = np.zeros((2, 2))  angle = .5 X2, Y2 = np.meshgrid([-dim, dim], [0, dim]) Z2 = Y2 * angle X3, Y3 = np.meshgrid([-dim, dim], [-dim, 0]) Z3 = Y3 * angle  r = 7 M = 1000 th = np.linspace(0, 2 * np.pi, M)  x, y, z = r * np.cos(th),  r * np.sin(th), angle * r * np.sin(th)  ax.plot_surface(X2, Y3, Z3, color='blue', alpha=.5, linewidth=0, zorder=-1)  ax.plot(x[y < 0], y[y < 0], z[y < 0], lw=5, linestyle='--', color='green',         zorder=0)  ax.plot_surface(X, Y, Z, color='red', alpha=.5, linewidth=0, zorder=1)  ax.plot(r * np.sin(th), r * np.cos(th), np.zeros(M), lw=5, linestyle='--',         color='k', zorder=2)  ax.plot_surface(X2, Y2, Z2, color='blue', alpha=.5, linewidth=0, zorder=3)  ax.plot(x[y > 0], y[y > 0], z[y > 0], lw=5, linestyle='--', color='green',         zorder=4)  plt.axis('off') plt.show() 

result

caveats:

  • I am running a version very close to the current master, so I am not sure what will work in older versions

  • The reason for splitting up the plotting is that 'above' and 'below' are determined in a some what arcane way (I am not strictly sure the zorder actually does anything), and is really dependent on the order the artists are drawn in. Thus surfaces can not intersect (one will be above the other every where), so you need to plot the sections on either side of the intersection separately. (You can see this in the black line which I didn't split at looks like it in 'on top of' the upper blue plane).

  • The 'proper' ordering of the surfaces also seems to be dependent on the view angle.

like image 122
tacaswell Avatar answered Nov 04 '22 04:11

tacaswell


Matplotlib does have 3d projection capability, but the dashed lines are drawn with constant width in the final 2D image view, not looking as if laid flat on the tilted planes. If the geometry is simple, and the "orbits" circular, it might work, but if you're wanting to draw ellipses seen at an angle, the viewer may desire more visual clues on the whole 3D arrangement.

If I had to make one nice fancy illustration like that, but even nicer and fancier, and it didn't have to be automated, I'd start by creating the graphics - at least the dashed line circles - for each of the planes as a simple flat 2D image using whatever seems handy at the moment - a vector drawing program like Illustrator or Inkscape, or in matplotlib if there is data to be followed.

Then, I'd use POV-Ray or Blender to model the planes at whatever angles, spheres for the round things (planets?). The 2D graphics already generated would become textures to be mapped to the planes. POV-Ray uses a scripting language allowing a record to be kept, modified, and copied for future projets. If it were really one-time and I didn't mind doing it all by hand, Blender is good. Whichever tool I use, the result is an image showing the desired projection of the 3D geometric elements into 2D.

Are the round things, what I'm calling "planets" supposed to be flat circles in the final work, like in the examples? Then I'd draw them with a vector drawing app over the rendered 3D image. But I suspect you'd prefer spheres in 3D.

The samples shown have no lighting or shadows. Shadows would help with clarifying the geometry in 3D, although the first of those two illustrations isn't too bad. The short green line showing the inclined plane's planet over the red line seems clear enough but a shadow would help. The second illustration does look a bit more confusing as to the shape, location an intersections of the various entities. Here, shadows would help more. POV-Ray or Blender will happily create these with little effort. Even more, inter-reflections, known as radiosity, help with seeing 3D relations in 2D images. This advanced effect is easy to do these days, not needing expertise in optics or graphics, just knowing that it exists.

Of course, this advice is no good unless one is already familiar with 3D graphics and tools such s POV-Ray.

For an automated solution, using OpenGL in some quick and dirty program may be best. Shadows may take some work, though.

like image 24
DarenW Avatar answered Nov 04 '22 04:11

DarenW