Changeset 13991
- Timestamp:
- Jun 29, 2007, 2:35:38 PM (19 years ago)
- Location:
- trunk/psLib/src/math
- Files:
-
- 3 edited
-
psRegion.c (modified) (1 diff)
-
psSparse.c (modified) (1 diff)
-
psStats.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/math/psRegion.c
r13741 r13991 154 154 } 155 155 156 bool inlinepsRegionIsNaN(psRegion region)156 bool psRegionIsNaN(psRegion region) 157 157 { 158 158 return isnan(region.x0) || isnan(region.x1) || isnan(region.y0) || isnan(region.y1); -
trunk/psLib/src/math/psSparse.c
r11686 r13991 117 117 } 118 118 119 void inlinepsSparseVectorElement(psSparse *sparse, int i, float value)119 void psSparseVectorElement(psSparse *sparse, int i, float value) 120 120 { 121 121 -
trunk/psLib/src/math/psStats.c
r13647 r13991 13 13 * use ->min and ->max (PS_STAT_USE_RANGE) 14 14 * 15 * @version $Revision: 1.21 2$ $Name: not supported by cvs2svn $16 * @date $Date: 2007-06- 05 21:13:14$15 * @version $Revision: 1.213 $ $Name: not supported by cvs2svn $ 16 * @date $Date: 2007-06-30 00:35:38 $ 17 17 * 18 18 * Copyright 2006 IfA, University of Hawaii … … 1964 1964 } 1965 1965 1966 inlinepsStatsOptions psStatsSingleOption(psStatsOptions option)1966 psStatsOptions psStatsSingleOption(psStatsOptions option) 1967 1967 { 1968 1968 switch (option & ~(PS_STAT_USE_RANGE | PS_STAT_USE_BINSIZE)) { … … 1992 1992 } 1993 1993 1994 inlinedouble psStatsGetValue(const psStats *stats, psStatsOptions option)1994 double psStatsGetValue(const psStats *stats, psStatsOptions option) 1995 1995 { 1996 1996 // We could call psStatsSingle to check, but it would be a waste since we effectively do it anyway
Note:
See TracChangeset
for help on using the changeset viewer.
