comparison src/DLD-FUNCTIONS/tsearch.cc @ 9064:7c02ec148a3c

Check grammar on all .cc files Same check as previously done on .m files Attempt to enforce some conformity in documentation text for rules such as two spaces after a period, commas around latin abbreviations, etc.
author Rik <rdrider0-list@yahoo.com>
date Sat, 28 Mar 2009 13:57:22 -0700
parents 2eb392d058bb
children 16f53d29049f
comparison
equal deleted inserted replaced
9063:a6cf0ad87eee 9064:7c02ec148a3c
58 // method to traverse it 58 // method to traverse it
59 59
60 DEFUN_DLD (tsearch, args, , 60 DEFUN_DLD (tsearch, args, ,
61 "-*- texinfo -*-\n\ 61 "-*- texinfo -*-\n\
62 @deftypefn {Loadable Function} {@var{idx} =} tsearch (@var{x}, @var{y}, @var{t}, @var{xi}, @var{yi})\n\ 62 @deftypefn {Loadable Function} {@var{idx} =} tsearch (@var{x}, @var{y}, @var{t}, @var{xi}, @var{yi})\n\
63 Searches for the enclosing Delaunay convex hull. For @code{@var{t} =\n\ 63 Searches for the enclosing Delaunay convex hull. For @code{@var{t} =\n\
64 delaunay (@var{x}, @var{y})}, finds the index in @var{t} containing the\n\ 64 delaunay (@var{x}, @var{y})}, finds the index in @var{t} containing the\n\
65 points @code{(@var{xi}, @var{yi})}. For points outside the convex hull,\n\ 65 points @code{(@var{xi}, @var{yi})}. For points outside the convex hull,\n\
66 @var{idx} is NaN.\n\ 66 @var{idx} is NaN.\n\
67 @seealso{delaunay, delaunayn}\n\ 67 @seealso{delaunay, delaunayn}\n\
68 @end deftypefn") 68 @end deftypefn")
69 { 69 {
70 const double eps=1.0e-12; 70 const double eps=1.0e-12;