[postgis-devel] [PostGIS] #2112: lw_dist3d_ptarray_poly error
PostGIS
trac at osgeo.org
Tue Nov 27 14:39:49 PST 2012
#2112: lw_dist3d_ptarray_poly error
---------------------+------------------------------------------------------
Reporter: pramsey | Owner: nicklas
Type: defect | Status: new
Priority: medium | Milestone: PostGIS 2.0.2
Component: postgis | Version: 2.0.x
Keywords: |
---------------------+------------------------------------------------------
In measures3d.c:903, the assignment to move to the next point in the array
looks to be reversed,
{{{
projp2=projp1;
s2=s1;
p2=p1;
}}}
should be
{{{
projp1=projp2;
s1=s2;
p1=p2;
}}}
--
Ticket URL: <http://trac.osgeo.org/postgis/ticket/2112>
PostGIS <http://trac.osgeo.org/postgis/>
The PostGIS Trac is used for bug, enhancement & task tracking, a user and developer wiki, and a view into the subversion code repository of PostGIS project.
More information about the postgis-devel
mailing list