Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lucainnocenti/6aacc965cdc71d3425992a090614a7ae to your computer and use it in GitHub Desktop.
Save lucainnocenti/6aacc965cdc71d3425992a090614a7ae to your computer and use it in GitHub Desktop.
Dynamic visualisation of stereographic projection of the sphere
stereoTo3D[x_, y_] := 1/(1 + x^2 + y^2) {2 x, 2 y, 1 - x^2 - y^2};
DynamicModule[
{pt = {0, 0}},
Row @ {
LocatorPane[Dynamic @ pt,
Graphics[{Gray, Disk[]}, Frame -> True, ImageSize -> 200]
],
Graphics3D[
{
{Opacity@0.4, Sphere[]},
{Opacity@0.6, InfinitePlane[{0, 0, 0}, {{1, 0, 0}, {0, 1, 0}}]},
PointSize@0.02,
Dynamic @ Point @ {Append[pt, 0]},
Dynamic @ Point @ {stereoTo3D @@ pt},
Dynamic @ {Dashed,
Line@{{0, 0, -1}, stereoTo3D @@ pt}
}
},
Axes -> True, ImageSize -> 500
]
}
]
@lucainnocenti
Copy link
Author

image

@lucainnocenti
Copy link
Author

Using it to visualise intersection at infinity of parallel lines when embedded in the projective space:

Graphics3D[
 {
  {Opacity@0.4, Sphere[]},
  {Opacity@0.6, InfinitePlane[{0, 0, 0}, {{1, 0, 0}, {0, 1, 0}}]},
  PointSize@0.008,
  Table[{t, t}, {t, Subdivide[-4, 4, 500]}] // {
     Point[Append[#, 0] & /@ #],
     Point[stereoTo3D /@ #]
     } &,
  Red,
  Table[{t, t + 1}, {t, Subdivide[-4, 4, 500]}] // {
     Point[Append[#, 0] & /@ #],
     Point[stereoTo3D /@ #]
     } &
  },
 Axes -> True, ImageSize -> 500, 
 PlotRange -> {{-2, 2}, {-2, 2}, Automatic}
 ]

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment