[geometry] Bugfix for integer coordinates, causing intersection points at wrong locations (severe)

[SVN r79505]
This commit is contained in:
Barend Gehrels
2012-07-14 16:58:23 +00:00
parent 5ae467dbc7
commit 67d9f79bd3

View File

@@ -193,7 +193,7 @@ struct relate_cartesian_segments
}
else
{
r = da / d;
r = promoted_type(da) / promoted_type(d);
if (! robustness_verify_r(a, b, r))
{