DotRecastNetSim/src/DotRecast.Core/RcSegmentVert.cs

22 lines
436 B
C#

using DotRecast.Core.Numerics;
namespace DotRecast.Core
{
public struct RcSegmentVert
{
public RcVec3f vmin;
public RcVec3f vmax;
public RcSegmentVert(float v0, float v1, float v2, float v3, float v4, float v5)
{
vmin.X = v0;
vmin.Y = v1;
vmin.Z = v2;
vmax.X = v3;
vmax.Y = v4;
vmax.Z = v5;
}
}
}