projecting a 3D helix on to XY plane

617 Views Asked by At

How can I project a 3D helix (XYZ cartesian coordinates) onto the XY plane. Basically I want to project different 3D helices from XYZ to XY plane.

1

There are 1 best solutions below

2
On

for each point=(x, y, z) Set z = 0, and use the 2D (x, y) coordinates to obtain an orthographic projection on the x, y plane.