diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2019-10-11 20:17:56 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2019-10-11 20:17:56 (GMT) |
commit | 57db79ac202aedb705c16e96c43476ea128010ef (patch) | |
tree | 79429784c7abf31d037587f414d4ff5bf60872fa /tksao/frame/wcsast.h | |
parent | 6ef55182e27702dd02bfc33beee89dbc4d52fd2b (diff) | |
download | blt-57db79ac202aedb705c16e96c43476ea128010ef.zip blt-57db79ac202aedb705c16e96c43476ea128010ef.tar.gz blt-57db79ac202aedb705c16e96c43476ea128010ef.tar.bz2 |
support higher fits dims
Diffstat (limited to 'tksao/frame/wcsast.h')
-rw-r--r-- | tksao/frame/wcsast.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tksao/frame/wcsast.h b/tksao/frame/wcsast.h index 79dc101..13bda67 100644 --- a/tksao/frame/wcsast.h +++ b/tksao/frame/wcsast.h @@ -5,6 +5,7 @@ #include "vector.h" #include "vector3d.h" #include "coord.h" +#include "context.h" extern "C" { #include "ast.h" @@ -14,9 +15,9 @@ int wcsSystem(AstFrameSet*, Coord::CoordSystem); void wcsSkyFrame(AstFrameSet*, Coord::SkyFrame); void wcsFormat(AstFrameSet*, int id, const char* format); -Vector wcsTran(AstFrameSet*, const Vector&, int); -void wcsTran(AstFrameSet*, int, Vector*, int, Vector*); -Vector3d wcsTran(AstFrameSet*, const Vector3d&, int); +Vector wcsTran(Context*, AstFrameSet*, const Vector&, int); +void wcsTran(Context*, AstFrameSet*, int, Vector*, int, Vector*); +Vector3d wcsTran(Context*, AstFrameSet*, const Vector3d&, int); double wcsDistance(AstFrameSet*, const Vector&, const Vector&); double wcsAngle(AstFrameSet*, const Vector&, const Vector&, const Vector&); |