forked from mirror/DotRecast
12 lines
278 B
C#
12 lines
278 B
C#
|
using DotRecast.Core;
|
|||
|
|
|||
|
namespace DotRecast.Detour
|
|||
|
{
|
|||
|
public class NoOpPolygonByCircleConstraint : IPolygonByCircleConstraint
|
|||
|
{
|
|||
|
public float[] Aply(float[] polyVerts, Vector3f circleCenter, float radius)
|
|||
|
{
|
|||
|
return polyVerts;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|