move QueryResults

This commit is contained in:
ikpil 2023-04-23 14:13:10 +09:00
parent 188b9e619e
commit 546a9d0b97
39 changed files with 40 additions and 10 deletions

View File

@ -24,6 +24,7 @@ using System.Collections.Generic;
using System.Collections.ObjectModel;
using DotRecast.Core;
using DotRecast.Detour.Crowd.Tracking;
using DotRecast.Detour.QueryResults;
namespace DotRecast.Detour.Crowd
{

View File

@ -21,6 +21,7 @@ freely, subject to the following restrictions:
using System;
using System.Collections.Generic;
using DotRecast.Core;
using DotRecast.Detour.QueryResults;
namespace DotRecast.Detour.Crowd
{

View File

@ -21,6 +21,7 @@ freely, subject to the following restrictions:
using System;
using System.Collections.Generic;
using DotRecast.Core;
using DotRecast.Detour.QueryResults;
namespace DotRecast.Detour.Crowd
{

View File

@ -20,6 +20,7 @@ freely, subject to the following restrictions:
using System.Collections.Generic;
using DotRecast.Core;
using DotRecast.Detour.QueryResults;
namespace DotRecast.Detour.Crowd
{

View File

@ -1,5 +1,6 @@
using System;
using DotRecast.Core;
using DotRecast.Detour.QueryResults;
using DotRecast.Recast;
namespace DotRecast.Detour.Extras.Jumplink

View File

@ -1,5 +1,6 @@
using System;
using DotRecast.Core;
using DotRecast.Detour.QueryResults;
namespace DotRecast.Detour
{

View File

@ -19,6 +19,7 @@ freely, subject to the following restrictions:
using System;
using System.Collections.Generic;
using DotRecast.Core;
using DotRecast.Detour.QueryResults;
namespace DotRecast.Detour
{

View File

@ -23,6 +23,7 @@ using System.Collections.Generic;
using System.Collections.Immutable;
using System.Numerics;
using DotRecast.Core;
using DotRecast.Detour.QueryResults;
namespace DotRecast.Detour
{

View File

@ -23,6 +23,7 @@ using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
using DotRecast.Core;
using DotRecast.Detour.QueryResults;
namespace DotRecast.Detour
{

View File

@ -21,6 +21,7 @@ freely, subject to the following restrictions:
using System;
using System.Collections.Generic;
using DotRecast.Core;
using DotRecast.Detour.QueryResults;
namespace DotRecast.Detour
{

View File

@ -20,7 +20,7 @@ freely, subject to the following restrictions:
using DotRecast.Core;
namespace DotRecast.Detour
namespace DotRecast.Detour.QueryResults
{
public class ClosestPointOnPolyResult
{

View File

@ -20,7 +20,7 @@ freely, subject to the following restrictions:
using DotRecast.Core;
namespace DotRecast.Detour
namespace DotRecast.Detour.QueryResults
{
//TODO: (PP) Add comments
public class FindDistanceToWallResult

View File

@ -20,7 +20,7 @@ freely, subject to the following restrictions:
using System.Collections.Generic;
namespace DotRecast.Detour
namespace DotRecast.Detour.QueryResults
{
//TODO: (PP) Add comments
public class FindLocalNeighbourhoodResult

View File

@ -20,7 +20,7 @@ freely, subject to the following restrictions:
using DotRecast.Core;
namespace DotRecast.Detour
namespace DotRecast.Detour.QueryResults
{
public class FindNearestPolyResult
{

View File

@ -20,7 +20,7 @@ freely, subject to the following restrictions:
using System.Collections.Generic;
namespace DotRecast.Detour
namespace DotRecast.Detour.QueryResults
{
// TODO: (PP) Add comments
public class FindPolysAroundResult

View File

@ -20,7 +20,7 @@ freely, subject to the following restrictions:
using DotRecast.Core;
namespace DotRecast.Detour
namespace DotRecast.Detour.QueryResults
{
//TODO: (PP) Add comments
public class FindRandomPointResult

View File

@ -21,7 +21,7 @@ freely, subject to the following restrictions:
using System.Collections.Generic;
using DotRecast.Core;
namespace DotRecast.Detour
namespace DotRecast.Detour.QueryResults
{
public class GetPolyWallSegmentsResult
{
@ -38,7 +38,7 @@ namespace DotRecast.Detour
{
return _segmentVerts.Count;
}
public int countSegmentRefs()
{
return _segmentRefs.Count;

View File

@ -21,7 +21,7 @@ freely, subject to the following restrictions:
using System.Collections.Generic;
using DotRecast.Core;
namespace DotRecast.Detour
namespace DotRecast.Detour.QueryResults
{
public class MoveAlongSurfaceResult
{

View File

@ -18,7 +18,7 @@ freely, subject to the following restrictions:
3. This notice may not be removed or altered from any source distribution.
*/
namespace DotRecast.Detour
namespace DotRecast.Detour.QueryResults
{
public static class Results
{

View File

@ -23,6 +23,7 @@ using System.Collections.Generic;
using System.Numerics;
using DotRecast.Core;
using DotRecast.Detour;
using DotRecast.Detour.QueryResults;
using DotRecast.Recast.Demo.Builder;
using Silk.NET.OpenGL;

View File

@ -23,6 +23,7 @@ using System.Linq;
using DotRecast.Core;
using DotRecast.Detour;
using DotRecast.Detour.Crowd;
using DotRecast.Detour.QueryResults;
using DotRecast.Recast.Demo.Builder;
using DotRecast.Recast.Demo.Draw;
using ImGuiNET;

View File

@ -25,6 +25,7 @@ using DotRecast.Core;
using DotRecast.Detour;
using DotRecast.Detour.Crowd;
using DotRecast.Detour.Crowd.Tracking;
using DotRecast.Detour.QueryResults;
using DotRecast.Recast.Demo.Builder;
using DotRecast.Recast.Demo.Draw;
using DotRecast.Recast.Demo.Geom;

View File

@ -2,6 +2,7 @@ using System;
using System.Collections.Generic;
using DotRecast.Core;
using DotRecast.Detour;
using DotRecast.Detour.QueryResults;
using DotRecast.Recast.Demo.Builder;
using DotRecast.Recast.Demo.Draw;
using ImGuiNET;

View File

@ -21,6 +21,7 @@ freely, subject to the following restrictions:
using System;
using System.Collections.Generic;
using DotRecast.Core;
using DotRecast.Detour.QueryResults;
using NUnit.Framework;
namespace DotRecast.Detour.Crowd.Test;

View File

@ -18,6 +18,7 @@ freely, subject to the following restrictions:
using System.Collections.Generic;
using DotRecast.Core;
using DotRecast.Detour.QueryResults;
using Moq;
using NUnit.Framework;

View File

@ -4,6 +4,7 @@ using System.Threading.Tasks;
using DotRecast.Core;
using DotRecast.Detour.Dynamic.Colliders;
using DotRecast.Detour.Dynamic.Io;
using DotRecast.Detour.QueryResults;
using NUnit.Framework;
namespace DotRecast.Detour.Dynamic.Test;

View File

@ -22,6 +22,7 @@ using System.Linq;
using DotRecast.Core;
using DotRecast.Detour.Extras.Unity.Astar;
using DotRecast.Detour.Io;
using DotRecast.Detour.QueryResults;
using NUnit.Framework;
namespace DotRecast.Detour.Extras.Test.Unity.Astar;

View File

@ -17,6 +17,7 @@ freely, subject to the following restrictions:
*/
using DotRecast.Core;
using DotRecast.Detour.QueryResults;
using NUnit.Framework;
namespace DotRecast.Detour.Test;

View File

@ -17,6 +17,7 @@ freely, subject to the following restrictions:
*/
using DotRecast.Core;
using DotRecast.Detour.QueryResults;
using NUnit.Framework;
namespace DotRecast.Detour.Test;

View File

@ -17,6 +17,7 @@ freely, subject to the following restrictions:
*/
using DotRecast.Core;
using DotRecast.Detour.QueryResults;
using NUnit.Framework;
namespace DotRecast.Detour.Test;

View File

@ -18,6 +18,7 @@ freely, subject to the following restrictions:
using System.Collections.Generic;
using DotRecast.Core;
using DotRecast.Detour.QueryResults;
using NUnit.Framework;
namespace DotRecast.Detour.Test;

View File

@ -17,6 +17,7 @@ freely, subject to the following restrictions:
*/
using DotRecast.Core;
using DotRecast.Detour.QueryResults;
using NUnit.Framework;
namespace DotRecast.Detour.Test;

View File

@ -17,6 +17,7 @@ freely, subject to the following restrictions:
*/
using DotRecast.Core;
using DotRecast.Detour.QueryResults;
using NUnit.Framework;
namespace DotRecast.Detour.Test;

View File

@ -16,6 +16,7 @@ freely, subject to the following restrictions:
3. This notice may not be removed or altered from any source distribution.
*/
using DotRecast.Detour.QueryResults;
using NUnit.Framework;
namespace DotRecast.Detour.Test;

View File

@ -17,6 +17,7 @@ freely, subject to the following restrictions:
*/
using DotRecast.Core;
using DotRecast.Detour.QueryResults;
using NUnit.Framework;
namespace DotRecast.Detour.Test;

View File

@ -19,6 +19,7 @@ freely, subject to the following restrictions:
using System;
using System.Diagnostics;
using DotRecast.Core;
using DotRecast.Detour.QueryResults;
using NUnit.Framework;
using static DotRecast.Core.RecastMath;

View File

@ -18,6 +18,7 @@ freely, subject to the following restrictions:
using System.Collections.Generic;
using DotRecast.Core;
using DotRecast.Detour.QueryResults;
using NUnit.Framework;
namespace DotRecast.Detour.Test;

View File

@ -21,6 +21,7 @@ freely, subject to the following restrictions:
using System.Collections.Generic;
using System.IO;
using DotRecast.Core;
using DotRecast.Detour.QueryResults;
using DotRecast.Detour.TileCache.Io;
using NUnit.Framework;

View File

@ -20,6 +20,7 @@ freely, subject to the following restrictions:
using System.Collections.Generic;
using DotRecast.Core;
using DotRecast.Detour.QueryResults;
using DotRecast.Recast;
using DotRecast.Recast.Geom;
using NUnit.Framework;