Changeset 4127
- Timestamp:
- Jun 6, 2005, 4:08:26 PM (21 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 2 edited
-
astro/psCoord.h (modified) (4 diffs)
-
astronomy/psCoord.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/astro/psCoord.h
r3977 r4127 10 10 * @author GLG, MHPCC 11 11 * 12 * @version $Revision: 1.3 1$ $Name: not supported by cvs2svn $13 * @date $Date: 2005-0 5-19 05:18:20$12 * @version $Revision: 1.32 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2005-06-07 02:08:26 $ 14 14 * 15 15 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 317 317 * specifies the units of the offset only. 318 318 * 319 * @return psSphere* the offset between position1 and position2319 * @return psSphere* the offset between position1 and position2 320 320 */ 321 321 psSphere* psSphereGetOffset( 322 const psSphere* position1, 323 const psSphere* position2, 324 psSphereOffsetMode mode, 325 psSphereOffsetUnit unit 322 const psSphere* position1, ///< first position for calculating offset 323 const psSphere* position2, ///< second position for calculating offset 324 psSphereOffsetMode mode, ///< type of offset can be PS_SPHERICAL or PS_LINEAR 325 psSphereOffsetUnit unit ///< specifies the units of offset only 326 326 ); 327 327 … … 335 335 * specifies the units of the offset only. 336 336 * 337 * @return psSphere* the givenposition with the given offset applied.337 * @return psSphere* the original position with the given offset applied. 338 338 */ 339 339 psSphere* psSphereSetOffset( 340 const psSphere* position, 341 const psSphere* offset, 342 psSphereOffsetMode mode, 343 psSphereOffsetUnit unit 340 const psSphere* position, ///< coordinate of origin 341 const psSphere* offset, ///< coordinate of offset to apply 342 psSphereOffsetMode mode, ///< corresponds to an offset in angles or local projection 343 psSphereOffsetUnit unit ///< specifies the units of offset only 344 344 ); 345 345 … … 355 355 ); 356 356 357 // XXX: Doxygenate. 357 /** Takes a given transform and inverts it linearly if possible. 358 * 359 * @return psPlaneTransform 360 * the linearly inverted transform 361 */ 358 362 psPlaneTransform *p_psPlaneTransformLinearInvert( 359 psPlaneTransform *transform 360 ); 361 362 // XXX: Doxygenate 363 psPlaneTransform *transform ///< transform to invert 364 ); 365 366 367 /** Takes a transform and tests whether or not it is a linear projection. 368 * 369 * @return psS32 370 * the order of the projection 371 */ 363 372 psS32 p_psIsProjectionLinear( 364 psPlaneTransform *transform 373 psPlaneTransform *transform ///< transform to test for linearity 365 374 ); 366 375 -
trunk/psLib/src/astronomy/psCoord.h
r3977 r4127 10 10 * @author GLG, MHPCC 11 11 * 12 * @version $Revision: 1.3 1$ $Name: not supported by cvs2svn $13 * @date $Date: 2005-0 5-19 05:18:20$12 * @version $Revision: 1.32 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2005-06-07 02:08:26 $ 14 14 * 15 15 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 317 317 * specifies the units of the offset only. 318 318 * 319 * @return psSphere* the offset between position1 and position2319 * @return psSphere* the offset between position1 and position2 320 320 */ 321 321 psSphere* psSphereGetOffset( 322 const psSphere* position1, 323 const psSphere* position2, 324 psSphereOffsetMode mode, 325 psSphereOffsetUnit unit 322 const psSphere* position1, ///< first position for calculating offset 323 const psSphere* position2, ///< second position for calculating offset 324 psSphereOffsetMode mode, ///< type of offset can be PS_SPHERICAL or PS_LINEAR 325 psSphereOffsetUnit unit ///< specifies the units of offset only 326 326 ); 327 327 … … 335 335 * specifies the units of the offset only. 336 336 * 337 * @return psSphere* the givenposition with the given offset applied.337 * @return psSphere* the original position with the given offset applied. 338 338 */ 339 339 psSphere* psSphereSetOffset( 340 const psSphere* position, 341 const psSphere* offset, 342 psSphereOffsetMode mode, 343 psSphereOffsetUnit unit 340 const psSphere* position, ///< coordinate of origin 341 const psSphere* offset, ///< coordinate of offset to apply 342 psSphereOffsetMode mode, ///< corresponds to an offset in angles or local projection 343 psSphereOffsetUnit unit ///< specifies the units of offset only 344 344 ); 345 345 … … 355 355 ); 356 356 357 // XXX: Doxygenate. 357 /** Takes a given transform and inverts it linearly if possible. 358 * 359 * @return psPlaneTransform 360 * the linearly inverted transform 361 */ 358 362 psPlaneTransform *p_psPlaneTransformLinearInvert( 359 psPlaneTransform *transform 360 ); 361 362 // XXX: Doxygenate 363 psPlaneTransform *transform ///< transform to invert 364 ); 365 366 367 /** Takes a transform and tests whether or not it is a linear projection. 368 * 369 * @return psS32 370 * the order of the projection 371 */ 363 372 psS32 p_psIsProjectionLinear( 364 psPlaneTransform *transform 373 psPlaneTransform *transform ///< transform to test for linearity 365 374 ); 366 375
Note:
See TracChangeset
for help on using the changeset viewer.
