DotRecastNetSim/src/DotRecast.Core/IntersectResult.cs

11 lines
231 B
C#
Raw Normal View History

2023-05-07 12:10:20 +03:00
namespace DotRecast.Core
{
public class IntersectResult
{
public bool intersects;
public float tmin;
public float tmax = 1f;
public int segMin = -1;
public int segMax = -1;
}
}