Changeset 1675 for trunk/doc/pslib/psLibSDRS.tex
- Timestamp:
- Sep 1, 2004, 2:20:39 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/doc/pslib/psLibSDRS.tex (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/pslib/psLibSDRS.tex
r1673 r1675 1 %%% $Id: psLibSDRS.tex,v 1.10 0 2004-09-01 23:50:05price Exp $1 %%% $Id: psLibSDRS.tex,v 1.101 2004-09-02 00:20:39 price Exp $ 2 2 \documentclass[panstarrs,spec]{panstarrs} 3 3 … … 1668 1668 psBitSet *psBitSetNot(psBitSet *out, psBitSet *in); 1669 1669 bool psBitSetTest(const psBitSet *checkBits, int bit); 1670 char *psBitSetToString(const pBitSet* bits); 1670 1671 \end{verbatim} 1671 1672 … … 1684 1685 \code{out} is \code{NULL}. 1685 1686 1686 Finally, \code{psBitSetTest} returns a true value if the specified 1687 \code{bit} is set; otherwise, it returns a false value. 1687 \code{psBitSetTest} returns a true value if the specified \code{bit} 1688 is set; otherwise, it returns a false value. 1689 1690 Finally, \code{psBitSetToString} returns a string representation of 1691 the specified \code{bits}. 1688 1692 1689 1693 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% … … 2369 2373 2370 2374 The function shall generate an error if the specified region is 2371 outside the bounds of the input image. 2375 outside the bounds of the input image. Any children of the input 2376 image shall be freed by \code{psImageTrim} before the trim takes 2377 place. 2372 2378 2373 2379 \subsubsection{Image Pixel Extractions} … … 2620 2626 2621 2627 \begin{verbatim} 2622 intpsImageWriteSection(const psImage *input, int x, int y, int z,2623 const char *extname, int extnum, const char *filename);2628 bool psImageWriteSection(const psImage *input, int x, int y, int z, 2629 const char *extname, int extnum, const char *filename); 2624 2630 \end{verbatim} 2625 2631 Write an image section to the named file, which may exist. This … … 2766 2772 2767 2773 Note that the \code{psUnaryOp} is performed on \code{B} in-place. 2774 2775 The list of required operators for \code{psBinaryOp} are: 2776 \begin{itemize} 2777 \item Addition (+) 2778 \item Subtraction (-) 2779 \item Multiplication (*) 2780 \item Division (/) 2781 \item Power (^) 2782 \item Minimum (min) 2783 \item Maximum (max) 2784 \end{itemize} 2785 2786 The list of required operators for \code{psUnaryOp} are: 2787 \begin{itemize} 2788 \item Absolute value (abs) 2789 \item Exponent (exp) 2790 \item Natural Log (ln) 2791 \item Power of 10 (ten) 2792 \item Log (log) 2793 \item Sine (sin and dsin) 2794 \item Cosine (cos and dcos) 2795 \item Tangent (tan and dtan) 2796 \item Arcsine (asin and dasin) 2797 \item Arccosine (acos and dacos) 2798 \item Arctan (atan and datan) 2799 \end{itemize} 2800 The trigonometric operators prefixed with ``d'' refer to the standard 2801 trigonometric operators acting on input that is in decimal degrees. 2768 2802 2769 2803 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Note:
See TracChangeset
for help on using the changeset viewer.
