Changeset 7380 for trunk/psLib/src/math
- Timestamp:
- Jun 6, 2006, 5:22:07 PM (20 years ago)
- Location:
- trunk/psLib/src/math
- Files:
-
- 8 added
- 3 edited
-
Makefile.am (modified) (2 diffs)
-
psEllipse.c (added)
-
psEllipse.h (added)
-
psPolynomialUtils.c (added)
-
psPolynomialUtils.h (added)
-
psRegion.c (modified) (1 diff)
-
psRegion.h (modified) (1 diff)
-
psSparse.c (added)
-
psSparse.h (added)
-
psVectorSmooth.c (added)
-
psVectorSmooth.h (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/math/Makefile.am
r7210 r7380 8 8 psBinaryOp.c \ 9 9 psCompare.c \ 10 psEllipse.c \ 10 11 psMatrix.c \ 11 12 psMinimizeLMM.c \ 12 13 psMinimizePowell.c \ 13 14 psMinimizePolyFit.c \ 15 psPolynomial.c \ 16 psPolynomialUtils.c \ 14 17 psRandom.c \ 15 18 psRegion.c \ 16 19 psRegionForImage.c \ 17 ps Polynomial.c \20 psSparse.c \ 18 21 psSpline.c \ 19 22 psStats.c \ 20 psMathUtils.c 23 psMathUtils.c \ 24 psVectorSmooth.c 21 25 22 26 EXTRA_DIST = math.i … … 28 32 psCompare.h \ 29 33 psConstants.h \ 34 psEllipse.h \ 30 35 psMatrix.h \ 31 36 psMinimizeLMM.h \ 32 37 psMinimizePowell.h \ 33 38 psMinimizePolyFit.h \ 39 psPolynomial.h \ 40 psPolynomialUtils.h \ 34 41 psRandom.h \ 35 42 psRegion.h \ 36 43 psRegionForImage.h \ 37 ps Polynomial.h \44 psSparse.h \ 38 45 psSpline.h \ 39 46 psStats.h \ 40 psMathUtils.h 47 psMathUtils.h \ 48 psVectorSmooth.h 41 49 42 50 CLEANFILES = *~ -
trunk/psLib/src/math/psRegion.c
r6874 r7380 84 84 } 85 85 86 bool inline psRegionIsNaN(const psRegion region) 87 { 88 return isnan(region.x0) || isnan(region.x1) || isnan(region.y0) || isnan(region.y1); 89 } 90 -
trunk/psLib/src/math/psRegion.h
r6874 r7380 70 70 ); 71 71 72 // Test if any element of the region is NaN 73 bool inline psRegionIsNaN(const psRegion region// Region to check 74 ); 72 75 73 76 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
