IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 9, 2004, 1:34:58 PM (22 years ago)
Author:
desonia
Message:

cleanup of some indent-induced madness.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/astro/psCoord.h

    r1426 r1440  
    1111*  @author George Gusciora, MHPCC
    1212*
    13 *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
    14 *  @date $Date: 2004-08-09 22:44:25 $
     13*  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
     14*  @date $Date: 2004-08-09 23:34:57 $
    1515*
    1616*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    7272typedef struct
    7373{
    74     psDPolynomial2D *x;         ///< 2D polynomial transform of X coordinates
    75     psDPolynomial2D *y;         ///< 2D polynomial transform of Y coordinates
     74    psDPolynomial2D* x;         ///< 2D polynomial transform of X coordinates
     75    psDPolynomial2D* y;         ///< 2D polynomial transform of Y coordinates
    7676}
    7777psPlaneTransform;
     
    9191typedef struct
    9292{
    93     psDPolynomial4D *x;         ///< 4D polynomial transform of X coordinates
    94     psDPolynomial4D *y;         ///< 4D polynomial transform of Y coordinates
     93    psDPolynomial4D* x;         ///< 4D polynomial transform of X coordinates
     94    psDPolynomial4D* y;         ///< 4D polynomial transform of Y coordinates
    9595}
    9696psPlaneDistort;
     
    171171 *
    172172 */
    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.
     173psPlane* 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.
    176176                              );
    177177
     
    179179 *
    180180 */
    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.
     181psPlane* 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.
    184184                             float term3,       ///< third term -- maybe magnitude
    185185                             float term4        ///< forth term -- maybe color
     
    189189 *
    190190 */
    191 psSphereTransform *psSphereTransformAlloc(double NPlat, ///< north pole latitude
     191psSphereTransform* psSphereTransformAlloc(double NPlat, ///< north pole latitude
    192192        double Xo,    ///< First PT of Ares lon
    193193        double xo     ///< First PT of Ares equiv lon
     
    197197 *
    198198 */
    199 psSphere *psSphereTransformApply(psSphere * out,        ///< a psSphere to recycle.  If NULL, a new one is
     199psSphere* psSphereTransformApply(psSphere* out,        ///< a psSphere to recycle.  If NULL, a new one is
    200200                                 // generated.
    201                                  const psSphereTransform * transform,   ///< the transform to apply
    202                                  const psSphere * coord ///< the coordinate to apply the transform above.x
     201                                 const psSphereTransform* transform,   ///< the transform to apply
     202                                 const psSphere* coord ///< the coordinate to apply the transform above.x
    203203                                );
    204204
    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,
     205psSphereTransform* psSphereTransformICRStoEcliptic(psTime time);
     206
     207psSphereTransform* psSphereTransformEcliptictoICRS(psTime time);
     208
     209psSphereTransform* psSphereTransformICRStoGalatic(void);
     210
     211psSphereTransform* psSphereTransformGalatictoICRS(void);
     212
     213psPlane* psProject(const psSphere* coord, const psProjection* projection);
     214
     215psSphere* psDeproject(const psPlane* coord, const psProjection* projection);
     216
     217psSphere* psSphereGetOffset(const psSphere* restrict position1,
     218                            const psSphere* restrict position2,
    219219                            psSphereOffsetMode mode, psSphereOffsetUnit unit);
    220220
    221 psSphere *psSphereSetOffset(const psSphere * restrict position,
    222                             const psSphere * restrict offset,
     221psSphere* psSphereSetOffset(const psSphere* restrict position,
     222                            const psSphere* restrict offset,
    223223                            psSphereOffsetMode mode, psSphereOffsetUnit unit);
    224224
Note: See TracChangeset for help on using the changeset viewer.