Apply stereographic projection with pole at (-1, 0, 0).
Source code in pleat/geometries/spherical.py
| @classmethod
def stereographic_projection(cls, pts):
"""Apply stereographic projection with pole at (-1, 0, 0)."""
return 2 * pts[..., 1:] / (pts[..., :1] + 1)
|