static class

This commit is contained in:
ikpil 2023-06-08 21:39:12 +09:00
parent 5457bb04e5
commit 03b9a987dd
2 changed files with 2 additions and 2 deletions

View File

@ -283,7 +283,7 @@ namespace DotRecast.Recast
/// The value of spacial parameters are in world units. /// The value of spacial parameters are in world units.
/// ///
/// @see rcCompactHeightfield, rcMedianFilterWalkableArea /// @see rcCompactHeightfield, rcMedianFilterWalkableArea
public void MarkBoxArea(Telemetry ctx, float[] bmin, float[] bmax, AreaModification areaMod, RcCompactHeightfield chf) public static void MarkBoxArea(Telemetry ctx, float[] bmin, float[] bmax, AreaModification areaMod, RcCompactHeightfield chf)
{ {
ctx.StartTimer("MARK_BOX_AREA"); ctx.StartTimer("MARK_BOX_AREA");

View File

@ -1615,7 +1615,7 @@ namespace DotRecast.Recast
} }
/// @see rcAllocPolyMeshDetail, rcPolyMeshDetail /// @see rcAllocPolyMeshDetail, rcPolyMeshDetail
RcPolyMeshDetail MergePolyMeshDetails(Telemetry ctx, RcPolyMeshDetail[] meshes, int nmeshes) private static RcPolyMeshDetail MergePolyMeshDetails(Telemetry ctx, RcPolyMeshDetail[] meshes, int nmeshes)
{ {
RcPolyMeshDetail mesh = new RcPolyMeshDetail(); RcPolyMeshDetail mesh = new RcPolyMeshDetail();