Changeset 3767
- Timestamp:
- Apr 25, 2005, 11:20:41 AM (21 years ago)
- Location:
- trunk/doc/pslib
- Files:
-
- 2 edited
-
ChangeLogSDRS.tex (modified) (2 diffs)
-
psLibSDRS.tex (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/pslib/ChangeLogSDRS.tex
r3766 r3767 1 %%% $Id: ChangeLogSDRS.tex,v 1. 89 2005-04-23 02:14:53price Exp $1 %%% $Id: ChangeLogSDRS.tex,v 1.90 2005-04-25 21:20:41 price Exp $ 2 2 3 3 \subsection{Changes from version 00 to version 01} … … 538 538 \item Add \code{PS_META_TIME} to \code{psMetadataType} 539 539 \item Changed \code{psPixels} to vector-like array of \code{psPixelCoord} (bug 371). 540 \item Added \code{psPixelsAlloc} and \code{psPixelsRealloc} (bug 371).540 \item Added \code{psPixelsAlloc}, \code{psPixelsRealloc} and \code{psPixelsCopy} (bug 371). 541 541 \item After conversation with GG: 542 542 \begin{itemize} -
trunk/doc/pslib/psLibSDRS.tex
r3766 r3767 1 %%% $Id: psLibSDRS.tex,v 1.20 6 2005-04-23 02:14:53price Exp $1 %%% $Id: psLibSDRS.tex,v 1.207 2005-04-25 21:20:41 price Exp $ 2 2 \documentclass[panstarrs,spec]{panstarrs} 3 3 … … 3094 3094 3095 3095 \begin{verbatim} 3096 psPixels *psPixelsCopy(psPixels *out, const psPixels *pixels); 3096 3097 psPixels *psPixelsConcatenate(psPixels *out, const psPixels *pixels); 3097 3098 \end{verbatim} 3098 3099 3099 \code{psPixelsCo ncatenate} shall concatenate the \code{pixels} onto3100 \code{psPixelsCopy} shall copy the contents of \code{pixels} to the 3100 3101 \code{out}. In the event that \code{out} is \code{NULL}, a new 3101 3102 \code{psPixels} shall be allocated, and the contents of \code{pixels} 3102 3103 simply copied in. If \code{pixels} is \code{NULL}, the function shall 3103 generate an error and return \code{NULL}. The function shall take 3104 care to ensure that there are no duplicate pixels in \code{out} (since 3105 the order in which the pixels are stored is not important, the values 3106 may be sorted, allowing the use of a faster algorithm than a linear 3107 scan). 3104 generate an error and return \code{NULL}. 3105 3106 \code{psPixelsConcatenate} shall concatenate the \code{pixels} onto 3107 \code{out}. In the event that \code{out} is \code{NULL}, the function 3108 performs a \code{psPixelsCopy}, returning the copy. If \code{pixels} 3109 is \code{NULL}, the function shall generate an error and return 3110 \code{NULL}. The function shall take care to ensure that there are no 3111 duplicate pixels in \code{out} (since the order in which the pixels 3112 are stored is not important, the values may be sorted, allowing the 3113 use of a faster algorithm than a linear scan). 3108 3114 3109 3115 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Note:
See TracChangeset
for help on using the changeset viewer.
