2021-11-23 13:20:07 +08:00
|
|
|
using System.Collections.Generic;
|
2022-05-22 22:17:38 +08:00
|
|
|
using UnityEngine;
|
2021-11-23 13:20:07 +08:00
|
|
|
using UnityEngine.UI;
|
|
|
|
|
|
2022-02-19 22:37:57 +08:00
|
|
|
namespace XCharts.Runtime
|
2021-11-23 13:20:07 +08:00
|
|
|
{
|
|
|
|
|
public class RadarCoordContext : MainComponentContext
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// the center position of radar in container.
|
2022-03-24 08:37:06 +08:00
|
|
|
/// |雷达图在容器中的具体中心点。
|
2021-11-23 13:20:07 +08:00
|
|
|
/// </summary>
|
|
|
|
|
public Vector3 center { get; internal set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// the true radius of radar.
|
2022-03-24 08:37:06 +08:00
|
|
|
/// |雷达图的运行时实际半径。
|
2021-11-23 13:20:07 +08:00
|
|
|
/// </summary>
|
|
|
|
|
public float radius { get; internal set; }
|
|
|
|
|
public float dataRadius { get; internal set; }
|
|
|
|
|
public bool isPointerEnter { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|