IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 20, 2005, 4:14:02 PM (21 years ago)
Author:
drobbin
Message:

Implemented, debugged, fixed psSphereRot functions/tests. 1 problem remains + testing.

File:
1 edited

Legend:

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

    r5319 r5437  
    77 *  @author Robert DeSonia, MHPCC
    88 *
    9  *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2005-10-14 00:07:37 $
     9 *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2005-10-21 02:14:02 $
    1111 *
    1212 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    122122);
    123123
     124/** Returns the conjugate of a specified rotation.
     125 *
     126 *  Stores the conjugate of a specified rotation in an existing psSphereRot* or creates a
     127 *  new psSphereRot* if NULL.  The conjugate of a rotation given in quaternions is -q0,
     128 *  -q1, -q2, q3.
     129 *
     130 *  @return psSphereRot*    the Conjugate of the specified psSphereRot, in.
     131 */
     132psSphereRot* psSphereRotConjugate(
     133    psSphereRot *out,                  ///< a psSphereRot to recycle or NULL
     134    const psSphereRot *in              ///< the psSphereRot from which to obtain the conjugate
     135);
     136
    124137/** Inverts the rotation.
    125138 *
     139 *  A given rotation is inverted by creating a psSphereRot using -phiP, -deltaP, -alphaP.
     140 *
    126141 *  @return psSphereRot*    Inverted input psSphereRot
    127142 */
    128143psSphereRot* psSphereRotInvert(
    129     psSphereRot *rot
     144    double alphaP,                      ///< north pole latitude
     145    double deltaP,                      ///< north pole longitude
     146    double phiP                         ///< defines the longitude in the input system of the equatorial intersection between the two systems (e.g, the first point of Ares).
    130147);
    131148
Note: See TracChangeset for help on using the changeset viewer.