Skip to content

Commit ba9395d

Browse files
committed
Fixed formatting issue
1 parent b7a8157 commit ba9395d

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
@@ -25,7 +25,7 @@ Products of three coordinates are used in intermediate steps so watch out for ov
2525
#include "onSegment.h"
2626

2727
template <class P>
28-
bool segInterProper(P a, P b, P c, P d, P &out) {
28+
bool segInterProper(P a, P b, P c, P d, P& out) {
2929
double oa = c.cross(d, a), ob = c.cross(d, b),
3030
oc = a.cross(b, c), od = a.cross(b, d);
3131
if (sgn(oa) * sgn(ob) < 0 && sgn(oc) * sgn(od) < 0) {

0 commit comments

Comments
 (0)