2021-11-23 13:20:07 +08:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
2022-02-19 22:37:57 +08:00
|
|
|
namespace XCharts.Runtime
|
2021-11-23 13:20:07 +08:00
|
|
|
{
|
|
|
|
|
public class ParallelCoordContext : MainComponentContext
|
|
|
|
|
{
|
2022-04-13 13:26:46 +08:00
|
|
|
public float x;
|
|
|
|
|
public float y;
|
|
|
|
|
public float width;
|
|
|
|
|
public float height;
|
|
|
|
|
public Vector3 position;
|
|
|
|
|
public float left;
|
|
|
|
|
public float right;
|
|
|
|
|
public float bottom;
|
|
|
|
|
public float top;
|
|
|
|
|
public bool runtimeIsPointerEnter;
|
2021-11-23 13:20:07 +08:00
|
|
|
internal List<ParallelAxis> parallelAxes = new List<ParallelAxis>();
|
|
|
|
|
}
|
|
|
|
|
}
|