Changeset 1440 for trunk/psLib/src/astro/psCoord.h
- Timestamp:
- Aug 9, 2004, 1:34:58 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/astro/psCoord.h (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/astro/psCoord.h
r1426 r1440 11 11 * @author George Gusciora, MHPCC 12 12 * 13 * @version $Revision: 1.1 1$ $Name: not supported by cvs2svn $14 * @date $Date: 2004-08-09 2 2:44:25$13 * @version $Revision: 1.12 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2004-08-09 23:34:57 $ 15 15 * 16 16 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 72 72 typedef struct 73 73 { 74 psDPolynomial2D *x; ///< 2D polynomial transform of X coordinates75 psDPolynomial2D *y; ///< 2D polynomial transform of Y coordinates74 psDPolynomial2D* x; ///< 2D polynomial transform of X coordinates 75 psDPolynomial2D* y; ///< 2D polynomial transform of Y coordinates 76 76 } 77 77 psPlaneTransform; … … 91 91 typedef struct 92 92 { 93 psDPolynomial4D *x; ///< 4D polynomial transform of X coordinates94 psDPolynomial4D *y; ///< 4D polynomial transform of Y coordinates93 psDPolynomial4D* x; ///< 4D polynomial transform of X coordinates 94 psDPolynomial4D* y; ///< 4D polynomial transform of Y coordinates 95 95 } 96 96 psPlaneDistort; … … 171 171 * 172 172 */ 173 psPlane *psPlaneTransformApply(psPlane* out, ///< a psPlane to recycle. If NULL, a new one is generated.174 const psPlaneTransform * transform, ///< the transform to apply175 const psPlane * coords ///< the coordinate to apply the transform above.173 psPlane* psPlaneTransformApply(psPlane* out, ///< a psPlane to recycle. If NULL, a new one is generated. 174 const psPlaneTransform* transform, ///< the transform to apply 175 const psPlane* coords ///< the coordinate to apply the transform above. 176 176 ); 177 177 … … 179 179 * 180 180 */ 181 psPlane *psPlaneDistortApply(psPlane* out, ///< a psPlane to recycle. If NULL, a new one is generated.182 const psPlaneDistort * transform, ///< the transform to apply183 const psPlane * coords, ///< the coordinate to apply the transform above.181 psPlane* psPlaneDistortApply(psPlane* out, ///< a psPlane to recycle. If NULL, a new one is generated. 182 const psPlaneDistort* transform, ///< the transform to apply 183 const psPlane* coords, ///< the coordinate to apply the transform above. 184 184 float term3, ///< third term -- maybe magnitude 185 185 float term4 ///< forth term -- maybe color … … 189 189 * 190 190 */ 191 psSphereTransform *psSphereTransformAlloc(double NPlat, ///< north pole latitude191 psSphereTransform* psSphereTransformAlloc(double NPlat, ///< north pole latitude 192 192 double Xo, ///< First PT of Ares lon 193 193 double xo ///< First PT of Ares equiv lon … … 197 197 * 198 198 */ 199 psSphere *psSphereTransformApply(psSphere* out, ///< a psSphere to recycle. If NULL, a new one is199 psSphere* psSphereTransformApply(psSphere* out, ///< a psSphere to recycle. If NULL, a new one is 200 200 // generated. 201 const psSphereTransform * transform, ///< the transform to apply202 const psSphere * coord ///< the coordinate to apply the transform above.x201 const psSphereTransform* transform, ///< the transform to apply 202 const psSphere* coord ///< the coordinate to apply the transform above.x 203 203 ); 204 204 205 psSphereTransform *psSphereTransformICRStoEcliptic(psTime time);206 207 psSphereTransform *psSphereTransformEcliptictoICRS(psTime time);208 209 psSphereTransform *psSphereTransformICRStoGalatic(void);210 211 psSphereTransform *psSphereTransformGalatictoICRS(void);212 213 psPlane *psProject(const psSphere * coord, const psProjection* projection);214 215 psSphere *psDeproject(const psPlane * coord, const psProjection* projection);216 217 psSphere *psSphereGetOffset(const psSphere* restrict position1,218 const psSphere * restrict position2,205 psSphereTransform* psSphereTransformICRStoEcliptic(psTime time); 206 207 psSphereTransform* psSphereTransformEcliptictoICRS(psTime time); 208 209 psSphereTransform* psSphereTransformICRStoGalatic(void); 210 211 psSphereTransform* psSphereTransformGalatictoICRS(void); 212 213 psPlane* psProject(const psSphere* coord, const psProjection* projection); 214 215 psSphere* psDeproject(const psPlane* coord, const psProjection* projection); 216 217 psSphere* psSphereGetOffset(const psSphere* restrict position1, 218 const psSphere* restrict position2, 219 219 psSphereOffsetMode mode, psSphereOffsetUnit unit); 220 220 221 psSphere *psSphereSetOffset(const psSphere* restrict position,222 const psSphere * restrict offset,221 psSphere* psSphereSetOffset(const psSphere* restrict position, 222 const psSphere* restrict offset, 223 223 psSphereOffsetMode mode, psSphereOffsetUnit unit); 224 224
Note:
See TracChangeset
for help on using the changeset viewer.
