From: c. <kin...@ti...> - 2012-10-12 07:40:54
|
On 12 Oct 2012, at 09:17, c. wrote: > Hi, > > On 12 Oct 2012, at 05:02, JuanPi wrote: > >> Hi, >> >> I have uploaded geometry 1.6.0 to the server >> https://sourceforge.net/p/octave/package-releases/6/ >> https://sourceforge.net/p/octave/package-releases/5/ >> >> NEWS >> https://sourceforge.net/p/octave/code/11242/tree/trunk/octave-forge/main/geometry/NEWS >> >> If everything is OK please upload. >> > I just checked in this small fix for a bug I had caused myself: > > Index: distancePointPolyline.m > =================================================================== > --- distancePointPolyline.m (revision 11242) > +++ distancePointPolyline.m (working copy) > @@ -48,6 +48,8 @@ > # allocate memory for result > minDist = inf * ones(Np, 1); > > + ## construct the set of edges > + edges = [poly(1:end-1, :) poly(2:end, :)]; > > ## compute distance between current each point and all edges > dist = distancePointEdge(point, edges); > > Is it too late to include this in the release? > >> BTW, several figures are missing in the documentation because they >> can't be created with gnuplot. Currently only fltk plots them, but the >> output of ftlk is not added to the generated html. I tried generating the html files with Octave 3.6 and it seems to work, so the problem is caused by something in the development versio. For your convenience I attach release files I re-created including fix to the "SVN" link in navigation bar and the bugfix mentioned above. >> -- >> JuanPi Carbajal >> ----- c. |