You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: libraries/path-bool/src/path_boolean.rs
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -534,8 +534,8 @@ impl Direction {
534
534
535
535
constROUNDING_FACTOR:f64 = 1.0 / (2.*EPS.point);
536
536
537
-
fnround_point(point:DVec2) -> IVec2{
538
-
(point *ROUNDING_FACTOR).as_ivec2()
537
+
fnround_point(point:DVec2) -> I64Vec2{
538
+
(point *ROUNDING_FACTOR).as_i64vec2()
539
539
}
540
540
541
541
// TODO: Using 32bit values here might lead to incorrect results when the values collide. Even though this is very unlikely we should think about this case
0 commit comments