Skip to content

Commit 2f32d63

Browse files
committed
Changed tabs to spaces so it'll align
1 parent 1bdf870 commit 2f32d63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/geometry/SegmentIntersection.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Products of three coordinates are used in intermediate steps so watch out for ov
2727
template <class P>
2828
bool segInterProper(P a, P b, P c, P d, P &out) {
2929
double oa = c.cross(d, a), ob = c.cross(d, b),
30-
oc = a.cross(b, c), od = a.cross(b, d);
30+
oc = a.cross(b, c), od = a.cross(b, d);
3131
if (sgn(oa) * sgn(ob) < 0 && sgn(oc) * sgn(od) < 0) {
3232
out = (a * ob - b * oa) / (ob - oa);
3333
return true;

0 commit comments

Comments
 (0)