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,11 @@
namespace MultiWheelC.TrajectoryPlanning.PathSmoothing.Visualization;
/// <summary>一次报告导出的共享图形模型、目标目录与精确字体要求。</summary>
public sealed class SmoothingReportExportRequest
{
public SmoothingFigureModel Model { get; set; }
public string OutputDirectory { get; set; }
public string FileStem { get; set; }
public string ChineseFontFamilyName { get; set; } = "SimSun";
public string LatinFontFamilyName { get; set; } = "Times New Roman";
}