IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 1406 for trunk/psLib/src/image


Ignore:
Timestamp:
Aug 6, 2004, 12:34:06 PM (22 years ago)
Author:
desonia
Message:

astyle fixed?

Location:
trunk/psLib/src/image
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/image/psImage.c

    r1385 r1406  
    99 *  @author Ross Harman, MHPCC
    1010 *
    11  *  @version $Revision: 1.36 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2004-08-04 23:37:39 $
     11 *  @version $Revision: 1.37 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2004-08-06 22:34:05 $
    1313 *
    1414 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
  • trunk/psLib/src/image/psImage.h

    r1385 r1406  
    1111 *  @author Ross Harman, MHPCC
    1212 *
    13  *  @version $Revision: 1.26 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2004-08-04 23:37:39 $
     13 *  @version $Revision: 1.27 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2004-08-06 22:34:05 $
    1515 *
    1616 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
  • trunk/psLib/src/image/psImageExtraction.c

    r1404 r1406  
    99*  @author Robert DeSonia, MHPCC
    1010*
    11 *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
    12 *  @date $Date: 2004-08-06 21:50:13 $
     11*  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
     12*  @date $Date: 2004-08-06 22:34:05 $
    1313*
    1414*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    334334        if ( delta < 0 ) {
    335335            outData += numCols - 1;
     336            if (outPosition != NULL) {
     337                outPosition += numCols - 1;
     338            }
    336339        }
    337340
     
    362365                *outData = statVal; \
    363366                if (outPosition != NULL) { \
    364                     *(outPosition++) = col+c; \
     367                    *outPosition = col+c; \
     368                    outPosition += delta; \
    365369                } \
    366370                outData += delta; \
     
    416420            if ( delta < 0 ) {
    417421                outData += numRows - 1;
     422                if (outPosition != NULL) {
     423                    outPosition += numRows - 1;
     424                }
    418425            }
    419426
     
    428435                *outData = statVal;
    429436                if (outPosition != NULL) {
    430                     *(outPosition++) = row+r;
     437                    *outPosition = row+r;
     438                    outPosition += delta;
     439                    \
    431440                }
    432441                outData += delta;
  • trunk/psLib/src/image/psImageIO.c

    r1385 r1406  
    77 *  @author Robert DeSonia, MHPCC
    88 *
    9  *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2004-08-04 23:37:39 $
     9 *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2004-08-06 22:34:05 $
    1111 *
    1212 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
  • trunk/psLib/src/image/psImageManip.c

    r1385 r1406  
    1010 *  @author Ross Harman, MHPCC
    1111 *
    12  *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2004-08-04 23:37:39 $
     12 *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2004-08-06 22:34:05 $
    1414 *
    1515 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
  • trunk/psLib/src/image/psImageStats.c

    r1393 r1406  
    99*  @author George Gusciora, MHPCC
    1010*
    11 *  @version $Revision: 1.28 $ $Name: not supported by cvs2svn $
    12 *  @date $Date: 2004-08-05 19:38:52 $
     11*  @version $Revision: 1.29 $ $Name: not supported by cvs2svn $
     12*  @date $Date: 2004-08-06 22:34:05 $
    1313*
    1414*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
Note: See TracChangeset for help on using the changeset viewer.