DotRecastNetSim/src/DotRecast.Detour.Crowd/DtObstacleSegment.cs

15 lines
322 B
C#
Raw Normal View History

2023-05-07 12:10:20 +03:00
using DotRecast.Core;
namespace DotRecast.Detour.Crowd
{
public class DtObstacleSegment
2023-05-07 12:10:20 +03:00
{
/** End points of the obstacle segment */
public RcVec3f p = new RcVec3f();
2023-05-07 12:10:20 +03:00
/** End points of the obstacle segment */
public RcVec3f q = new RcVec3f();
2023-05-07 12:10:20 +03:00
public bool touch;
}
}