Fixed erroneous hit testing for polygons in ratsnest for GAL.

This commit is contained in:
Maciej Suminski 2014-03-12 17:11:52 +01:00
parent afc56d3f6f
commit a377c9c1bc
1 changed files with 2 additions and 2 deletions

View File

@ -356,8 +356,8 @@ bool RN_POLY::HitTest( const RN_NODE_PTR& aNode ) const
x2 = xOld; y2 = yOld;
}
if( ( xNew < xt ) == ( xt <= xOld ) /* edge "open" at left end */
&& ( yt - y1 ) * ( x2 - x1 ) < ( y2 - y1 ) * ( xt - x1 ) )
if( ( xNew < xt ) == ( xt <= xOld ) && /* edge "open" at left end */
(float)( yt - y1 ) * (float)( x2 - x1 ) < (float)( y2 - y1 ) * (float)( xt - x1 ) )
{
inside = !inside;
}