sofars/
gnomic.rs

1//! Gnomonic projection
2/// Solve for tangent point, spherical
3pub fn tpors() {}
4
5/// Solve for tangent point, vector
6pub fn tporv() {}
7
8/// Deproject tangent plane to celestial, spherical
9pub fn tpsts() {}
10
11/// Deproject tangent plane to celestial, vector
12pub fn tpstv() {}
13
14/// Project celestial to tangent plane, spherical
15pub fn tpxes() {}
16
17/// Project celestial to tangent plane, vector
18pub fn tpxev() {}