DotRecastNetSim/src/DotRecast.Core/RcSegmentVert.cs

20 lines
407 B
C#
Raw Normal View History

2023-06-26 16:50:24 +03:00
namespace DotRecast.Core
2023-04-22 07:43:24 +03:00
{
2023-07-17 17:24:28 +03:00
public struct RcSegmentVert
2023-04-22 07:43:24 +03:00
{
public RcVec3f vmin;
public RcVec3f vmax;
2023-04-22 07:43:24 +03:00
2023-07-17 17:24:28 +03:00
public RcSegmentVert(float v0, float v1, float v2, float v3, float v4, float v5)
2023-04-22 07:43:24 +03:00
{
2023-06-26 16:50:24 +03:00
vmin.x = v0;
vmin.y = v1;
vmin.z = v2;
vmax.x = v3;
vmax.y = v4;
vmax.z = v5;
2023-04-22 07:43:24 +03:00
}
}
}