chore: save current workspace progress

This commit is contained in:
梁薄云
2026-08-09 22:13:18 +08:00
parent 650c2ab0e3
commit 2f4fd15e52
449 changed files with 76593 additions and 971 deletions
@@ -0,0 +1,12 @@
namespace MultiWheelC.TrajectoryPlanning.Mapping;
/// <summary>
/// 世界坐标中的不可变障碍物几何。
///
/// 单位:所有几何坐标与尺寸均为 mm。实现类型必须能由 <see cref="MapObstacleRasterizer"/> 栅格化。
/// </summary>
public interface IMapObstacle
{
/// <summary>几何数据是否有效。true 表示数值有限且尺寸满足该几何类型的约束;false 表示不得投影到地图。</summary>
bool IsValid { get; }
}