IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 3948


Ignore:
Timestamp:
May 16, 2005, 11:07:01 AM (21 years ago)
Author:
Paul Price
Message:

psImageCopy preserves col0,row0.

Location:
branches/pap_branch_050513/psLib/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/pap_branch_050513/psLib/src/image/psImage.c

    r3786 r3948  
    99 *  @author Ross Harman, MHPCC
    1010 *
    11  *  @version $Revision: 1.65 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2005-04-29 02:25:10 $
     11 *  @version $Revision: 1.65.2.1 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2005-05-16 21:07:01 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    235235
    236236    output = psImageRecycle(output, numCols, numRows, type);
     237
     238    // Preserve col0,row0
     239    output->col0 = input->col0;
     240    output->row0 = input->row0;
    237241
    238242    // cover the trival case of copy of the same
  • branches/pap_branch_050513/psLib/src/mathtypes/psImage.c

    r3786 r3948  
    99 *  @author Ross Harman, MHPCC
    1010 *
    11  *  @version $Revision: 1.65 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2005-04-29 02:25:10 $
     11 *  @version $Revision: 1.65.2.1 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2005-05-16 21:07:01 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    235235
    236236    output = psImageRecycle(output, numCols, numRows, type);
     237
     238    // Preserve col0,row0
     239    output->col0 = input->col0;
     240    output->row0 = input->row0;
    237241
    238242    // cover the trival case of copy of the same
Note: See TracChangeset for help on using the changeset viewer.