From: JuanPi <aj...@gm...> - 2012-10-12 13:09:10
|
On Fri, Oct 12, 2012 at 9:40 AM, c. <kin...@ti...> wrote: > > 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. Thank you Carlo! I was using 3.6.3 the latest release, not devel. I will check if the stable branch also doesn't print the fltk figures. @Carnë: How shall I proceed? Shall I put this files in the sf server? -- JuanPi Carbajal ----- "It is one thing not to be able to perform a certain feat, but quite another to prove that it cannot be done." - Henry Ernest Dudeney ----- http://ailab.ifi.uzh.ch/carbajal/ |