DotRecastNetSim/src/DotRecast.Core/IntersectResult.cs

11 lines
231 B
C#

namespace DotRecast.Core
{
public class IntersectResult
{
public bool intersects;
public float tmin;
public float tmax = 1f;
public int segMin = -1;
public int segMax = -1;
}
}