remove warning

This commit is contained in:
ikpil 2023-05-18 08:30:38 +09:00
parent b1f29a0812
commit e68d6ab5fa
2 changed files with 2 additions and 4 deletions

View File

@ -19,7 +19,6 @@ freely, subject to the following restrictions:
*/
using System;
using System.Numerics;
namespace DotRecast.Core
{
@ -754,7 +753,7 @@ namespace DotRecast.Core
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 v = bq.Subtract(bp);

View File

@ -21,13 +21,12 @@ freely, subject to the following restrictions:
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
using DotRecast.Core;
using DotRecast.Detour.QueryResults;
namespace DotRecast.Detour
{
using static DotRecast.Core.RcMath;
using static RcMath;
using static Node;
public class NavMeshQuery