Skip to content

Commit 37924ec

Browse files
Chilleesimonlindholm
authored andcommitted
Renamed to OnSegment.h (#91)
1 parent 782020a commit 37924ec

File tree

6 files changed

+5
-5
lines changed

6 files changed

+5
-5
lines changed

content/geometry/InsidePolygon.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#pragma once
1616

1717
#include "Point.h"
18-
#include "onSegment.h"
18+
#include "OnSegment.h"
1919
#include "SegmentDistance.h"
2020

2121
template<class P>
File renamed without changes.

content/geometry/PointInsideHull.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
#include "Point.h"
1616
#include "sideOf.h"
17-
#include "onSegment.h"
17+
#include "OnSegment.h"
1818

1919
typedef Point<ll> P;
2020

content/geometry/SegmentIntersection.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Products of three coordinates are used in intermediate steps so watch out for ov
2222
#pragma once
2323

2424
#include "Point.h"
25-
#include "onSegment.h"
25+
#include "OnSegment.h"
2626

2727
template<class P> vector<P> segInter(P a, P b, P c, P d) {
2828
auto oa = c.cross(d, a), ob = c.cross(d, b),

content/geometry/chapter.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ \section{Geometric primitives}
88
\kactlimport{SegmentIntersection.h}
99
\kactlimport{lineIntersection.h}
1010
\kactlimport{sideOf.h}
11-
\kactlimport{onSegment.h}
11+
\kactlimport{OnSegment.h}
1212
\kactlimport{linearTransformation.h}
1313
\kactlimport{Angle.h}
1414

fuzz-tests/geometry/insidePolygon.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const double EPS =1e-8;
1616
#include "../../content/geometry/InsidePolygon.h"
1717
namespace old {
1818

19-
#include "../../content/geometry/onSegment.h"
19+
#include "../../content/geometry/OnSegment.h"
2020
#include "../../content/geometry/SegmentDistance.h"
2121

2222
template<class It, class P>

0 commit comments

Comments
 (0)