mirror of
https://github.com/boostorg/geometry.git
synced 2026-02-10 23:42:12 +00:00
[geometry] Bugfix for integer coordinates, causing intersection points at wrong locations (severe)
[SVN r79505]
This commit is contained in:
@@ -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))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user