Skip to content

Commit

Permalink
Formatted code
Browse files Browse the repository at this point in the history
  • Loading branch information
setchi committed Mar 4, 2019
1 parent a0f84e9 commit 7fa2bd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/LineSegmentIntersection/Scripts/Gui/SampleScene.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ void UpdateIntersection()
var p4 = lineSegmentB.PointB;

Vector2 intersection;
if (Math2D.LineSegmentsIntersection(p1, p2, p3, p4, out intersection))
if (Math2d.LineSegmentsIntersection(p1, p2, p3, p4, out intersection))
{
imageIntersection.color = Color.red;
imageIntersection.rectTransform.anchoredPosition = intersection;
Expand Down

0 comments on commit 7fa2bd7

Please sign in to comment.