Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit 6ef44e12 authored by Michael KRISPER's avatar Michael KRISPER
Browse files

changed a param in VectoMath

parent da261121
No related branches found
No related tags found
No related merge requests found
......@@ -212,7 +212,7 @@ namespace TUGraz.VectoCore.Utils
}
}
[DebuggerDisplay("Triangle({P1}, {P2}, {P3})")]
[DebuggerDisplay("Triangle({P1.X, P1.Y, P1.Z}, {P2.X, P2.Y, P2.Z}, {P3.X, P3.Y, P3.Z})")]
public class Triangle
{
public Point P1;
......@@ -226,7 +226,7 @@ namespace TUGraz.VectoCore.Utils
P3 = p3;
}
public bool IsInside(double x, double y, bool exact = true)
public bool IsInside(double x, double y, bool exact)
{
Contract.Requires(P1 != null);
Contract.Requires(P2 != null);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment