2025-09-18 11:19:05 +08:00

23 lines
703 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Wpf_AiSportsMicrospace.Dto
{
public class PointConfig
{
public double X { get; set; } // 原始X像素
public double Y { get; set; } // 原始Y像素
public double Radius { get; set; } // 半径
public double XNorm { get; set; } // 归一化X0~1
public double YNorm { get; set; } // 归一化Y0~1
}
public class ConfigSet
{
public string Name { get; set; } // 配置名,比如 "JumpRope"
public List<PointConfig> Points { get; set; } = new List<PointConfig>();
}
}