Skip to content

Commit 305ea40

Browse files
committed
Update GetRaysFromPointToPolygon.js
1 parent 62d7273 commit 305ea40

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/geom/intersects/GetRaysFromPointToPolygon.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ var Line = require('../line/Line');
1111
// Temp calculation segment
1212
var segment = new Line();
1313

14+
/**
15+
* @ignore
16+
*/
1417
function CheckIntersects (angle, x, y, polygons, intersects)
1518
{
1619
var dx = Math.cos(angle);
@@ -26,6 +29,9 @@ function CheckIntersects (angle, x, y, polygons, intersects)
2629
}
2730
}
2831

32+
/**
33+
* @ignore
34+
*/
2935
function SortIntersects (a, b)
3036
{
3137
return a.z - b.z;

0 commit comments

Comments
 (0)