Changeset 3095 for trunk/psLib/src/astro/psCoord.h
- Timestamp:
- Jan 26, 2005, 10:24:17 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/astro/psCoord.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/astro/psCoord.h
r2664 r3095 10 10 * @author GLG, MHPCC 11 11 * 12 * @version $Revision: 1.2 3$ $Name: not supported by cvs2svn $13 * @date $Date: 200 4-12-08 18:23:54$12 * @version $Revision: 1.24 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2005-01-26 20:24:16 $ 14 14 * 15 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 167 167 } psSphereOffsetUnit; 168 168 169 /** Allocates a psPlane 170 * 171 * @return psPlane* resulting plane structure. 172 */ 173 174 psPlane* psPlaneAlloc(void); 175 176 /** Allocates a psSphere 177 * 178 * @return psSphere* resulting sphere structure. 179 */ 180 181 psSphere* psSphereAlloc(void); 182 183 169 184 /** Allocates a psPlaneTransform transform. 170 185 * … … 212 227 ); 213 228 229 // XXX: Doxygenate. 230 psPlaneTransform *psPlaneTransformInvert( 231 psPlaneTransform *out, 232 const psPlaneTransform *in, 233 psRegion *region, 234 int nSamples 235 ); 236 237 // XXX: Doxygenate. 238 psPlaneTransform *psPlaneTransformCombine( 239 psPlaneTransform *out, 240 const psPlaneTransform *trans1, 241 const psPlaneTransform *trans2 242 ); 243 244 // XXX: Doxygenate. 245 bool psPlaneTranformFit( 246 psPlaneTransform *trans, 247 const psArray *source, 248 const psArray *dest, 249 int nRejIter, 250 float sigmaClip 251 ); 252 253 254 214 255 /** Allocator for psSphereTransform 215 256 * … … 262 303 */ 263 304 psSphereTransform* psSphereTransformGalaticToICRS(void); 305 306 /** Allocates memory for a psProjection structure 307 * 308 * @return psProjection* psProjection structure 309 */ 310 psProjection* psProjectionAlloc( 311 psF64 R, ///< Right-ascension of projection center. 312 psF64 D, ///< Declination of projection center. 313 psF64 Xs, ///< Scale in x-dimension 314 psF64 Ys, ///< Scale in y-dimension 315 psProjectionType type 316 ); 264 317 265 318 /** Projects a spherical coordinate to a linear coordinate system
Note:
See TracChangeset
for help on using the changeset viewer.
