23 lines
703 B
C#
23 lines
703 B
C#
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; } // 归一化X(0~1)
|
||
public double YNorm { get; set; } // 归一化Y(0~1)
|
||
}
|
||
public class ConfigSet
|
||
{
|
||
public string Name { get; set; } // 配置名,比如 "JumpRope"
|
||
public List<PointConfig> Points { get; set; } = new List<PointConfig>();
|
||
}
|
||
}
|