forked from bit/DotRecastNetSim
remove warning
This commit is contained in:
parent
b1f29a0812
commit
e68d6ab5fa
|
@ -19,7 +19,6 @@ freely, subject to the following restrictions:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
using System.Numerics;
|
|
||||||
|
|
||||||
namespace DotRecast.Core
|
namespace DotRecast.Core
|
||||||
{
|
{
|
||||||
|
@ -754,7 +753,7 @@ namespace DotRecast.Core
|
||||||
return a.x * b.z - a.z * b.x;
|
return a.x * b.z - a.z * b.x;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Tuple<float, float>? IntersectSegSeg2D(Vector3f ap, Vector3f aq, Vector3f bp, Vector3f bq)
|
public static Tuple<float, float> IntersectSegSeg2D(Vector3f ap, Vector3f aq, Vector3f bp, Vector3f bq)
|
||||||
{
|
{
|
||||||
Vector3f u = aq.Subtract(ap);
|
Vector3f u = aq.Subtract(ap);
|
||||||
Vector3f v = bq.Subtract(bp);
|
Vector3f v = bq.Subtract(bp);
|
||||||
|
|
|
@ -21,13 +21,12 @@ freely, subject to the following restrictions:
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Collections.Immutable;
|
using System.Collections.Immutable;
|
||||||
using System.Linq;
|
|
||||||
using DotRecast.Core;
|
using DotRecast.Core;
|
||||||
using DotRecast.Detour.QueryResults;
|
using DotRecast.Detour.QueryResults;
|
||||||
|
|
||||||
namespace DotRecast.Detour
|
namespace DotRecast.Detour
|
||||||
{
|
{
|
||||||
using static DotRecast.Core.RcMath;
|
using static RcMath;
|
||||||
using static Node;
|
using static Node;
|
||||||
|
|
||||||
public class NavMeshQuery
|
public class NavMeshQuery
|
||||||
|
|
Loading…
Reference in New Issue